View source
<?php
namespace Drupal\mandrill\Plugin\Mail;
use Drupal\Core\Mail\MailInterface;
use Drupal\Core\Link;
use Drupal\Core\Url;
use Drupal\Core\Mail\MailFormatHelper;
use Drupal\Component\Utility\Html;
class MandrillMail implements MailInterface {
protected $config;
protected $mandrill;
protected $log;
protected $mimeTypeGuesser;
public function __construct() {
$this->config = \Drupal::service('config.factory')
->get('mandrill.settings');
$this->mandrill = \Drupal::service('mandrill.service');
$this->log = \Drupal::service('logger.factory')
->get('mandrill');
$this->mimeTypeGuesser = \Drupal::service('file.mime_type.guesser');
}
public function format(array $message) {
if (is_array($message['body'])) {
$message['body'] = Html::transformRootRelativeUrlsToAbsolute(implode("\n\n", $message['body']), \Drupal::request()
->getSchemeAndHttpHost());
}
return $message;
}
public function mail(array $message) {
if ($this->config
->get('mandrill_log_defaulted_sends')) {
$registered = FALSE;
foreach ($this->mandrill
->getMailSystems() as $key => $system) {
if ($message['id'] == $key) {
$registered = TRUE;
}
}
if (!$registered) {
$this->log
->notice("Module: %module Key: %key invoked Mandrill to send email because Mandrill is configured as the default mail system. Specify alternate configuration for this module & key in %mailsystem if this is not desirable.", [
'%module' => $message['module'],
'%key' => $message['id'],
'%mailsystem' => Link::fromTextAndUrl($this
->t('Mail System'), Url::fromRoute('mailsystem.settings'))
->toString(),
]);
}
}
$format = $this->config
->get('mandrill_filter_format');
if (!empty($format)) {
$message['body'] = check_markup($message['body'], $format);
}
$headers = isset($message['headers']) ? $message['headers'] : array();
if (isset($message['params']['mandrill']['header'])) {
$headers = $message['params']['mandrill']['header'] + $headers;
}
$header_key_map = array();
foreach (array_keys($headers) as $header_key) {
$header_key_map[strtolower($header_key)] = $header_key;
}
if (!empty($message['from_email']) && (!isset($header_key_map['reply-to']) || empty($headers[$header_key_map['reply-to']]))) {
$reply_to_key = isset($header_key_map['reply-to']) ? $header_key_map['reply-to'] : 'Reply-to';
$headers[$reply_to_key] = $message['from_email'];
}
$attachments = array();
if (isset($message['attachments']) && !empty($message['attachments'])) {
foreach ($message['attachments'] as $attachment) {
if (is_file($attachment)) {
$attachments[] = $this
->getAttachmentStruct($attachment);
}
}
}
$blacklisted_keys = explode(',', $this->config
->get('mandrill_mail_key_blacklist'));
$view_content = TRUE;
foreach ($blacklisted_keys as $key) {
if ($message['id'] == mb_strtolower(trim($key))) {
$view_content = FALSE;
break;
}
}
if (isset($message['params']['attachments']) && !empty($message['params']['attachments'])) {
foreach ($message['params']['attachments'] as $attachment) {
if (isset($attachment['uri'])) {
$attachment_path = \Drupal::service('file_system')
->realpath($attachment['uri']);
if (is_file($attachment_path)) {
$struct = $this
->getAttachmentStruct($attachment_path);
if (!empty($attachment['filename'])) {
$struct['name'] = $attachment['filename'];
}
$attachments[] = $struct;
}
}
elseif (isset($attachment['filecontent'])) {
$attachments[] = array(
'type' => $attachment['filemime'],
'name' => $attachment['filename'],
'content' => chunk_split(base64_encode($attachment['filecontent']), 76, "\n"),
);
}
}
unset($message['params']['attachments']);
}
$receivers = [
'to' => $message['to'],
];
if (isset($message['headers']['cc'])) {
$receivers['cc'] = $message['headers']['cc'];
}
if (isset($message['headers']['bcc'])) {
$receivers['bcc'] = $message['headers']['bcc'];
}
if (isset($message['headers']['Cc'])) {
$receivers['cc'] = $message['headers']['Cc'];
}
if (isset($message['headers']['Bcc'])) {
$receivers['bcc'] = $message['headers']['Bcc'];
}
$to = $this->mandrill
->getReceivers($receivers);
$plain_text = empty($message['params']['plaintext']) ? MailFormatHelper::htmlToText($message['body']) : $message['params']['plaintext'];
$metadata = isset($message['metadata']) ? $message['metadata'] : array();
$from = array(
'email' => !empty($this->config
->get('mandrill_from_email')) ? $this->config
->get('mandrill_from_email') : ($from['email'] = \Drupal::config('system.site')
->get('mail')),
'name' => !empty($this->config
->get('mandrill_from_name')) ? $this->config
->get('mandrill_from_name') : ($from['name'] = \Drupal::config('system.site')
->get('name')),
);
$overrides = isset($message['params']['mandrill']['overrides']) ? $message['params']['mandrill']['overrides'] : array();
$mandrill_message = $overrides + array(
'id' => $message['id'],
'module' => $message['module'],
'html' => $message['body'],
'text' => $plain_text,
'subject' => $message['subject'],
'from_email' => isset($message['params']['mandrill']['from_email']) ? $message['params']['mandrill']['from_email'] : $from['email'],
'from_name' => isset($message['params']['mandrill']['from_name']) ? $message['params']['mandrill']['from_name'] : $from['name'],
'to' => $to,
'headers' => $headers,
'track_opens' => $this->config
->get('mandrill_track_opens'),
'track_clicks' => $this->config
->get('mandrill_track_clicks'),
'auto_text' => FALSE,
'url_strip_qs' => $this->config
->get('mandrill_url_strip_qs'),
'bcc_address' => isset($message['bcc_email']) ? $message['bcc_email'] : NULL,
'tags' => array(
$message['id'],
),
'google_analytics_domains' => $this->config
->get('mandrill_analytics_domains') ? explode(',', $this->config
->get('mandrill_analytics_domains')) : array(),
'google_analytics_campaign' => $this->config
->get('mandrill_analytics_campaign'),
'attachments' => $attachments,
'view_content_link' => $view_content,
'metadata' => $metadata,
);
$subaccount = $this->config
->get('mandrill_subaccount');
if ($subaccount && $subaccount != '_none') {
$mandrill_message['subaccount'] = $subaccount;
}
$mandrill_params = array(
'message' => $mandrill_message,
);
\Drupal::moduleHandler()
->alter('mandrill_mail', $mandrill_params, $message);
$status = NULL;
if ($this->config
->get('mandrill_process_async')) {
$queue = \Drupal::Queue(MANDRILL_QUEUE, TRUE);
$queue
->createItem($mandrill_params);
if ($this->config
->get('mandrill_batch_log_queued')) {
$this->log
->notice('Message from %from to %to queued for delivery.', array(
'%from' => $from['email'],
'%to' => $to[0]['email'],
));
}
return TRUE;
}
else {
return $this->mandrill
->send($mandrill_params['message']);
}
}
public function getAttachmentStruct($path) {
$struct = array();
if (!@is_file($path)) {
throw new \Exception($path . ' is not a valid file.');
}
$filename = basename($path);
$file_buffer = file_get_contents($path);
$file_buffer = chunk_split(base64_encode($file_buffer), 76, "\n");
$mime_type = $this->mimeTypeGuesser
->guess($path);
if (!$this
->isValidContentType($mime_type)) {
throw new \Exception($mime_type . ' is not a valid content type.');
}
$struct['type'] = $mime_type;
$struct['name'] = $filename;
$struct['content'] = $file_buffer;
return $struct;
}
protected function isValidContentType($file_type) {
$valid_types = array(
'image/',
'text/',
'application/pdf',
'application/x-zip',
);
\Drupal::moduleHandler()
->alter('mandrill_valid_attachment_types', $valid_types);
foreach ($valid_types as $vct) {
if (strpos($file_type, $vct) !== FALSE) {
return TRUE;
}
}
return FALSE;
}
}