mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-30 10:42:41 +01:00
61c26463bc
Summary: Php schema patch to update channel id's of past events. Test Plan: Having some proxy issues here due to which connection is timing out and bot is not able to log into IRC. Bot connects to IRC in my home though ! So I wasn't able to quite to test this by running storage upgrade. Reviewers: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5000
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
|
|
|
echo "Updating channel IDs of previous chatlog events...\n";
|
|
$event_table = new PhabricatorChatLogEvent();
|
|
$channel_table = new PhabricatorChatLogChannel();
|
|
|
|
$event_table->openTransaction();
|
|
$channel_table->openTransaction();
|
|
|
|
$event_table->beginReadLocking();
|
|
$channel_table->beginReadLocking();
|
|
|
|
$events = new LiskMigrationIterator($event_table);
|
|
|
|
foreach ($events as $event) {
|
|
if ($event->getChannelID()) {
|
|
continue;
|
|
}
|
|
|
|
$matched = $channel_table->loadOneWhere(
|
|
"channelName = %s AND serviceName = %s AND serviceType = %s",
|
|
$event->getChannel(),
|
|
'',
|
|
'');
|
|
|
|
if (!$matched) {
|
|
$matched = id(new PhabricatorChatLogChannel())
|
|
->setChannelName($event->getChannel())
|
|
->setServiceType('')
|
|
->setServiceName('')
|
|
->setViewPolicy(PhabricatorPolicies::POLICY_USER)
|
|
->setEditPolicy(PhabricatorPolicies::POLICY_USER)
|
|
->save();
|
|
}
|
|
|
|
queryfx(
|
|
$event->establishConnection('w'),
|
|
'UPDATE %T SET channelID = %d WHERE id = %d',
|
|
$event->getTableName(),
|
|
$matched->getID(),
|
|
$event->getID());
|
|
}
|
|
|
|
$event_table->endReadLocking();
|
|
$channel_table->endReadLocking();
|
|
|
|
$event_table->saveTransaction();
|
|
$channel_table->saveTransaction();
|
|
|
|
echo "\nDone.\n";
|