Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104718795
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
Tue, Mar 11, 19:32
Size
745 B
Mime Type
text/x-php
Expires
Thu, Mar 13, 19:32 (2 d)
Engine
blob
Format
Raw Data
Handle
24831793
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