Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90957321
20140731.audit.1.subscribers.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, Nov 6, 09:45
Size
731 B
Mime Type
text/x-php
Expires
Fri, Nov 8, 09:45 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22167456
Attached To
rPH Phabricator
20140731.audit.1.subscribers.php
View Options
<?php
$table
=
new
PhabricatorRepositoryAuditRequest
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
echo
pht
(
'Migrating Audit subscribers to subscriptions...'
).
"
\n
"
;
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$request
)
{
$id
=
$request
->
getID
();
echo
pht
(
"Migrating audit %d...
\n
"
,
$id
);
if
(
$request
->
getAuditStatus
()
!=
'cc'
)
{
// This isn't a "subscriber", so skip it.
continue
;
}
queryfx
(
$conn_w
,
'INSERT IGNORE INTO %T (src, type, dst) VALUES (%s, %d, %s)'
,
PhabricatorEdgeConfig
::
TABLE_NAME_EDGE
,
$request
->
getCommitPHID
(),
PhabricatorObjectHasSubscriberEdgeType
::
EDGECONST
,
$request
->
getAuditorPHID
());
// Wipe the row.
$request
->
delete
();
}
echo
pht
(
'Done.'
).
"
\n
"
;
Event Timeline
Log In to Comment