1
0
moha/hooks/notifiers/notificationfreemobile.php

45 lines
991 B
PHP
Raw Normal View History

<?php
class notificationFreemobile
{
private $url = "https://smsapi.free-mobile.fr/sendmsg?user=32886706&pass=JTGUY6l5OG73zX&msg=";
private $name = "freemobile";
2022-01-02 18:14:13 +01:00
public $active = true;
public $level;
function __construct()
{
2022-01-02 18:14:13 +01:00
$this->level = WARNING | ERROR;
}
function send($message)
{
if ($this->active == true)
{
$ch = curl_init();
// set url
curl_setopt($ch, CURLOPT_URL, $this->url . $message);
//return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// $output contains the output string
2022-01-02 18:14:13 +01:00
if (($result = curl_exec($ch)) === false)
{
logger(ERROR, _(sprintf( "Curl return error: %s when sending notification", curl_error($ch))));
}else
{
logger(INFO, _("Curl return: ") . $result . _(" when sending notification"));
}
// close curl resource to free up system resources
curl_close($ch);
return true;
}
return false;
}
}
2022-01-02 18:14:13 +01:00
$notificationMethods["freemobile"] = new notificationFreemobile();
?>