mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 09:22:40 +01:00
ef85f49adc
Summary: This commit doesn't change license of any file. It just makes the license implicit (inherited from LICENSE file in the root directory). We are removing the headers for these reasons: - It wastes space in editors, less code is visible in editor upon opening a file. - It brings noise to diff of the first change of any file every year. - It confuses Git file copy detection when creating small files. - We don't have an explicit license header in other files (JS, CSS, images, documentation). - Using license header in every file is not obligatory: http://www.apache.org/dev/apply-license.html#new. This change is approved by Alma Chao (Lead Open Source and IP Counsel at Facebook). Test Plan: Verified that the license survived only in LICENSE file and that it didn't modify externals. Reviewers: epriestley, davidrecordon Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2035 Differential Revision: https://secure.phabricator.com/D3886
166 lines
4.9 KiB
PHP
166 lines
4.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group maniphest
|
|
*/
|
|
final class ManiphestReplyHandler extends PhabricatorMailReplyHandler {
|
|
|
|
public function validateMailReceiver($mail_receiver) {
|
|
if (!($mail_receiver instanceof ManiphestTask)) {
|
|
throw new Exception("Mail receiver is not a ManiphestTask!");
|
|
}
|
|
}
|
|
|
|
public function getPrivateReplyHandlerEmailAddress(
|
|
PhabricatorObjectHandle $handle) {
|
|
return $this->getDefaultPrivateReplyHandlerEmailAddress($handle, 'T');
|
|
}
|
|
|
|
public function getPublicReplyHandlerEmailAddress() {
|
|
return $this->getDefaultPublicReplyHandlerEmailAddress('T');
|
|
}
|
|
|
|
public function getReplyHandlerDomain() {
|
|
return PhabricatorEnv::getEnvConfig(
|
|
'metamta.maniphest.reply-handler-domain');
|
|
}
|
|
|
|
public function getReplyHandlerInstructions() {
|
|
if ($this->supportsReplies()) {
|
|
return "Reply to comment or attach files, or !close, !claim, or ".
|
|
"!unsubscribe.";
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
protected function receiveEmail(PhabricatorMetaMTAReceivedMail $mail) {
|
|
|
|
// NOTE: We'll drop in here on both the "reply to a task" and "create a
|
|
// new task" workflows! Make sure you test both if you make changes!
|
|
|
|
$task = $this->getMailReceiver();
|
|
|
|
$is_new_task = !$task->getID();
|
|
|
|
$user = $this->getActor();
|
|
|
|
$body = $mail->getCleanTextBody();
|
|
$body = trim($body);
|
|
$body = $this->enhanceBodyWithAttachments($body, $mail->getAttachments());
|
|
|
|
$xactions = array();
|
|
$content_source = PhabricatorContentSource::newForSource(
|
|
PhabricatorContentSource::SOURCE_EMAIL,
|
|
array(
|
|
'id' => $mail->getID(),
|
|
));
|
|
|
|
$template = new ManiphestTransaction();
|
|
$template->setContentSource($content_source);
|
|
$template->setAuthorPHID($user->getPHID());
|
|
|
|
|
|
if ($is_new_task) {
|
|
// If this is a new task, create a "User created this task." transaction
|
|
// and then set the title and description.
|
|
$xaction = clone $template;
|
|
$xaction->setTransactionType(ManiphestTransactionType::TYPE_STATUS);
|
|
$xaction->setNewValue(ManiphestTaskStatus::STATUS_OPEN);
|
|
$xactions[] = $xaction;
|
|
|
|
$task->setAuthorPHID($user->getPHID());
|
|
$task->setTitle(nonempty($mail->getSubject(), 'Untitled Task'));
|
|
$task->setDescription($body);
|
|
$task->setPriority(ManiphestTaskPriority::getDefaultPriority());
|
|
|
|
} else {
|
|
$lines = explode("\n", trim($body));
|
|
$first_line = head($lines);
|
|
|
|
$command = null;
|
|
$matches = null;
|
|
if (preg_match('/^!(\w+)/', $first_line, $matches)) {
|
|
$lines = array_slice($lines, 1);
|
|
$body = implode("\n", $lines);
|
|
$body = trim($body);
|
|
|
|
$command = $matches[1];
|
|
}
|
|
|
|
$ttype = ManiphestTransactionType::TYPE_NONE;
|
|
$new_value = null;
|
|
switch ($command) {
|
|
case 'close':
|
|
$ttype = ManiphestTransactionType::TYPE_STATUS;
|
|
$new_value = ManiphestTaskStatus::STATUS_CLOSED_RESOLVED;
|
|
break;
|
|
case 'claim':
|
|
$ttype = ManiphestTransactionType::TYPE_OWNER;
|
|
$new_value = $user->getPHID();
|
|
break;
|
|
case 'unsubscribe':
|
|
$ttype = ManiphestTransactionType::TYPE_CCS;
|
|
$ccs = $task->getCCPHIDs();
|
|
foreach ($ccs as $k => $phid) {
|
|
if ($phid == $user->getPHID()) {
|
|
unset($ccs[$k]);
|
|
}
|
|
}
|
|
$new_value = array_values($ccs);
|
|
break;
|
|
}
|
|
|
|
$xaction = clone $template;
|
|
$xaction->setTransactionType($ttype);
|
|
$xaction->setNewValue($new_value);
|
|
$xaction->setComments($body);
|
|
|
|
$xactions[] = $xaction;
|
|
}
|
|
|
|
$ccs = $mail->loadCCPHIDs();
|
|
if ($ccs) {
|
|
$old_ccs = $task->getCCPHIDs();
|
|
$new_ccs = array_unique(array_merge($old_ccs, $ccs));
|
|
$cc_xaction = clone $template;
|
|
$cc_xaction->setTransactionType(ManiphestTransactionType::TYPE_CCS);
|
|
$cc_xaction->setNewValue($new_ccs);
|
|
$xactions[] = $cc_xaction;
|
|
}
|
|
|
|
$event = new PhabricatorEvent(
|
|
PhabricatorEventType::TYPE_MANIPHEST_WILLEDITTASK,
|
|
array(
|
|
'task' => $task,
|
|
'mail' => $mail,
|
|
'new' => $is_new_task,
|
|
'transactions' => $xactions,
|
|
));
|
|
$event->setUser($user);
|
|
PhutilEventEngine::dispatchEvent($event);
|
|
|
|
$task = $event->getValue('task');
|
|
$xactions = $event->getValue('transactions');
|
|
|
|
|
|
$editor = new ManiphestTransactionEditor();
|
|
$editor->setActor($user);
|
|
$editor->setParentMessageID($mail->getMessageID());
|
|
$editor->setExcludeMailRecipientPHIDs(
|
|
$this->getExcludeMailRecipientPHIDs());
|
|
$editor->applyTransactions($task, $xactions);
|
|
|
|
$event = new PhabricatorEvent(
|
|
PhabricatorEventType::TYPE_MANIPHEST_DIDEDITTASK,
|
|
array(
|
|
'task' => $task,
|
|
'new' => $is_new_task,
|
|
'transactions' => $xactions,
|
|
));
|
|
$event->setUser($user);
|
|
PhutilEventEngine::dispatchEvent($event);
|
|
|
|
}
|
|
|
|
}
|