2019-10-29 14:57:13 +01:00
|
|
|
<?php
|
2019-10-30 00:30:39 +01:00
|
|
|
|
|
|
|
/*
|
2019-11-10 17:48:54 +01:00
|
|
|
* This file is part of RaspiSMS.
|
2019-10-30 00:30:39 +01:00
|
|
|
*
|
2019-11-10 17:48:54 +01:00
|
|
|
* (c) Pierre-Lin Bonnemaison <plebwebsas@gmail.com>
|
2019-10-30 00:30:39 +01:00
|
|
|
*
|
2019-11-10 17:48:54 +01:00
|
|
|
* This source file is subject to the GPL-3.0 license that is bundled
|
2019-10-30 00:30:39 +01:00
|
|
|
* with this source code in the file LICENSE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace models;
|
2019-10-29 18:33:49 +01:00
|
|
|
|
|
|
|
/**
|
2019-10-30 00:30:39 +01:00
|
|
|
* Cette classe gère les accès bdd pour les sendedes.
|
2019-10-29 18:33:49 +01:00
|
|
|
*/
|
2019-11-13 03:24:22 +01:00
|
|
|
class Sended extends StandardModel
|
2019-10-29 14:57:13 +01:00
|
|
|
{
|
|
|
|
/**
|
2020-01-17 18:19:25 +01:00
|
|
|
* Return x last sendeds message for a user, order by date.
|
|
|
|
*
|
|
|
|
* @param int $id_user : User id
|
2019-11-13 03:24:22 +01:00
|
|
|
* @param int $nb_entry : Number of sendeds messages to return
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
|
|
|
* @return array
|
2019-10-29 14:57:13 +01:00
|
|
|
*/
|
2019-11-13 03:24:22 +01:00
|
|
|
public function get_lasts_by_date_for_user($id_user, $nb_entry)
|
2019-10-29 14:57:13 +01:00
|
|
|
{
|
2019-11-13 03:24:22 +01:00
|
|
|
$nb_entry = (int) $nb_entry;
|
|
|
|
|
|
|
|
$query = '
|
|
|
|
SELECT *
|
|
|
|
FROM sended
|
2020-03-05 23:07:07 +01:00
|
|
|
WHERE id_user = :id_user
|
2019-11-13 03:24:22 +01:00
|
|
|
ORDER BY at ASC
|
2020-01-17 18:47:08 +01:00
|
|
|
LIMIT ' . $nb_entry;
|
2019-11-13 03:24:22 +01:00
|
|
|
|
|
|
|
$params = [
|
|
|
|
'id_user' => $id_user,
|
|
|
|
];
|
|
|
|
|
|
|
|
return $this->_run_query($query, $params);
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
2019-10-30 00:30:39 +01:00
|
|
|
|
2019-10-29 14:57:13 +01:00
|
|
|
/**
|
2020-01-17 18:19:25 +01:00
|
|
|
* Return sendeds for an destination and a user.
|
|
|
|
*
|
|
|
|
* @param int $id_user : User id
|
2019-11-13 03:24:22 +01:00
|
|
|
* @param string $destination : Number who sent the message
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2019-11-13 03:24:22 +01:00
|
|
|
* @return array
|
2019-10-29 14:57:13 +01:00
|
|
|
*/
|
2019-11-15 06:30:23 +01:00
|
|
|
public function gets_by_destination_and_user(int $id_user, string $destination)
|
2019-10-29 14:57:13 +01:00
|
|
|
{
|
2019-11-13 03:24:22 +01:00
|
|
|
$query = '
|
|
|
|
SELECT *
|
|
|
|
FROM sended
|
2020-03-05 23:07:07 +01:00
|
|
|
WHERE id_user = :id_user
|
2019-11-13 03:24:22 +01:00
|
|
|
AND destination = :destination
|
|
|
|
';
|
|
|
|
|
|
|
|
$params = [
|
|
|
|
'id_user' => $id_user,
|
|
|
|
'destination' => $destination,
|
|
|
|
];
|
|
|
|
|
|
|
|
return $this->_run_query($query, $params);
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
2020-01-17 18:19:25 +01:00
|
|
|
|
2020-01-08 02:14:38 +01:00
|
|
|
/**
|
2020-01-17 18:19:25 +01:00
|
|
|
* Return sended for an uid and an adapter.
|
|
|
|
*
|
2020-03-05 23:07:07 +01:00
|
|
|
* @param int $id_user : Id of the user
|
2020-01-17 18:19:25 +01:00
|
|
|
* @param string $uid : Uid of the sended
|
2020-01-08 02:14:38 +01:00
|
|
|
* @param string $adapter : Adapter used to send the message
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2020-01-08 02:14:38 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
2020-03-05 23:07:07 +01:00
|
|
|
public function get_by_uid_and_adapter_for_user(int $id_user, string $uid, string $adapter)
|
2020-01-08 02:14:38 +01:00
|
|
|
{
|
2020-03-05 23:07:07 +01:00
|
|
|
return $this->_select_one('sended', ['id_user' => $id_user, 'uid' => $uid, 'adapter' => $adapter]);
|
2020-01-08 02:14:38 +01:00
|
|
|
}
|
2019-11-13 03:24:22 +01:00
|
|
|
|
2019-10-29 14:57:13 +01:00
|
|
|
/**
|
2020-01-17 18:19:25 +01:00
|
|
|
* Get number of sended SMS for every date since a date for a specific user.
|
|
|
|
*
|
|
|
|
* @param int $id_user : user id
|
|
|
|
* @param \DateTime $date : Date since which we want the messages
|
|
|
|
*
|
2019-11-13 03:24:22 +01:00
|
|
|
* @return array
|
2019-10-29 18:33:49 +01:00
|
|
|
*/
|
2019-11-13 03:24:22 +01:00
|
|
|
public function count_by_day_since_for_user($id_user, $date)
|
2019-10-29 14:57:13 +01:00
|
|
|
{
|
|
|
|
$query = "
|
|
|
|
SELECT COUNT(id) as nb, DATE_FORMAT(at, '%Y-%m-%d') as at_ymd
|
|
|
|
FROM sended
|
|
|
|
WHERE at > :date
|
2020-03-05 23:07:07 +01:00
|
|
|
AND id_user = :id_user
|
2019-10-29 14:57:13 +01:00
|
|
|
GROUP BY at_ymd
|
|
|
|
";
|
|
|
|
|
2019-10-30 00:30:39 +01:00
|
|
|
$params = [
|
2019-10-29 14:57:13 +01:00
|
|
|
'date' => $date,
|
2019-11-13 03:24:22 +01:00
|
|
|
'id_user' => $id_user,
|
2019-10-30 00:30:39 +01:00
|
|
|
];
|
2019-10-29 14:57:13 +01:00
|
|
|
|
2019-10-29 18:33:49 +01:00
|
|
|
return $this->_run_query($query, $params);
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
2019-11-07 16:17:18 +01:00
|
|
|
|
2019-11-13 03:24:22 +01:00
|
|
|
/**
|
2020-01-17 18:19:25 +01:00
|
|
|
* Get SMS sended since a date for a user.
|
|
|
|
*
|
2019-11-13 03:24:22 +01:00
|
|
|
* @param $date : La date depuis laquelle on veux les SMS (au format 2014-10-25 20:10:05)
|
|
|
|
* @param int $id_user : User id
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2019-11-13 03:24:22 +01:00
|
|
|
* @return array : Tableau avec tous les SMS depuis la date
|
|
|
|
*/
|
|
|
|
public function get_since_by_date_for_user($date, $id_user)
|
|
|
|
{
|
|
|
|
$query = "
|
|
|
|
SELECT *
|
|
|
|
FROM sended
|
|
|
|
WHERE at > STR_TO_DATE(:date, '%Y-%m-%d %h:%i:%s')
|
2020-03-05 23:07:07 +01:00
|
|
|
AND id_user = :id_user
|
2019-11-13 03:24:22 +01:00
|
|
|
ORDER BY at ASC";
|
2020-01-17 18:19:25 +01:00
|
|
|
|
2019-11-13 03:24:22 +01:00
|
|
|
$params = [
|
|
|
|
'date' => $date,
|
|
|
|
'id_user' => $id_user,
|
|
|
|
];
|
|
|
|
|
|
|
|
return $this->_run_query($query, $params);
|
|
|
|
}
|
2020-01-17 18:19:25 +01:00
|
|
|
|
2020-01-11 17:27:07 +01:00
|
|
|
/**
|
2020-01-17 18:19:25 +01:00
|
|
|
* Find last sended message for a destination and user.
|
|
|
|
*
|
|
|
|
* @param int $id_user : User id
|
2020-01-11 17:27:07 +01:00
|
|
|
* @param string $destination : Destination number
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2020-01-11 17:27:07 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
2020-01-17 18:19:25 +01:00
|
|
|
public function get_last_for_destination_and_user(int $id_user, string $destination)
|
2020-01-11 17:27:07 +01:00
|
|
|
{
|
2020-01-17 18:19:25 +01:00
|
|
|
$query = '
|
2020-01-11 17:27:07 +01:00
|
|
|
SELECT *
|
|
|
|
FROM sended
|
|
|
|
WHERE destination = :destination
|
2020-03-05 23:07:07 +01:00
|
|
|
AND id_user = :id_user
|
2020-01-11 17:27:07 +01:00
|
|
|
ORDER BY at DESC
|
|
|
|
LIMIT 0,1
|
2020-01-17 18:19:25 +01:00
|
|
|
';
|
2020-01-11 17:27:07 +01:00
|
|
|
|
|
|
|
$params = [
|
|
|
|
'destination' => $destination,
|
|
|
|
'id_user' => $id_user,
|
|
|
|
];
|
|
|
|
|
|
|
|
$result = $this->_run_query($query, $params);
|
|
|
|
|
2020-01-17 18:19:25 +01:00
|
|
|
return $result[0] ?? [];
|
2020-01-11 17:27:07 +01:00
|
|
|
}
|
2019-11-13 03:24:22 +01:00
|
|
|
|
2020-01-17 18:19:25 +01:00
|
|
|
/**
|
|
|
|
* Return table name.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function get_table_name(): string
|
|
|
|
{
|
|
|
|
return 'sended';
|
|
|
|
}
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|