mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
793f185d29
Summary: Ref T13218. This is like `loadOneWhere(...)` but with more dark magic. Get rid of it. Test Plan: - Forced `20130219.commitsummarymig.php` to hit this code and ran it with `bin/storage upgrade --force --apply ...`. - Ran `20130409.commitdrev.php` with `bin/storage upgrade --force --apply ...`. - Called `user.search` to indirectly get primary email information. - Did not test Releeph at all. Reviewers: amckinley Reviewed By: amckinley Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam Maniphest Tasks: T13218 Differential Revision: https://secure.phabricator.com/D19876
35 lines
886 B
PHP
35 lines
886 B
PHP
<?php
|
|
|
|
echo pht('Migrating %s to edges...', 'differential.revisionPHID')."\n";
|
|
$commit_table = new PhabricatorRepositoryCommit();
|
|
$data_table = new PhabricatorRepositoryCommitData();
|
|
$editor = new PhabricatorEdgeEditor();
|
|
$commit_table->establishConnection('w');
|
|
$edges = 0;
|
|
|
|
foreach (new LiskMigrationIterator($commit_table) as $commit) {
|
|
$data = $data_table->loadOneWhere(
|
|
'commitID = %d',
|
|
$commit->getID());
|
|
if (!$data) {
|
|
continue;
|
|
}
|
|
|
|
$revision_phid = $data->getCommitDetail('differential.revisionPHID');
|
|
if (!$revision_phid) {
|
|
continue;
|
|
}
|
|
|
|
$commit_drev = DiffusionCommitHasRevisionEdgeType::EDGECONST;
|
|
$editor->addEdge($commit->getPHID(), $commit_drev, $revision_phid);
|
|
$edges++;
|
|
if ($edges % 256 == 0) {
|
|
echo '.';
|
|
$editor->save();
|
|
$editor = new PhabricatorEdgeEditor();
|
|
}
|
|
}
|
|
|
|
echo '.';
|
|
$editor->save();
|
|
echo "\n".pht('Done.')."\n";
|