Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102091105
20130529.macroauthormig.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 17, 00:40
Size
820 B
Mime Type
text/x-php
Expires
Wed, Feb 19, 00:40 (2 d)
Engine
blob
Format
Raw Data
Handle
24279849
Attached To
rPH Phabricator
20130529.macroauthormig.php
View Options
<?php
echo
pht
(
'Migrating macro authors...'
).
"
\n
"
;
foreach
(
new
LiskMigrationIterator
(
new
PhabricatorFileImageMacro
())
as
$macro
)
{
echo
pht
(
'Macro #%d'
,
$macro
->
getID
()).
"
\n
"
;
if
(
$macro
->
getAuthorPHID
())
{
// Already have an author; skip it.
continue
;
}
if
(!
$macro
->
getFilePHID
())
{
// No valid file; skip it.
continue
;
}
$file
=
id
(
new
PhabricatorFile
())->
loadOneWhere
(
'phid = %s'
,
$macro
->
getFilePHID
());
if
(!
$file
)
{
// Couldn't load the file; skip it.
continue
;
}
if
(!
$file
->
getAuthorPHID
())
{
// File has no author; skip it.
continue
;
}
queryfx
(
$macro
->
establishConnection
(
'w'
),
'UPDATE %T SET authorPHID = %s WHERE id = %d'
,
$macro
->
getTableName
(),
$file
->
getAuthorPHID
(),
$macro
->
getID
());
}
echo
pht
(
'Done.'
).
"
\n
"
;
Event Timeline
Log In to Comment