Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99302537
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, Jan 23, 06:36
Size
796 B
Mime Type
text/x-php
Expires
Sat, Jan 25, 06:36 (2 d)
Engine
blob
Format
Raw Data
Handle
23772171
Attached To
rPH Phabricator
20130529.macroauthormig.php
View Options
<?php
echo
"Migrating macro authors...
\n
"
;
foreach
(
new
LiskMigrationIterator
(
new
PhabricatorFileImageMacro
())
as
$macro
)
{
echo
"Macro #"
.
$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
"Done.
\n
"
;
Event Timeline
Log In to Comment