Page MenuHomePhorge

PonderQuestionCreateMailReceiver.php
No OneTemporary

PonderQuestionCreateMailReceiver.php

<?php
final class PonderQuestionCreateMailReceiver
extends PhabricatorApplicationMailReceiver {
protected function newApplication() {
return new PhabricatorPonderApplication();
}
protected function processReceivedMail(
PhabricatorMetaMTAReceivedMail $mail,
PhutilEmailAddress $target) {
$author = $this->getAuthor();
$title = $mail->getSubject();
if (!strlen($title)) {
$title = pht('New Question');
}
$xactions = array();
$xactions[] = id(new PonderQuestionTransaction())
->setTransactionType(PonderQuestionTitleTransaction::TRANSACTIONTYPE)
->setNewValue($title);
$xactions[] = id(new PonderQuestionTransaction())
->setTransactionType(PonderQuestionContentTransaction::TRANSACTIONTYPE)
->setNewValue($mail->getCleanTextBody());
$question = PonderQuestion::initializeNewQuestion($author);
$content_source = $mail->newContentSource();
$editor = id(new PonderQuestionEditor())
->setActor($author)
->setContentSource($content_source)
->setContinueOnNoEffect(true);
$xactions = $editor->applyTransactions($question, $xactions);
$mail->setRelatedPHID($question->getPHID());
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Mar 27, 01:06 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1118657
Default Alt Text
PonderQuestionCreateMailReceiver.php (1 KB)

Event Timeline