]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/Emailer.php
Remove unused dependency
[friendica.git] / src / Util / Emailer.php
index 7d4205ac3346ec779a34b90024d9b94a4220dc08..ed4ea4d87c5606ee0c69297e1df1556384d17284 100644 (file)
  */
 namespace Friendica\Util;
 
-use Friendica\Core\PConfig;
+use Friendica\App;
+use Friendica\Core\Config\IConfig;
+use Friendica\Core\Hook;
+use Friendica\Core\L10n;
+use Friendica\Core\PConfig\IPConfig;
+use Friendica\Network\HTTPException\InternalServerErrorException;
+use Friendica\Object\EMail\IEmail;
 use Friendica\Protocol\Email;
+use Friendica\Util\EMailer\SystemMailBuilder;
+use Psr\Log\LoggerInterface;
 
 /**
- * @brief class to handle emailing
+ * class to handle emailing
  */
 class Emailer
 {
+       /** @var IConfig */
+       private $config;
+       /** @var IPConfig */
+       private $pConfig;
+       /** @var LoggerInterface */
+       private $logger;
+       /** @var App\BaseURL */
+       private $baseUrl;
+
+       public function __construct(IConfig $config, IPConfig $pConfig, App\BaseURL $baseURL, LoggerInterface $logger)
+       {
+               $this->config      = $config;
+               $this->pConfig     = $pConfig;
+               $this->logger      = $logger;
+               $this->baseUrl     = $baseURL;
+       }
+
+       /**
+        * Creates a new system email
+        *
+        * @param L10n $l10n The chosen language for the new email
+        *
+        * @return SystemMailBuilder
+        */
+       public function newSystemMail(L10n $l10n)
+       {
+               return new SystemMailBuilder($l10n, $this->baseUrl, $this->config);
+       }
+
        /**
         * Send a multipart/alternative message with Text and HTML versions
         *
-        * @param array $params parameters
-        *                      fromName name of the sender
-        *                      fromEmail                        email fo the sender
-        *                      replyTo                      replyTo address to direct responses
-        *                      toEmail                      destination email address
-        *                      messageSubject       subject of the message
-        *                      htmlVersion                  html version of the message
-        *                      textVersion                  text only version of the message
-        *                      additionalMailHeader additions to the smtp mail header
-        *                      optional             uid user id of the destination user
+        * @param IEmail $email The email to send
         *
-        * @return object
+        * @return bool
+        * @throws InternalServerErrorException
         */
-       public static function send($params)
+       public function send(IEmail $email)
        {
-               call_hooks('emailer_send_prepare', $params);
+               Hook::callAll('emailer_send_prepare', $email);
+
+               if (empty($email)) {
+                       return true;
+               }
 
                $email_textonly = false;
-               if (x($params, "uid")) {
-                       $email_textonly = PConfig::get($params['uid'], "system", "email_textonly");
+               if (!empty($email->getRecipientUid())) {
+                       $email_textonly = $this->pConfig->get($email->getRecipientUid(), 'system', 'email_textonly');
                }
 
-               $fromName = Email::encodeHeader(html_entity_decode($params['fromName'], ENT_QUOTES, 'UTF-8'), 'UTF-8');
-               $messageSubject = Email::encodeHeader(html_entity_decode($params['messageSubject'], ENT_QUOTES, 'UTF-8'), 'UTF-8');
+               $fromName       = Email::encodeHeader(html_entity_decode($email->getFromName(), ENT_QUOTES, 'UTF-8'), 'UTF-8');
+               $fromAddress      = $email->getFromAddress();
+               $replyTo        = $email->getReplyTo();
+               $messageSubject = Email::encodeHeader(html_entity_decode($email->getSubject(), ENT_QUOTES, 'UTF-8'), 'UTF-8');
 
                // generate a mime boundary
-               $mimeBoundary   =rand(0, 9)."-"
-                               .rand(100000000, 999999999)."-"
-                               .rand(100000000, 999999999)."=:"
-                               .rand(10000, 99999);
+               $mimeBoundary = rand(0, 9) . '-'
+                               . rand(100000000, 999999999) . '-'
+                               . rand(100000000, 999999999) . '=:'
+                               . rand(10000, 99999);
 
                // generate a multipart/alternative message header
-               $messageHeader = $params['additionalMailHeader'] .
-                                               "From: $fromName <{$params['fromEmail']}>\n" .
-                                               "Reply-To: $fromName <{$params['replyTo']}>\n" .
-                                               "MIME-Version: 1.0\n" .
-                                               "Content-Type: multipart/alternative; boundary=\"{$mimeBoundary}\"";
+               $messageHeader = $email->getAdditionalMailHeader() .
+                                "From: $fromName <{$fromAddress}>\n" .
+                                "Reply-To: $fromName <{$replyTo}>\n" .
+                                "MIME-Version: 1.0\n" .
+                                "Content-Type: multipart/alternative; boundary=\"{$mimeBoundary}\"";
 
                // assemble the final multipart message body with the text and html types included
-               $textBody       =       chunk_split(base64_encode($params['textVersion']));
-               $htmlBody       =       chunk_split(base64_encode($params['htmlVersion']));
-               $multipartMessageBody = "--" . $mimeBoundary . "\n" .                                   // plain text section
-                                                               "Content-Type: text/plain; charset=UTF-8\n" .
-                                                               "Content-Transfer-Encoding: base64\n\n" .
-                                                               $textBody . "\n";
-
-               if (!$email_textonly && !is_null($params['htmlVersion'])) {
+               $textBody             = chunk_split(base64_encode($email->getMessage(true)));
+               $htmlBody             = chunk_split(base64_encode($email->getMessage()));
+               $multipartMessageBody = "--" . $mimeBoundary . "\n" .                    // plain text section
+                                       "Content-Type: text/plain; charset=UTF-8\n" .
+                                       "Content-Transfer-Encoding: base64\n\n" .
+                                       $textBody . "\n";
+
+               if (!$email_textonly && !is_null($email->getMessage())) {
                        $multipartMessageBody .=
-                               "--" . $mimeBoundary . "\n" .                           // text/html section
+                               "--" . $mimeBoundary . "\n" .                // text/html section
                                "Content-Type: text/html; charset=UTF-8\n" .
                                "Content-Transfer-Encoding: base64\n\n" .
                                $htmlBody . "\n";
                }
                $multipartMessageBody .=
-                       "--" . $mimeBoundary . "--\n";                                  // message ending
+                       "--" . $mimeBoundary . "--\n";                    // message ending
+
+               if ($this->config->get('system', 'sendmail_params', true)) {
+                       $sendmail_params = '-f ' . $fromAddress;
+               } else {
+                       $sendmail_params = null;
+               }
 
                // send the message
-               $hookdata = array(
-                       'to' => $params['toEmail'],
-                       'subject' => $messageSubject,
-                       'body' => $multipartMessageBody,
-                       'headers' => $messageHeader
-               );
-               //echo "<pre>"; var_dump($hookdata); killme();
-               call_hooks("emailer_send", $hookdata);
+               $hookdata = [
+                       'to'         => $email->getToAddress(),
+                       'subject'    => $messageSubject,
+                       'body'       => $multipartMessageBody,
+                       'headers'    => $messageHeader,
+                       'parameters' => $sendmail_params,
+                       'sent'       => false,
+               ];
+
+               Hook::callAll('emailer_send', $hookdata);
+
+               if ($hookdata['sent']) {
+                       return true;
+               }
+
                $res = mail(
-                       $hookdata['to'],                                                        // send to address
-                       $hookdata['subject'],                                           // subject
-                       $hookdata['body'],                                                      // message body
-                       $hookdata['headers']                                            // message headers
+                       $hookdata['to'],
+                       $hookdata['subject'],
+                       $hookdata['body'],
+                       $hookdata['headers'],
+                       $hookdata['parameters']
                );
-               logger("header " . 'To: ' . $params['toEmail'] . "\n" . $messageHeader, LOGGER_DEBUG);
-               logger("return value " . (($res)?"true":"false"), LOGGER_DEBUG);
+               $this->logger->debug('header ' . 'To: ' . $email->getToAddress() . '\n' . $messageHeader);
+               $this->logger->debug('return value ' . (($res) ? 'true' : 'false'));
                return $res;
        }
 }