Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92968026
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
Mon, Nov 25, 05:47
Size
790 B
Mime Type
text/x-php
Expires
Wed, Nov 27, 05:47 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22547248
Attached To
rPH Phabricator
migrate-project-edges.php
View Options
<?php
echo
pht
(
'Migrating project members to edges...'
).
"
\n
"
;
$table
=
new
PhabricatorProject
();
$table
->
establishConnection
(
'w'
);
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$proj
)
{
$id
=
$proj
->
getID
();
echo
pht
(
'Project %d: '
,
$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
(),
PhabricatorProjectProjectHasMemberEdgeType
::
EDGECONST
,
$user_phid
);
}
$editor
->
save
();
echo
pht
(
'OKAY'
).
"
\n
"
;
}
echo
pht
(
'Done.'
).
"
\n
"
;
Event Timeline
Log In to Comment