Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109702333
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, Apr 23, 01:57
Size
1000 B
Mime Type
text/x-php
Expires
Fri, Apr 25, 01:57 (2 d)
Engine
blob
Format
Raw Data
Handle
25752167
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
(),
PhabricatorProjectProjectHasMemberEdgeType
::
EDGECONST
);
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