mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
36e2d02d6e
Summary: `pht`ize a whole bunch of strings in rP. Test Plan: Intense eyeballing. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: hach-que, Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12797
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
|
|
$pull_table = new ReleephRequest();
|
|
$table_name = $pull_table->getTableName();
|
|
$conn_w = $pull_table->establishConnection('w');
|
|
|
|
echo pht('Setting object PHIDs for requests...')."\n";
|
|
foreach (new LiskMigrationIterator($pull_table) as $pull) {
|
|
$id = $pull->getID();
|
|
|
|
echo pht('Migrating pull request %d...', $id)."\n";
|
|
if ($pull->getRequestedObjectPHID()) {
|
|
// We already have a valid PHID, so skip this request.
|
|
continue;
|
|
}
|
|
|
|
$commit_phids = $pull->getCommitPHIDs();
|
|
if (count($commit_phids) != 1) {
|
|
// At the time this migration was written, all requests had exactly one
|
|
// commit. If a request has more than one, we don't have the information
|
|
// we need to process it.
|
|
continue;
|
|
}
|
|
|
|
$commit_phid = head($commit_phids);
|
|
|
|
$revision_phids = PhabricatorEdgeQuery::loadDestinationPHIDs(
|
|
$commit_phid,
|
|
DiffusionCommitHasRevisionEdgeType::EDGECONST);
|
|
|
|
if ($revision_phids) {
|
|
$object_phid = head($revision_phids);
|
|
} else {
|
|
$object_phid = $commit_phid;
|
|
}
|
|
|
|
queryfx(
|
|
$conn_w,
|
|
'UPDATE %T SET requestedObjectPHID = %s WHERE id = %d',
|
|
$table_name,
|
|
$object_phid,
|
|
$id);
|
|
}
|
|
|
|
echo pht('Done.')."\n";
|