Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121100178
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, Jul 8, 16:29
Size
986 B
Mime Type
text/x-php
Expires
Thu, Jul 10, 16:29 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27285732
Attached To
rPH Phabricator
20130716.archivememberlessprojects.php
View Options
<?php
echo
"Archiving projects with no members...
\n
"
;
$table
=
new
PhabricatorProject
();
$table
->
openTransaction
();
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$project
)
{
$members
=
PhabricatorEdgeQuery
::
loadDestinationPHIDs
(
$project
->
getPHID
(),
PhabricatorEdgeConfig
::
TYPE_PROJ_MEMBER
);
if
(
count
(
$members
))
{
echo
sprintf
(
'Project "%s" has %d members; skipping.'
,
$project
->
getName
(),
count
(
$members
)),
"
\n
"
;
continue
;
}
if
(
$project
->
getStatus
()
==
PhabricatorProjectStatus
::
STATUS_ARCHIVED
)
{
echo
sprintf
(
'Project "%s" already archived; skipping.'
,
$project
->
getName
()),
"
\n
"
;
continue
;
}
echo
sprintf
(
'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
Done.
\n
"
;
Event Timeline
Log In to Comment