mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
56 lines
1.2 KiB
PHP
56 lines
1.2 KiB
PHP
|
<?php
|
||
|
|
||
|
echo "Updating old commit authors...\n";
|
||
|
|
||
|
$table = new PhabricatorRepositoryCommit();
|
||
|
$conn = $table->establishConnection('w');
|
||
|
$data = new PhabricatorRepositoryCommitData();
|
||
|
$commits = queryfx_all(
|
||
|
$conn,
|
||
|
'SELECT c.id id, c.authorPHID authorPHID, d.commitDetails details
|
||
|
FROM %T c JOIN %T d ON d.commitID = c.id
|
||
|
WHERE c.authorPHID IS NULL',
|
||
|
$table->getTableName(),
|
||
|
$data->getTableName());
|
||
|
|
||
|
foreach ($commits as $commit) {
|
||
|
$id = $commit['id'];
|
||
|
$details = json_decode($commit['details'], true);
|
||
|
$author_phid = idx($details, 'authorPHID');
|
||
|
if ($author_phid) {
|
||
|
queryfx(
|
||
|
$conn,
|
||
|
'UPDATE %T SET authorPHID = %s WHERE id = %d',
|
||
|
$table->getTableName(),
|
||
|
$author_phid,
|
||
|
$id);
|
||
|
echo "#{$id}\n";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
echo "Done.\n";
|
||
|
|
||
|
|
||
|
echo "Updating old commit mailKeys...\n";
|
||
|
|
||
|
$table = new PhabricatorRepositoryCommit();
|
||
|
$conn = $table->establishConnection('w');
|
||
|
$commits = queryfx_all(
|
||
|
$conn,
|
||
|
'SELECT id FROM %T WHERE mailKey = %s',
|
||
|
$table->getTableName(),
|
||
|
'');
|
||
|
|
||
|
foreach ($commits as $commit) {
|
||
|
$id = $commit['id'];
|
||
|
queryfx(
|
||
|
$conn,
|
||
|
'UPDATE %T SET mailKey = %s WHERE id = %d',
|
||
|
$table->getTableName(),
|
||
|
Filesystem::readRandomCharacters(20),
|
||
|
$id);
|
||
|
echo "#{$id}\n";
|
||
|
}
|
||
|
|
||
|
echo "Done.\n";
|