1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00
phorge-phorge/resources/sql/patches/20130728.ponderunique.php
Joshua Spence 36e2d02d6e phtize all the things
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
2015-05-22 21:16:39 +10:00

58 lines
1.3 KiB
PHP

<?php
$map = array();
echo pht('Merging duplicate answers by authors...')."\n";
$atable = new PonderAnswer();
$conn_w = $atable->establishConnection('w');
$conn_w->openTransaction();
$answers = new LiskMigrationIterator(new PonderAnswer());
foreach ($answers as $answer) {
$aid = $answer->getID();
$qid = $answer->getQuestionID();
$author_phid = $answer->getAuthorPHID();
echo pht('Processing answer ID #%d...', $aid)."\n";
if (empty($map[$qid][$author_phid])) {
echo pht('Answer is unique.')."\n";
$map[$qid][$author_phid] = $answer;
continue;
} else {
echo pht('Merging answer.')."\n";
$target = $map[$qid][$author_phid];
queryfx(
$conn_w,
'UPDATE %T SET content = %s WHERE id = %d',
$target->getTableName(),
$target->getContent().
"\n\n".
"---".
"\n\n".
"> (This content was automatically merged from another answer by the ".
"same author.)".
"\n\n".
$answer->getContent(),
$target->getID());
queryfx(
$conn_w,
'DELETE FROM %T WHERE id = %d',
$target->getTableName(),
$answer->getID());
queryfx(
$conn_w,
'UPDATE %T SET targetPHID = %s WHERE targetPHID = %s',
'ponder_comment',
$target->getPHID(),
$answer->getPHID());
}
}
$conn_w->saveTransaction();
echo pht('Done.')."\n";