Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105899815
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
Thu, Mar 20, 16:30
Size
820 B
Mime Type
text/x-php
Expires
Sat, Mar 22, 16:30 (2 d)
Engine
blob
Format
Raw Data
Handle
25044382
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