]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/Emailer.php
Merge branch 'develop' of https://github.com/friendica/friendica into develop
[friendica.git] / src / Util / Emailer.php
index cb59d48397b4ce6d0d9d8d6b6b5c1e00ebae3b88..717366248f7a9f11e332c345809c99612cbd8f5c 100644 (file)
@@ -1,16 +1,36 @@
 <?php
 /**
- * @file src/Util/Emailer.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 namespace Friendica\Util;
 
 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\NotifyMailBuilder;
+use Friendica\Util\EMailer\SystemMailBuilder;
 use Psr\Log\LoggerInterface;
 
 /**
@@ -26,13 +46,76 @@ class Emailer
        private $logger;
        /** @var App\BaseURL */
        private $baseUrl;
+       /** @var L10n */
+       private $l10n;
+
+       /** @var string */
+       private $siteEmailAddress;
+       /** @var string */
+       private $siteEmailName;
 
-       public function __construct(IConfig $config, IPConfig $pConfig, App\BaseURL $baseURL, LoggerInterface $logger)
+       public function __construct(IConfig $config, IPConfig $pConfig, App\BaseURL $baseURL, LoggerInterface $logger,
+                                   L10n $defaultLang)
        {
                $this->config      = $config;
                $this->pConfig     = $pConfig;
                $this->logger      = $logger;
                $this->baseUrl     = $baseURL;
+               $this->l10n        = $defaultLang;
+
+               $this->siteEmailAddress = $this->config->get('config', 'sender_email');
+               if (empty($this->siteEmailAddress)) {
+                       $hostname = $this->baseUrl->getHostname();
+                       if (strpos($hostname, ':')) {
+                               $hostname = substr($hostname, 0, strpos($hostname, ':'));
+                       }
+
+                       $this->siteEmailAddress = 'noreply@' . $hostname;
+               }
+
+               $this->siteEmailName = $this->config->get('config', 'sitename', 'Friendica Social Network');
+       }
+
+       /**
+        * Gets the site's default sender email address
+        *
+        * @return string
+        */
+       public function getSiteEmailAddress()
+       {
+               return $this->siteEmailAddress;
+       }
+
+       /**
+        * Gets the site's default sender name
+        *
+        * @return string
+        */
+       public function getSiteEmailName()
+       {
+               return $this->siteEmailName;
+       }
+
+       /**
+        * Creates a new system email
+        *
+        * @return SystemMailBuilder
+        */
+       public function newSystemMail()
+       {
+               return new SystemMailBuilder($this->l10n, $this->baseUrl, $this->config, $this->logger,
+                       $this->getSiteEmailAddress(), $this->getSiteEmailName());
+       }
+
+       /**
+        * Creates a new mail for notifications
+        *
+        * @return NotifyMailBuilder
+        */
+       public function newNotifyMail()
+       {
+               return new NotifyMailBuilder($this->l10n, $this->baseUrl, $this->config, $this->logger,
+                       $this->getSiteEmailAddress(), $this->getSiteEmailName());
        }
 
        /**
@@ -45,12 +128,8 @@ class Emailer
         */
        public function send(IEmail $email)
        {
-               $this->logger->warning('start', ['email' => $email]);
-
                Hook::callAll('emailer_send_prepare', $email);
 
-               $this->logger->warning('end', ['email' => $email]);
-
                if (empty($email)) {
                        return true;
                }