mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
a2571de575
Summary: Ref T603. These were deprecated some time ago in favor of the more standard withIDs() / withPHIDs(). Test Plan: `grep`, loaded some interfaces. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T603 Differential Revision: https://secure.phabricator.com/D6929
40 lines
1,021 B
PHP
40 lines
1,021 B
PHP
<?php
|
|
|
|
final class ManiphestTaskMailReceiver extends PhabricatorObjectMailReceiver {
|
|
|
|
public function isEnabled() {
|
|
$app_class = 'PhabricatorApplicationManiphest';
|
|
return PhabricatorApplication::isClassInstalled($app_class);
|
|
}
|
|
|
|
protected function getObjectPattern() {
|
|
return 'T[1-9]\d*';
|
|
}
|
|
|
|
protected function loadObject($pattern, PhabricatorUser $viewer) {
|
|
$id = (int)trim($pattern, 'T');
|
|
|
|
$results = id(new ManiphestTaskQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->execute();
|
|
|
|
return head($results);
|
|
}
|
|
|
|
protected function processReceivedObjectMail(
|
|
PhabricatorMetaMTAReceivedMail $mail,
|
|
PhabricatorLiskDAO $object,
|
|
PhabricatorUser $sender) {
|
|
|
|
$editor = new ManiphestTransactionEditor();
|
|
$editor->setActor($sender);
|
|
$handler = $editor->buildReplyHandler($object);
|
|
|
|
$handler->setActor($sender);
|
|
$handler->setExcludeMailRecipientPHIDs(
|
|
$mail->loadExcludeMailRecipientPHIDs());
|
|
$handler->processEmail($mail);
|
|
}
|
|
|
|
}
|