mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
8a0a00f118
Summary: - Add a proper mailKey field to make these things mailable. Backfill all existing objects. - Denormalize authorPHID to the commit object so we can query by it efficiently in a future diff. We currently use the search engine to drive "commits by author" but that's not so good for audit, which needs more constraints. - Add an overall audit status field so we can efficiently query "commits that needs your attention". - Add enough code to convince myself that these fields are basically reasonable and work correctly. Test Plan: - Ran schema upgrades. Checked database state afterward. - Ran "reparse.php --owners --herald" to verify worker changes. - Looked at a commit, altered aggregate status via audits / reparse.php, verified it responded correctly. Reviewers: btrahan, jungejason Reviewed By: jungejason CC: aran, epriestley, nh Maniphest Tasks: T904 Differential Revision: https://secure.phabricator.com/D1706
71 lines
1.8 KiB
PHP
71 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright 2012 Facebook, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
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";
|