303 lines
6.1 KiB
PHP
303 lines
6.1 KiB
PHP
|
<?php
|
||
|
|
||
|
try {
|
||
|
require $fluentpdo_path;
|
||
|
$pdo = new PDO($db_dsn,$db_user,$db_pwd,$db_options);
|
||
|
$fpdo = new FluentPDO($pdo);
|
||
|
$fpdo -> debug = function ($q) {
|
||
|
$time = sprintf('%0.3f', $q->getTime() * 1000) . ' ms';
|
||
|
$rows = ($q->getResult()) ? $q->getResult()->rowCount() : 0;
|
||
|
$query = $q->getQuery();
|
||
|
$msg = "# DB query ($time; rows = $rows) : $query";
|
||
|
|
||
|
$parameters = $q->getParameters();
|
||
|
if ($parameters) {
|
||
|
if (is_array($parameters)) {
|
||
|
$msg .= "\n# Parameters: '" . implode("', '", $parameters) . "'";
|
||
|
}
|
||
|
else {
|
||
|
$msg .= "\n# Parameters: '" . varDump($parameters) . "'";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
logging('DEBUG',$msg);
|
||
|
};
|
||
|
}
|
||
|
catch(Exception $e) {
|
||
|
logging('ERROR',"Fail to connect to DB (DSN : '$db_dsn') : ".$e->getMessage());
|
||
|
fatal_error("Impossible de se connecter à la base de données");
|
||
|
}
|
||
|
|
||
|
function db_now() {
|
||
|
// 1970-01-01 00:00:01
|
||
|
return date('Y-m-d G:i:s');
|
||
|
}
|
||
|
|
||
|
function get_incoming_msg($uuid) {
|
||
|
global $fpdo;
|
||
|
$result = $fpdo -> from('incoming_msg')
|
||
|
-> where('uuid=?', $uuid)
|
||
|
-> execute();
|
||
|
|
||
|
if ($result !== false) {
|
||
|
return $result -> fetch();
|
||
|
}
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
function create_incoming_msg($number, $text, $timestampms) {
|
||
|
global $fpdo;
|
||
|
|
||
|
$uuid = generate_uuid();
|
||
|
$values = array (
|
||
|
'uuid' => $uuid,
|
||
|
'number' => $number,
|
||
|
'text' => $text,
|
||
|
'timestampms' => $timestampms,
|
||
|
);
|
||
|
$result = $fpdo -> insertInto('incoming_msg',$values)
|
||
|
-> execute();
|
||
|
if ($result === false)
|
||
|
return -1;
|
||
|
|
||
|
return $uuid;
|
||
|
}
|
||
|
|
||
|
function get_outgoing_msg($uuid, $status=false) {
|
||
|
global $fpdo;
|
||
|
$where=array();
|
||
|
if ($uuid)
|
||
|
$where['uuid']=$uuid;
|
||
|
if ($status)
|
||
|
$where['status']=$status;
|
||
|
if (empty($where))
|
||
|
return -1;
|
||
|
$result = $fpdo -> from('outgoing_msg')
|
||
|
-> where($where)
|
||
|
-> execute();
|
||
|
|
||
|
if ($result !== false) {
|
||
|
return $result -> fetch();
|
||
|
}
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
function get_outgoing_msg_by_uniqueid($uniqueid) {
|
||
|
global $fpdo;
|
||
|
$where=array('uniqueid' => $uniqueid);
|
||
|
$result = $fpdo -> from('outgoing_msg')
|
||
|
-> where($where)
|
||
|
-> execute();
|
||
|
|
||
|
if ($result !== false) {
|
||
|
return $result -> fetch();
|
||
|
}
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
function create_outgoing_msg($number, $text) {
|
||
|
global $fpdo;
|
||
|
|
||
|
$uuid = generate_uuid();
|
||
|
$values = array (
|
||
|
'uuid' => $uuid,
|
||
|
'number' => $number,
|
||
|
'text' => $text,
|
||
|
);
|
||
|
$result = $fpdo -> insertInto('outgoing_msg',$values)
|
||
|
-> execute();
|
||
|
if ($result === false)
|
||
|
return -1;
|
||
|
|
||
|
return $uuid;
|
||
|
}
|
||
|
|
||
|
function handle_outgoing_msg($msg) {
|
||
|
if (!is_array($msg))
|
||
|
$msg=get_outgoing_msg($msg);
|
||
|
if (is_array($msg)) {
|
||
|
if ($msg['status']=='pending') {
|
||
|
global $smsgw;
|
||
|
/* Exemple :
|
||
|
{
|
||
|
"number": "0612345678",
|
||
|
"text": "Hello world",
|
||
|
"nbfrag": 1,
|
||
|
"id": "1510712464683"
|
||
|
}
|
||
|
*/
|
||
|
$return=$smsgw->send_sms($msg['number'], $msg['text']);
|
||
|
if (is_array($return)) {
|
||
|
global $fpdo;
|
||
|
$result = $fpdo -> update('outgoing_msg')
|
||
|
-> set(
|
||
|
array (
|
||
|
'status' => 'pushed',
|
||
|
'uniqueid' => $return['id'],
|
||
|
'nbfrag' => $return['nbfrag'],
|
||
|
'lastupdate' => db_now(),
|
||
|
)
|
||
|
)
|
||
|
-> where(
|
||
|
array (
|
||
|
'uuid' => $msg['uuid'],
|
||
|
)
|
||
|
)
|
||
|
-> execute();
|
||
|
if ($result === false)
|
||
|
return -1;
|
||
|
return True;
|
||
|
}
|
||
|
else
|
||
|
return -1;
|
||
|
}
|
||
|
return True;
|
||
|
}
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
function get_outgoing_msg_frag($msguid, $fragid) {
|
||
|
global $fpdo;
|
||
|
$where=array(
|
||
|
'msguid' => $msguid,
|
||
|
'fragid' => $fragid,
|
||
|
);
|
||
|
$result = $fpdo -> from('outgoing_msg_frag')
|
||
|
-> where($where)
|
||
|
-> execute();
|
||
|
|
||
|
if ($result !== false) {
|
||
|
return $result -> fetch();
|
||
|
}
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
function get_outgoing_msg_status_from_frags($msg) {
|
||
|
if (!is_array($msg))
|
||
|
$msg=get_outgoing_msg($msg);
|
||
|
|
||
|
if (!is_array($msg))
|
||
|
return -1;
|
||
|
|
||
|
global $fpdo;
|
||
|
$where=array(
|
||
|
'msguid' => $msg['uniqueid'],
|
||
|
);
|
||
|
$result = $fpdo -> from('outgoing_msg_frag')
|
||
|
-> where($where)
|
||
|
-> execute();
|
||
|
|
||
|
if ($result !== false) {
|
||
|
$frags=$result -> fetchAll();
|
||
|
if (!is_array($frags))
|
||
|
return -1;
|
||
|
logging('DEBUG', "Frags : ".print_r($frags,1));
|
||
|
$frag_states=array('pending','pushed','sent','delivered');
|
||
|
$state_idx=0;
|
||
|
$state_frag_count=0;
|
||
|
foreach($frags as $frag) {
|
||
|
$idx=array_search($frag['status'], $frag_states);
|
||
|
if ($idx !== false) {
|
||
|
if ($idx > $state_idx) {
|
||
|
$state_idx=$idx;
|
||
|
$state_frag_count=1;
|
||
|
}
|
||
|
elseif ($state_idx==$idx)
|
||
|
$state_frag_count++;
|
||
|
}
|
||
|
}
|
||
|
$status=$frag_states[$state_idx];
|
||
|
if ($status=="pending" || $status=="pushed" || $state_frag_count==$msg['nbfrag']) {
|
||
|
return $status;
|
||
|
}
|
||
|
else {
|
||
|
return "partially_$status";
|
||
|
}
|
||
|
}
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
function update_outgoing_msg_status($uuid, $status) {
|
||
|
global $fpdo;
|
||
|
$result = $fpdo -> update('outgoing_msg')
|
||
|
-> set(
|
||
|
array (
|
||
|
'status' => $status,
|
||
|
'lastupdate' => db_now(),
|
||
|
)
|
||
|
)
|
||
|
-> where(
|
||
|
array (
|
||
|
'uuid' => $uuid,
|
||
|
)
|
||
|
)
|
||
|
-> execute();
|
||
|
if ($result === false)
|
||
|
return -1;
|
||
|
return True;
|
||
|
}
|
||
|
|
||
|
function create_outgoing_msg_frag($msguid, $fragid, $status=false) {
|
||
|
global $fpdo;
|
||
|
|
||
|
$values = array (
|
||
|
'msguid' => $msguid,
|
||
|
'fragid' => $fragid,
|
||
|
);
|
||
|
if ($status)
|
||
|
$values['status']=strtolower($status);
|
||
|
|
||
|
$result = $fpdo -> insertInto('outgoing_msg_frag',$values)
|
||
|
-> execute();
|
||
|
if ($result === false)
|
||
|
return -1;
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
function update_outgoing_msg_frag($msguid, $fragid, $status) {
|
||
|
global $fpdo;
|
||
|
|
||
|
$frag=get_outgoing_msg_frag($msguid, $fragid);
|
||
|
|
||
|
if ($frag==-1)
|
||
|
return -1;
|
||
|
|
||
|
if (is_array($frag)) {
|
||
|
$result = $fpdo -> update('outgoing_msg_frag')
|
||
|
-> set(
|
||
|
array (
|
||
|
'status' => strtolower($status),
|
||
|
)
|
||
|
)
|
||
|
-> where(
|
||
|
array (
|
||
|
'msguid' => $msguid,
|
||
|
'fragid' => $fragid,
|
||
|
)
|
||
|
)
|
||
|
-> execute();
|
||
|
if ($result === false)
|
||
|
return -1;
|
||
|
return True;
|
||
|
}
|
||
|
else {
|
||
|
return create_outgoing_msg_frag($msguid, $fragid, $status);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function get_smsq() {
|
||
|
global $fpdo;
|
||
|
$where=array(
|
||
|
'status != ?' => 'delivered',
|
||
|
);
|
||
|
$result = $fpdo -> from('outgoing_msg')
|
||
|
-> where($where)
|
||
|
-> execute();
|
||
|
|
||
|
if ($result !== false) {
|
||
|
return $result -> fetchAll();
|
||
|
}
|
||
|
return -1;
|
||
|
}
|