Proyectos de Subversion Moodle

Rev

Autoría | Ultima modificación | Ver Log |

<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.

namespace smsgateway_modica;

use core\http_client;
use core_sms\manager;
use core_sms\message;
use GuzzleHttp\Exception\GuzzleException;

/**
 * Modica SMS gateway.
 *
 * @see https://confluence.modicagroup.com/display/DC/Mobile+Gateway+REST+API#MobileGatewayRESTAPI-Sendingtoasingledestination
 * @package    smsgateway_modica
 * @copyright  2025 Safat Shahin <safat.shahin@moodle.com>
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
class gateway extends \core_sms\gateway {
    /**
     * @var string MODICA_DEFAULT_API The default api gateway for modica.
     */
    public const MODICA_DEFAULT_API = 'https://api.modicagroup.com/rest/gateway/messages';

    #[\Override]
    public function send(
        message $message,
    ): message {
        $recipientnumber = manager::format_number(
            phonenumber: $message->recipientnumber,
            countrycode: $this->config->countrycode ?? null,
        );
        $json = json_encode(
            [
                'destination' => $recipientnumber,
                'content' => $message->content,
            ],
            JSON_THROW_ON_ERROR,
        );

        $client = \core\di::get(http_client::class);
        try {
            $response = $client->post(
                uri: $config->modica_url ?? self::MODICA_DEFAULT_API,
                options: [
                    'auth' => [
                        $this->config->modica_application_name,
                        $this->config->modica_application_password,
                    ],
                    'headers' => ['Content-Type' => 'application/json'],
                    'body' => $json,
                ],
            );

            if ($response->getStatusCode() === 201) {
                $status = \core_sms\message_status::GATEWAY_SENT;
            } else {
                $status = \core_sms\message_status::GATEWAY_FAILED;
            }
        } catch (GuzzleException $e) {
            $status = \core_sms\message_status::GATEWAY_FAILED;
        }

        return $message->with(
            status: $status,
        );
    }

    #[\Override]
    public function get_send_priority(message $message): int {
        return 50;
    }
}