2012-08-10 19:44:04 +02:00
|
|
|
<?php
|
|
|
|
|
2012-10-10 19:18:23 +02:00
|
|
|
final class PonderAnswerEditor extends PhabricatorEditor {
|
|
|
|
|
2012-08-10 19:44:04 +02:00
|
|
|
private $question;
|
|
|
|
private $answer;
|
2012-10-08 23:47:21 +02:00
|
|
|
private $shouldEmail = true;
|
2012-08-10 19:44:04 +02:00
|
|
|
|
|
|
|
public function setQuestion($question) {
|
|
|
|
$this->question = $question;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setAnswer($answer) {
|
|
|
|
$this->answer = $answer;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function saveAnswer() {
|
2012-10-10 19:18:23 +02:00
|
|
|
$actor = $this->requireActor();
|
2012-08-10 19:44:04 +02:00
|
|
|
if (!$this->question) {
|
2012-10-07 23:35:01 +02:00
|
|
|
throw new Exception("Must set question before saving answer");
|
2012-08-10 19:44:04 +02:00
|
|
|
}
|
|
|
|
if (!$this->answer) {
|
2012-10-07 23:35:01 +02:00
|
|
|
throw new Exception("Must set answer before saving it");
|
2012-08-10 19:44:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$question = $this->question;
|
|
|
|
$answer = $this->answer;
|
|
|
|
$conn = $answer->establishConnection('w');
|
|
|
|
$trans = $conn->openTransaction();
|
|
|
|
$trans->beginReadLocking();
|
|
|
|
|
|
|
|
$question->reload();
|
|
|
|
|
|
|
|
queryfx($conn,
|
|
|
|
'UPDATE %T as t
|
|
|
|
SET t.`answerCount` = t.`answerCount` + 1
|
|
|
|
WHERE t.`PHID` = %s',
|
|
|
|
$question->getTableName(),
|
|
|
|
$question->getPHID());
|
|
|
|
|
|
|
|
$answer->setQuestionID($question->getID());
|
|
|
|
$answer->save();
|
|
|
|
|
|
|
|
$trans->endReadLocking();
|
|
|
|
$trans->saveTransaction();
|
2012-10-07 23:35:01 +02:00
|
|
|
|
|
|
|
$question->attachRelated();
|
|
|
|
PhabricatorSearchPonderIndexer::indexQuestion($question);
|
2012-10-08 23:47:21 +02:00
|
|
|
|
|
|
|
// subscribe author and @mentions
|
|
|
|
$subeditor = id(new PhabricatorSubscriptionsEditor())
|
|
|
|
->setObject($question)
|
2012-10-10 19:18:23 +02:00
|
|
|
->setActor($actor);
|
2012-10-08 23:47:21 +02:00
|
|
|
|
|
|
|
$subeditor->subscribeExplicit(array($answer->getAuthorPHID()));
|
|
|
|
|
|
|
|
$content = $answer->getContent();
|
|
|
|
$at_mention_phids = PhabricatorMarkupEngine::extractPHIDsFromMentions(
|
|
|
|
array($content)
|
|
|
|
);
|
|
|
|
$subeditor->subscribeImplicit($at_mention_phids);
|
|
|
|
$subeditor->save();
|
|
|
|
|
|
|
|
if ($this->shouldEmail) {
|
|
|
|
// now load subscribers, including implicitly-added @mention victims
|
|
|
|
$subscribers = PhabricatorSubscribersQuery
|
|
|
|
::loadSubscribersForPHID($question->getPHID());
|
|
|
|
|
|
|
|
|
|
|
|
// @mention emails (but not for anyone who has explicitly unsubscribed)
|
|
|
|
if (array_intersect($at_mention_phids, $subscribers)) {
|
|
|
|
id(new PonderMentionMail(
|
|
|
|
$question,
|
|
|
|
$answer,
|
2012-10-10 19:18:23 +02:00
|
|
|
$actor))
|
2012-10-08 23:47:21 +02:00
|
|
|
->setToPHIDs($at_mention_phids)
|
|
|
|
->send();
|
|
|
|
}
|
|
|
|
|
|
|
|
$other_subs =
|
|
|
|
array_diff(
|
|
|
|
$subscribers,
|
|
|
|
$at_mention_phids
|
|
|
|
);
|
|
|
|
|
|
|
|
// 'Answered' emails for subscribers who are not @mentiond (and excluding
|
|
|
|
// author depending on their MetaMTA settings).
|
|
|
|
if ($other_subs) {
|
|
|
|
id(new PonderAnsweredMail(
|
|
|
|
$question,
|
|
|
|
$answer,
|
2012-10-10 19:18:23 +02:00
|
|
|
$actor))
|
2012-10-08 23:47:21 +02:00
|
|
|
->setToPHIDs($other_subs)
|
|
|
|
->send();
|
|
|
|
}
|
|
|
|
}
|
2012-08-10 19:44:04 +02:00
|
|
|
}
|
|
|
|
}
|