2011-05-10 01:31:26 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
abstract class PhabricatorMailReplyHandler {
|
|
|
|
|
|
|
|
private $mailReceiver;
|
|
|
|
private $actor;
|
2012-10-10 19:18:23 +02:00
|
|
|
private $excludePHIDs = array();
|
2011-05-10 01:31:26 +02:00
|
|
|
|
|
|
|
final public function setMailReceiver($mail_receiver) {
|
|
|
|
$this->validateMailReceiver($mail_receiver);
|
|
|
|
$this->mailReceiver = $mail_receiver;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function getMailReceiver() {
|
|
|
|
return $this->mailReceiver;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function setActor(PhabricatorUser $actor) {
|
|
|
|
$this->actor = $actor;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function getActor() {
|
|
|
|
return $this->actor;
|
|
|
|
}
|
|
|
|
|
2012-10-10 19:18:23 +02:00
|
|
|
final public function setExcludeMailRecipientPHIDs(array $exclude) {
|
|
|
|
$this->excludePHIDs = $exclude;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function getExcludeMailRecipientPHIDs() {
|
|
|
|
return $this->excludePHIDs;
|
|
|
|
}
|
|
|
|
|
2011-05-10 01:31:26 +02:00
|
|
|
abstract public function validateMailReceiver($mail_receiver);
|
|
|
|
abstract public function getPrivateReplyHandlerEmailAddress(
|
|
|
|
PhabricatorObjectHandle $handle);
|
2013-01-26 01:03:54 +01:00
|
|
|
public function getReplyHandlerDomain() {
|
|
|
|
return PhabricatorEnv::getEnvConfig(
|
2013-02-19 22:33:10 +01:00
|
|
|
'metamta.reply-handler-domain');
|
2013-01-26 01:03:54 +01:00
|
|
|
}
|
2011-05-10 01:31:26 +02:00
|
|
|
abstract public function getReplyHandlerInstructions();
|
2012-08-28 23:09:37 +02:00
|
|
|
abstract protected function receiveEmail(
|
|
|
|
PhabricatorMetaMTAReceivedMail $mail);
|
|
|
|
|
|
|
|
public function processEmail(PhabricatorMetaMTAReceivedMail $mail) {
|
|
|
|
$error = $this->sanityCheckEmail($mail);
|
|
|
|
|
|
|
|
if ($error) {
|
|
|
|
if ($this->shouldSendErrorEmail($mail)) {
|
|
|
|
$this->sendErrorEmail($error, $mail);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->receiveEmail($mail);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function sanityCheckEmail(PhabricatorMetaMTAReceivedMail $mail) {
|
2012-11-01 23:18:06 +01:00
|
|
|
$body = $mail->getCleanTextBody();
|
|
|
|
$attachments = $mail->getAttachments();
|
|
|
|
|
|
|
|
if (empty($body) && empty($attachments)) {
|
2012-08-28 23:09:37 +02:00
|
|
|
return 'Empty email body. Email should begin with an !action and / or '.
|
|
|
|
'text to comment. Inline replies and signatures are ignored.';
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Only send an error email if the user is talking to just Phabricator. We
|
|
|
|
* can assume if there is only one To address it is a Phabricator address
|
|
|
|
* since this code is running and everything.
|
|
|
|
*/
|
|
|
|
private function shouldSendErrorEmail(PhabricatorMetaMTAReceivedMail $mail) {
|
2012-11-30 21:09:37 +01:00
|
|
|
return (count($mail->getToAddresses()) == 1) &&
|
|
|
|
(count($mail->getCCAddresses()) == 0);
|
2012-08-28 23:09:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function sendErrorEmail($error,
|
|
|
|
PhabricatorMetaMTAReceivedMail $mail) {
|
|
|
|
$template = new PhabricatorMetaMTAMail();
|
|
|
|
$template->setSubject('Exception: unable to process your mail request');
|
|
|
|
$template->setBody($this->buildErrorMailBody($error, $mail));
|
|
|
|
$template->setRelatedPHID($mail->getRelatedPHID());
|
|
|
|
$phid = $this->getActor()->getPHID();
|
|
|
|
$tos = array(
|
2013-03-01 02:15:09 +01:00
|
|
|
$phid => PhabricatorObjectHandleData::loadOneHandle(
|
|
|
|
$phid,
|
|
|
|
// TODO: This could be cleaner (T603).
|
|
|
|
PhabricatorUser::getOmnipotentUser()),
|
2012-08-28 23:09:37 +02:00
|
|
|
);
|
|
|
|
$mails = $this->multiplexMail($template, $tos, array());
|
|
|
|
|
|
|
|
foreach ($mails as $email) {
|
|
|
|
$email->saveAndSend();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function buildErrorMailBody($error,
|
|
|
|
PhabricatorMetaMTAReceivedMail $mail) {
|
|
|
|
$original_body = $mail->getRawTextBody();
|
|
|
|
|
|
|
|
$main_body = <<<EOBODY
|
|
|
|
Your request failed because an error was encoutered while processing it:
|
|
|
|
|
|
|
|
ERROR: {$error}
|
|
|
|
|
|
|
|
-- Original Body -------------------------------------------------------------
|
|
|
|
|
|
|
|
{$original_body}
|
|
|
|
|
|
|
|
EOBODY;
|
|
|
|
|
|
|
|
$body = new PhabricatorMetaMTAMailBody();
|
|
|
|
$body->addRawSection($main_body);
|
|
|
|
$body->addReplySection($this->getReplyHandlerInstructions());
|
|
|
|
|
|
|
|
return $body->render();
|
|
|
|
}
|
2011-05-10 01:31:26 +02:00
|
|
|
|
|
|
|
public function supportsPrivateReplies() {
|
Allow Phabricator to be configured to use a public Reply-To address
Summary:
We already support this (and Facebook uses it) but it is difficult to configure
and you have to write a bunch of code. Instead, provide a simple flag.
See the documentation changes for details, but when this flag is enabled we send
one email with a reply-to like "D2+public+23hf91fh19fh@phabricator.example.com".
Anyone can reply to this, and we figure out who they are based on their "From"
address instead of a unique hash. This is less secure, but a reasonable tradeoff
in many cases.
This also has the advantage over a naive implementation of at least doing object
hash validation.
@jungejason: I don't think this affects Facebook's implementation but this is an
area where we've had problems in the past, so watch out for it when you deploy.
Also note that you must set "metamta.public-replies" to true since Maniphest now
looks for that key specifically before going into public reply mode; it no
longer just tests for a public reply address being generateable (since it can
always generate one now).
Test Plan:
Swapped my local install in and out of public reply mode and commented on
objects. Got expected email behavior. Replied to public and private email
addresses.
Attacked public addresses by using them when the install was configured to
disallow them and by altering the hash and the from address. All this stuff was
rejected.
Reviewed By: jungejason
Reviewers: moskov, jungejason, tuomaspelkonen, aran
CC: aran, epriestley, moskov, jungejason
Differential Revision: 563
2011-06-30 22:01:35 +02:00
|
|
|
return (bool)$this->getReplyHandlerDomain() &&
|
|
|
|
!$this->supportsPublicReplies();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function supportsPublicReplies() {
|
|
|
|
if (!PhabricatorEnv::getEnvConfig('metamta.public-replies')) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-02-27 21:57:57 +01:00
|
|
|
if (!$this->getReplyHandlerDomain()) {
|
|
|
|
return false;
|
|
|
|
}
|
Allow Phabricator to be configured to use a public Reply-To address
Summary:
We already support this (and Facebook uses it) but it is difficult to configure
and you have to write a bunch of code. Instead, provide a simple flag.
See the documentation changes for details, but when this flag is enabled we send
one email with a reply-to like "D2+public+23hf91fh19fh@phabricator.example.com".
Anyone can reply to this, and we figure out who they are based on their "From"
address instead of a unique hash. This is less secure, but a reasonable tradeoff
in many cases.
This also has the advantage over a naive implementation of at least doing object
hash validation.
@jungejason: I don't think this affects Facebook's implementation but this is an
area where we've had problems in the past, so watch out for it when you deploy.
Also note that you must set "metamta.public-replies" to true since Maniphest now
looks for that key specifically before going into public reply mode; it no
longer just tests for a public reply address being generateable (since it can
always generate one now).
Test Plan:
Swapped my local install in and out of public reply mode and commented on
objects. Got expected email behavior. Replied to public and private email
addresses.
Attacked public addresses by using them when the install was configured to
disallow them and by altering the hash and the from address. All this stuff was
rejected.
Reviewed By: jungejason
Reviewers: moskov, jungejason, tuomaspelkonen, aran
CC: aran, epriestley, moskov, jungejason
Differential Revision: 563
2011-06-30 22:01:35 +02:00
|
|
|
return (bool)$this->getPublicReplyHandlerEmailAddress();
|
2011-05-10 01:31:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
final public function supportsReplies() {
|
|
|
|
return $this->supportsPrivateReplies() ||
|
Allow Phabricator to be configured to use a public Reply-To address
Summary:
We already support this (and Facebook uses it) but it is difficult to configure
and you have to write a bunch of code. Instead, provide a simple flag.
See the documentation changes for details, but when this flag is enabled we send
one email with a reply-to like "D2+public+23hf91fh19fh@phabricator.example.com".
Anyone can reply to this, and we figure out who they are based on their "From"
address instead of a unique hash. This is less secure, but a reasonable tradeoff
in many cases.
This also has the advantage over a naive implementation of at least doing object
hash validation.
@jungejason: I don't think this affects Facebook's implementation but this is an
area where we've had problems in the past, so watch out for it when you deploy.
Also note that you must set "metamta.public-replies" to true since Maniphest now
looks for that key specifically before going into public reply mode; it no
longer just tests for a public reply address being generateable (since it can
always generate one now).
Test Plan:
Swapped my local install in and out of public reply mode and commented on
objects. Got expected email behavior. Replied to public and private email
addresses.
Attacked public addresses by using them when the install was configured to
disallow them and by altering the hash and the from address. All this stuff was
rejected.
Reviewed By: jungejason
Reviewers: moskov, jungejason, tuomaspelkonen, aran
CC: aran, epriestley, moskov, jungejason
Differential Revision: 563
2011-06-30 22:01:35 +02:00
|
|
|
$this->supportsPublicReplies();
|
2011-05-10 01:31:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getPublicReplyHandlerEmailAddress() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2012-06-16 08:21:25 +02:00
|
|
|
final public function getRecipientsSummary(
|
|
|
|
array $to_handles,
|
|
|
|
array $cc_handles) {
|
|
|
|
assert_instances_of($to_handles, 'PhabricatorObjectHandle');
|
|
|
|
assert_instances_of($cc_handles, 'PhabricatorObjectHandle');
|
|
|
|
|
|
|
|
$body = '';
|
2012-07-17 04:02:06 +02:00
|
|
|
|
|
|
|
if (PhabricatorEnv::getEnvConfig('metamta.recipients.show-hints')) {
|
|
|
|
if ($to_handles) {
|
|
|
|
$body .= "To: ".implode(', ', mpull($to_handles, 'getName'))."\n";
|
|
|
|
}
|
|
|
|
if ($cc_handles) {
|
|
|
|
$body .= "Cc: ".implode(', ', mpull($cc_handles, 'getName'))."\n";
|
|
|
|
}
|
2012-06-16 08:21:25 +02:00
|
|
|
}
|
2012-07-17 04:02:06 +02:00
|
|
|
|
2012-06-16 08:21:25 +02:00
|
|
|
return $body;
|
|
|
|
}
|
|
|
|
|
2011-05-10 01:31:26 +02:00
|
|
|
final public function multiplexMail(
|
|
|
|
PhabricatorMetaMTAMail $mail_template,
|
|
|
|
array $to_handles,
|
|
|
|
array $cc_handles) {
|
2012-04-03 21:10:45 +02:00
|
|
|
assert_instances_of($to_handles, 'PhabricatorObjectHandle');
|
|
|
|
assert_instances_of($cc_handles, 'PhabricatorObjectHandle');
|
2011-05-10 01:31:26 +02:00
|
|
|
|
|
|
|
$result = array();
|
|
|
|
|
Fix various threading issues, particularly in Gmail
Summary:
- Add an explicit multiplexing option, and enable it by default. This is necessary for Mail.app to coexist with other clients ("Re:" breaks outlook at the very least, and generally sucks in the common case), and allows users with flexible clients to enable subject variance.
- Add an option for subject line variance. Default to not varying the subject, so mail no longer says [Committed], [Closed], etc. This is so the defaults thread correctly in Gmail (not entirely sure this actually works).
- Add a preference to enable subject line variance.
- Unless all mail is multiplexed, don't enable or respect the "Re" or "vary subject" preferences. These are currently shown and respected in non-multiplex cases, which creates inconsistent results.
NOTE: @jungejason @nh @vrana This changes the default behavior (from non-multiplexing to multiplexing), and might break Facebook's integration. You should be able to keep the same behavior by setting the options appropriately, although if you can get the new defaults working they're probably better.
Test Plan:
Send mail from Maniphest, Differential and Audit. Updated preferences. Enabled/disabled multiplexing. Things seem OK?
NOTE: I haven't actually been able to repro the Gmail threading issue so I'm not totally sure what's going on there, maybe it started respecting "Re:" (or always has), but @cpiro and @20after4 both reported it independently. This fixes a bunch of bugs in any case and gives us more conservative set of defaults.
I'll see if I can buff out the Gmail story a bit but every client is basically a giant black box of mystery. :/
Reviewers: btrahan, vrana, jungejason, nh
Reviewed By: btrahan
CC: cpiro, 20after4, aran
Maniphest Tasks: T1097, T847
Differential Revision: https://secure.phabricator.com/D2206
2012-04-12 18:31:03 +02:00
|
|
|
// If MetaMTA is configured to always multiplex, skip the single-email
|
|
|
|
// case.
|
|
|
|
if (!PhabricatorMetaMTAMail::shouldMultiplexAllMail()) {
|
|
|
|
// If private replies are not supported, simply send one email to all
|
|
|
|
// recipients and CCs. This covers cases where we have no reply handler,
|
|
|
|
// or we have a public reply handler.
|
|
|
|
if (!$this->supportsPrivateReplies()) {
|
|
|
|
$mail = clone $mail_template;
|
|
|
|
$mail->addTos(mpull($to_handles, 'getPHID'));
|
|
|
|
$mail->addCCs(mpull($cc_handles, 'getPHID'));
|
|
|
|
|
|
|
|
if ($this->supportsPublicReplies()) {
|
|
|
|
$reply_to = $this->getPublicReplyHandlerEmailAddress();
|
|
|
|
$mail->setReplyTo($reply_to);
|
|
|
|
}
|
|
|
|
|
|
|
|
$result[] = $mail;
|
|
|
|
|
|
|
|
return $result;
|
2011-05-10 01:31:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-22 03:39:35 +02:00
|
|
|
$tos = mpull($to_handles, null, 'getPHID');
|
|
|
|
$ccs = mpull($cc_handles, null, 'getPHID');
|
|
|
|
|
2011-05-10 01:31:26 +02:00
|
|
|
// Merge all the recipients together. TODO: We could keep the CCs as real
|
|
|
|
// CCs and send to a "noreply@domain.com" type address, but keep it simple
|
|
|
|
// for now.
|
2012-06-22 03:39:35 +02:00
|
|
|
$recipients = $tos + $ccs;
|
2011-05-10 01:31:26 +02:00
|
|
|
|
2011-05-12 05:32:30 +02:00
|
|
|
// When multiplexing mail, explicitly include To/Cc information in the
|
|
|
|
// message body and headers.
|
2012-06-22 03:39:35 +02:00
|
|
|
|
|
|
|
$mail_template = clone $mail_template;
|
|
|
|
|
|
|
|
$mail_template->addPHIDHeaders('X-Phabricator-To', array_keys($tos));
|
|
|
|
$mail_template->addPHIDHeaders('X-Phabricator-Cc', array_keys($ccs));
|
2011-05-12 05:32:30 +02:00
|
|
|
|
|
|
|
$body = $mail_template->getBody();
|
|
|
|
$body .= "\n";
|
2012-06-16 08:21:25 +02:00
|
|
|
$body .= $this->getRecipientsSummary($to_handles, $cc_handles);
|
2011-05-12 05:32:30 +02:00
|
|
|
|
2012-07-18 01:50:52 +02:00
|
|
|
foreach ($recipients as $phid => $recipient) {
|
2011-05-10 01:31:26 +02:00
|
|
|
$mail = clone $mail_template;
|
2012-07-18 01:50:52 +02:00
|
|
|
if (isset($to_handles[$phid])) {
|
|
|
|
$mail->addTos(array($phid));
|
|
|
|
} else if (isset($cc_handles[$phid])) {
|
|
|
|
$mail->addCCs(array($phid));
|
|
|
|
} else {
|
|
|
|
// not good - they should be a to or a cc
|
|
|
|
continue;
|
|
|
|
}
|
2011-05-10 01:31:26 +02:00
|
|
|
|
2011-05-12 05:32:30 +02:00
|
|
|
$mail->setBody($body);
|
|
|
|
|
2012-04-16 19:35:52 +02:00
|
|
|
$reply_to = null;
|
|
|
|
if (!$reply_to && $this->supportsPrivateReplies()) {
|
|
|
|
$reply_to = $this->getPrivateReplyHandlerEmailAddress($recipient);
|
|
|
|
}
|
|
|
|
|
2011-07-09 08:16:58 +02:00
|
|
|
if (!$reply_to && $this->supportsPublicReplies()) {
|
2011-05-10 01:31:26 +02:00
|
|
|
$reply_to = $this->getPublicReplyHandlerEmailAddress();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($reply_to) {
|
|
|
|
$mail->setReplyTo($reply_to);
|
|
|
|
}
|
|
|
|
|
|
|
|
$result[] = $mail;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
Allow Phabricator to be configured to use a public Reply-To address
Summary:
We already support this (and Facebook uses it) but it is difficult to configure
and you have to write a bunch of code. Instead, provide a simple flag.
See the documentation changes for details, but when this flag is enabled we send
one email with a reply-to like "D2+public+23hf91fh19fh@phabricator.example.com".
Anyone can reply to this, and we figure out who they are based on their "From"
address instead of a unique hash. This is less secure, but a reasonable tradeoff
in many cases.
This also has the advantage over a naive implementation of at least doing object
hash validation.
@jungejason: I don't think this affects Facebook's implementation but this is an
area where we've had problems in the past, so watch out for it when you deploy.
Also note that you must set "metamta.public-replies" to true since Maniphest now
looks for that key specifically before going into public reply mode; it no
longer just tests for a public reply address being generateable (since it can
always generate one now).
Test Plan:
Swapped my local install in and out of public reply mode and commented on
objects. Got expected email behavior. Replied to public and private email
addresses.
Attacked public addresses by using them when the install was configured to
disallow them and by altering the hash and the from address. All this stuff was
rejected.
Reviewed By: jungejason
Reviewers: moskov, jungejason, tuomaspelkonen, aran
CC: aran, epriestley, moskov, jungejason
Differential Revision: 563
2011-06-30 22:01:35 +02:00
|
|
|
protected function getDefaultPublicReplyHandlerEmailAddress($prefix) {
|
|
|
|
|
|
|
|
$receiver = $this->getMailReceiver();
|
|
|
|
$receiver_id = $receiver->getID();
|
|
|
|
$domain = $this->getReplyHandlerDomain();
|
|
|
|
|
|
|
|
// We compute a hash using the object's own PHID to prevent an attacker
|
|
|
|
// from blindly interacting with objects that they haven't ever received
|
|
|
|
// mail about by just sending to D1@, D2@, etc...
|
|
|
|
$hash = PhabricatorMetaMTAReceivedMail::computeMailHash(
|
|
|
|
$receiver->getMailKey(),
|
|
|
|
$receiver->getPHID());
|
|
|
|
|
2011-08-16 11:31:51 +02:00
|
|
|
$address = "{$prefix}{$receiver_id}+public+{$hash}@{$domain}";
|
|
|
|
return $this->getSingleReplyHandlerPrefix($address);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getSingleReplyHandlerPrefix($address) {
|
|
|
|
$single_handle_prefix = PhabricatorEnv::getEnvConfig(
|
|
|
|
'metamta.single-reply-handler-prefix');
|
|
|
|
return ($single_handle_prefix)
|
|
|
|
? $single_handle_prefix . '+' . $address
|
|
|
|
: $address;
|
Allow Phabricator to be configured to use a public Reply-To address
Summary:
We already support this (and Facebook uses it) but it is difficult to configure
and you have to write a bunch of code. Instead, provide a simple flag.
See the documentation changes for details, but when this flag is enabled we send
one email with a reply-to like "D2+public+23hf91fh19fh@phabricator.example.com".
Anyone can reply to this, and we figure out who they are based on their "From"
address instead of a unique hash. This is less secure, but a reasonable tradeoff
in many cases.
This also has the advantage over a naive implementation of at least doing object
hash validation.
@jungejason: I don't think this affects Facebook's implementation but this is an
area where we've had problems in the past, so watch out for it when you deploy.
Also note that you must set "metamta.public-replies" to true since Maniphest now
looks for that key specifically before going into public reply mode; it no
longer just tests for a public reply address being generateable (since it can
always generate one now).
Test Plan:
Swapped my local install in and out of public reply mode and commented on
objects. Got expected email behavior. Replied to public and private email
addresses.
Attacked public addresses by using them when the install was configured to
disallow them and by altering the hash and the from address. All this stuff was
rejected.
Reviewed By: jungejason
Reviewers: moskov, jungejason, tuomaspelkonen, aran
CC: aran, epriestley, moskov, jungejason
Differential Revision: 563
2011-06-30 22:01:35 +02:00
|
|
|
}
|
|
|
|
|
2011-05-10 01:31:26 +02:00
|
|
|
protected function getDefaultPrivateReplyHandlerEmailAddress(
|
|
|
|
PhabricatorObjectHandle $handle,
|
|
|
|
$prefix) {
|
|
|
|
|
|
|
|
if ($handle->getType() != PhabricatorPHIDConstants::PHID_TYPE_USER) {
|
|
|
|
// You must be a real user to get a private reply handler address.
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$receiver = $this->getMailReceiver();
|
|
|
|
$receiver_id = $receiver->getID();
|
|
|
|
$user_id = $handle->getAlternateID();
|
|
|
|
$hash = PhabricatorMetaMTAReceivedMail::computeMailHash(
|
|
|
|
$receiver->getMailKey(),
|
|
|
|
$handle->getPHID());
|
|
|
|
$domain = $this->getReplyHandlerDomain();
|
|
|
|
|
2011-08-16 11:31:51 +02:00
|
|
|
$address = "{$prefix}{$receiver_id}+{$user_id}+{$hash}@{$domain}";
|
|
|
|
return $this->getSingleReplyHandlerPrefix($address);
|
2011-05-10 01:31:26 +02:00
|
|
|
}
|
|
|
|
|
2013-01-27 04:56:39 +01:00
|
|
|
final protected function enhanceBodyWithAttachments(
|
|
|
|
$body,
|
|
|
|
array $attachments,
|
|
|
|
$format = '- {F%d, layout=link}') {
|
2012-11-01 23:18:06 +01:00
|
|
|
if (!$attachments) {
|
|
|
|
return $body;
|
|
|
|
}
|
|
|
|
|
|
|
|
$files = id(new PhabricatorFile())
|
|
|
|
->loadAllWhere('phid in (%Ls)', $attachments);
|
|
|
|
|
|
|
|
// if we have some text then double return before adding our file list
|
|
|
|
if ($body) {
|
|
|
|
$body .= "\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($files as $file) {
|
2013-01-27 04:56:39 +01:00
|
|
|
$file_str = sprintf($format, $file->getID());
|
2012-11-01 23:18:06 +01:00
|
|
|
$body .= $file_str."\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
return rtrim($body);
|
|
|
|
}
|
|
|
|
|
2011-05-10 01:31:26 +02:00
|
|
|
}
|