Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104794095
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
Wed, Mar 12, 10:52
Size
986 B
Mime Type
text/x-php
Expires
Fri, Mar 14, 10:52 (2 d)
Engine
blob
Format
Raw Data
Handle
24854152
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