Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94043704
20130716.archivememberlessprojects.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, Dec 3, 11:30
Size
1005 B
Mime Type
text/x-php
Expires
Thu, Dec 5, 11:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22721413
Attached To
rPH Phabricator
20130716.archivememberlessprojects.php
View Options
<?php
echo
pht
(
'Archiving projects with no members...'
).
"
\n
"
;
$table
=
new
PhabricatorProject
();
$table
->
openTransaction
();
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$project
)
{
$members
=
PhabricatorEdgeQuery
::
loadDestinationPHIDs
(
$project
->
getPHID
(),
PhabricatorProjectProjectHasMemberEdgeType
::
EDGECONST
);
if
(
count
(
$members
))
{
echo
pht
(
'Project "%s" has %d members; skipping.'
,
$project
->
getName
(),
count
(
$members
)),
"
\n
"
;
continue
;
}
if
(
$project
->
getStatus
()
==
PhabricatorProjectStatus
::
STATUS_ARCHIVED
)
{
echo
pht
(
'Project "%s" already archived; skipping.'
,
$project
->
getName
()),
"
\n
"
;
continue
;
}
echo
pht
(
'Archiving project "%s"...'
,
$project
->
getName
()).
"
\n
"
;
queryfx
(
$table
->
establishConnection
(
'w'
),
'UPDATE %T SET status = %s WHERE id = %d'
,
$table
->
getTableName
(),
PhabricatorProjectStatus
::
STATUS_ARCHIVED
,
$project
->
getID
());
}
$table
->
saveTransaction
();
echo
"
\n
"
.
pht
(
'Done.'
).
"
\n
"
;
Event Timeline
Log In to Comment