Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108071828
migrate-project-edges.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
Sun, Apr 13, 22:10
Size
745 B
Mime Type
text/x-php
Expires
Tue, Apr 15, 22:10 (2 d)
Engine
blob
Format
Raw Data
Handle
25517710
Attached To
rPH Phabricator
migrate-project-edges.php
View Options
<?php
echo
"Migrating project members to edges...
\n
"
;
$table
=
new
PhabricatorProject
();
$table
->
establishConnection
(
'w'
);
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$proj
)
{
$id
=
$proj
->
getID
();
echo
"Project {$id}: "
;
$members
=
queryfx_all
(
$proj
->
establishConnection
(
'w'
),
'SELECT userPHID FROM %T WHERE projectPHID = %s'
,
'project_affiliation'
,
$proj
->
getPHID
());
if
(!
$members
)
{
echo
"-
\n
"
;
continue
;
}
$members
=
ipull
(
$members
,
'userPHID'
);
$editor
=
new
PhabricatorEdgeEditor
();
foreach
(
$members
as
$user_phid
)
{
$editor
->
addEdge
(
$proj
->
getPHID
(),
PhabricatorEdgeConfig
::
TYPE_PROJ_MEMBER
,
$user_phid
);
}
$editor
->
save
();
echo
"OKAY
\n
"
;
}
echo
"Done.
\n
"
;
Event Timeline
Log In to Comment