mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-23 05:50:55 +01:00
Minor, fix insertNotifications() for unmigrated callsites. See discussion in rP3a6ee79190b709d84ff79865d1c1d6234e5c102a.
This commit is contained in:
parent
284d7b6a46
commit
4d6df7dc14
1 changed files with 25 additions and 21 deletions
|
@ -104,35 +104,39 @@ final class PhabricatorFeedStoryPublisher {
|
|||
|
||||
|
||||
private function insertNotifications($chrono_key) {
|
||||
if (!$this->subscribedPHIDs) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!$this->primaryObjectPHID) {
|
||||
throw
|
||||
new Exception("Call setPrimaryObjectPHID() before Publishing!");
|
||||
throw new Exception(
|
||||
"You must call setPrimaryObjectPHID() if you setSubscribedPHIDs()!");
|
||||
}
|
||||
if ($this->subscribedPHIDs) {
|
||||
$notif = new PhabricatorFeedStoryNotification();
|
||||
$sql = array();
|
||||
$conn = $notif->establishConnection('w');
|
||||
|
||||
foreach (array_unique($this->subscribedPHIDs) as $user_phid) {
|
||||
$sql[] = qsprintf(
|
||||
$conn,
|
||||
'(%s, %s, %s, %d)',
|
||||
$this->primaryObjectPHID,
|
||||
$user_phid,
|
||||
$chrono_key,
|
||||
0);
|
||||
}
|
||||
$notif = new PhabricatorFeedStoryNotification();
|
||||
$sql = array();
|
||||
$conn = $notif->establishConnection('w');
|
||||
|
||||
queryfx(
|
||||
foreach (array_unique($this->subscribedPHIDs) as $user_phid) {
|
||||
$sql[] = qsprintf(
|
||||
$conn,
|
||||
'INSERT INTO %T
|
||||
(primaryObjectPHID, userPHID, chronologicalKey, hasViewed)
|
||||
VALUES %Q',
|
||||
$notif->getTableName(),
|
||||
implode(', ', $sql));
|
||||
'(%s, %s, %s, %d)',
|
||||
$this->primaryObjectPHID,
|
||||
$user_phid,
|
||||
$chrono_key,
|
||||
0);
|
||||
}
|
||||
|
||||
queryfx(
|
||||
$conn,
|
||||
'INSERT INTO %T
|
||||
(primaryObjectPHID, userPHID, chronologicalKey, hasViewed)
|
||||
VALUES %Q',
|
||||
$notif->getTableName(),
|
||||
implode(', ', $sql));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* We generate a unique chronological key for each story type because we want
|
||||
* to be able to page through the stream with a cursor (i.e., select stories
|
||||
|
|
Loading…
Reference in a new issue