Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F4852521
20140731.audit.1.subscribers.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
731 B
Referenced Files
None
Subscribers
None
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"
;
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jun 9, 06:37 (1 d, 15 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1757934
Default Alt Text
20140731.audit.1.subscribers.php (731 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment