Covivo/mobicoop

View on GitHub
api/src/Communication/Service/SmsManager.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * Copyright (c) 2018, MOBICOOP. All rights reserved.
 * This project is dual licensed under AGPL and proprietary licence.
 ***************************
 *    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 <gnu.org/licenses>.
 ***************************
 *    Licence MOBICOOP described in the file
 *    LICENSE
 */

namespace App\Communication\Service;

use App\Communication\Entity\Sms;
use App\DataProvider\Entity\Response;
use App\DataProvider\Entity\SmsEnvoiProvider;
use Psr\Log\LoggerInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
use Twig\Environment;

/**
 * Sms sending service.
 *
 * @author Remi Wortemann <remi.wortemann@mobicoop.org>
 */
class SmsManager
{
    public const LANG = 'fr';
    private $templating;
    private $logger;
    private $smsProvider;
    private $translator;

    /**
     * SmsManager constructor.
     *
     * @param SmsProvider $smsProvider
     */
    public function __construct(Environment $templating, LoggerInterface $logger, TranslatorInterface $translator, string $smsProvider, string $username, string $password, string $sender)
    {
        $this->templating = $templating;
        $this->logger = $logger;
        $this->translator = $translator;

        switch ($smsProvider) {
            case 'smsEnvoi':  $this->smsProvider = new SmsEnvoiProvider($username, $password, $sender);

                break;

            default:  $this->smsProvider = new SmsEnvoiProvider($username, $password, $sender);

                break;
        }
    }

    /**
     * Send a sms.
     *
     * @param Sms    $sms      the sms to send
     * @param string $template the sms's template
     * @param array  $context  optional array of parameters that can be included in the template
     * @param mixed  $lang
     *
     * @return string
     */
    public function send(Sms $sms, $template, $context = [], $lang = 'fr'): Response
    {
        $sessionLocale = $this->translator->getLocale();
        if (self::LANG == $lang) {
            $this->translator->setLocale($lang);
        } else {
            $this->translator->setLocale($lang->getCode());
        }
        $sms->setMessage(
            $this->templating->render(
                $template.'.html.twig',
                [
                    'context' => $context,
                    'message' => str_replace(["\r\n", "\r", "\n"], '<br />', $sms->getMessage()),
                ]
            ),
            'text/html'
        );
        $this->translator->setLocale($sessionLocale);

        // to do send sms via smsEnvoi
        return $this->smsProvider->postCollection($sms);
    }
}