2014-08-02 09:06:13 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$table = new PhabricatorRepositoryAuditRequest();
|
|
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
|
2015-05-22 09:27:56 +02:00
|
|
|
echo pht('Migrating Audit subscribers to subscriptions...')."\n";
|
2014-08-02 09:06:13 +02:00
|
|
|
foreach (new LiskMigrationIterator($table) as $request) {
|
|
|
|
$id = $request->getID();
|
|
|
|
|
2015-05-22 09:27:56 +02:00
|
|
|
echo pht("Migrating audit %d...\n", $id);
|
2014-08-02 09:06:13 +02:00
|
|
|
|
|
|
|
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(),
|
2015-01-03 00:33:25 +01:00
|
|
|
PhabricatorObjectHasSubscriberEdgeType::EDGECONST,
|
2014-08-02 09:06:13 +02:00
|
|
|
$request->getAuditorPHID());
|
|
|
|
|
|
|
|
|
|
|
|
// Wipe the row.
|
|
|
|
$request->delete();
|
|
|
|
}
|
|
|
|
|
2015-05-22 09:27:56 +02:00
|
|
|
echo pht('Done.')."\n";
|