Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2355749
20130703.legalpaddocdenorm.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
20130703.legalpaddocdenorm.php
View Options
<?php
echo
'Populating Legalpad Documents with '
,
"titles, recentContributorPHIDs, and contributorCounts...
\n
"
;
$table
=
new
LegalpadDocument
();
$table
->
openTransaction
();
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$document
)
{
$updated
=
false
;
$id
=
$document
->
getID
();
echo
"Document {$id}: "
;
if
(!
$document
->
getTitle
())
{
$document_body
=
id
(
new
LegalpadDocumentBody
())
->
loadOneWhere
(
'phid = %s'
,
$document
->
getDocumentBodyPHID
());
$title
=
$document_body
->
getTitle
();
$document
->
setTitle
(
$title
);
$updated
=
true
;
echo
"Added title: $title
\n
"
;
}
else
{
echo
"-
\n
"
;
}
if
(!
$document
->
getContributorCount
()
||
!
$document
->
getRecentContributorPHIDs
())
{
$updated
=
true
;
$type
=
PhabricatorEdgeConfig
::
TYPE_OBJECT_HAS_CONTRIBUTOR
;
$contributors
=
PhabricatorEdgeQuery
::
loadDestinationPHIDs
(
$document
->
getPHID
(),
$type
);
$document
->
setRecentContributorPHIDs
(
array_slice
(
$contributors
,
0
,
3
));
echo
"Added recent contributor phids.
\n
"
;
$document
->
setContributorCount
(
count
(
$contributors
));
echo
"Added contributor count.
\n
"
;
}
if
(!
$updated
)
{
echo
"-
\n
"
;
continue
;
}
$document
->
save
();
}
$table
->
saveTransaction
();
echo
"Done.
\n
"
;
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Sep 16, 1:50 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
443692
Default Alt Text
20130703.legalpaddocdenorm.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment