mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Change SMS provider
Co-authored-by: Celestine <34442450+rem-pai@users.noreply.github.com>
This commit is contained in:
parent
aed731a59f
commit
92c9320eae
2 changed files with 23 additions and 11 deletions
|
@ -1,18 +1,31 @@
|
|||
<?php declare(strict_types=1);
|
||||
namespace openvk\Web\Util;
|
||||
use Zadarma_API\{Api as ZApi, ApiException as ZException};
|
||||
|
||||
class Sms
|
||||
{
|
||||
function send(string $to, string $message): bool
|
||||
static function send(string $to, string $message): bool
|
||||
{
|
||||
$conf = (object) OPENVK_ROOT_CONF["openvk"]["credentials"]["zadarma"];
|
||||
if(!$conf->enable) return false;
|
||||
$conf = (object) OPENVK_ROOT_CONF["openvk"]["credentials"]["smsc"];
|
||||
if(!$conf->enable)
|
||||
return false;
|
||||
|
||||
try {
|
||||
$api = new ZApi($conf->key, $conf->secret, false);
|
||||
$res = $api->sendSms($to, $message, $conf->callerId);
|
||||
} catch(ZException $e) {
|
||||
$args = http_build_query([
|
||||
"login" => $conf->client,
|
||||
"psw" => $conf->secret,
|
||||
"phones" => $to,
|
||||
"mes" => $message,
|
||||
"flash" => 1,
|
||||
"translit" => 2,
|
||||
"fmt" => 2,
|
||||
]);
|
||||
|
||||
$response = file_get_contents("https://smsc.ru/sys/send.php?$args");
|
||||
if(!$response)
|
||||
return false;
|
||||
|
||||
$response = new \SimpleXMLElement($response);
|
||||
if(isset($response->error_code)) {
|
||||
trigger_error("Could not send SMS to $to: $response->error (Exception $response->error_code)", E_USER_WARNING);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -45,10 +45,9 @@ openvk:
|
|||
fartscroll: false
|
||||
testLabel: false
|
||||
credentials:
|
||||
zadarma:
|
||||
smsc:
|
||||
enable: false
|
||||
callerId: ""
|
||||
key: ""
|
||||
client: ""
|
||||
secret: ""
|
||||
eventDB:
|
||||
enable: false # Better enable this
|
||||
|
|
Loading…
Reference in a new issue