2019-11-10 22:56:26 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of RaspiSMS.
|
|
|
|
*
|
|
|
|
* (c) Pierre-Lin Bonnemaison <plebwebsas@gmail.com>
|
|
|
|
*
|
|
|
|
* This source file is subject to the GPL-3.0 license that is bundled
|
|
|
|
* with this source code in the file LICENSE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace models;
|
|
|
|
|
2019-11-13 03:24:22 +01:00
|
|
|
class Phone extends StandardModel
|
2019-11-10 22:56:26 +01:00
|
|
|
{
|
2023-01-31 23:11:25 +01:00
|
|
|
|
2023-02-18 16:39:07 +01:00
|
|
|
const STATUS_AVAILABLE = 'available';
|
|
|
|
const STATUS_UNAVAILABLE = 'unavailable';
|
|
|
|
const STATUS_NO_CREDIT = 'no_credit';
|
|
|
|
|
2023-01-31 23:11:25 +01:00
|
|
|
/**
|
2023-02-02 01:12:30 +01:00
|
|
|
* Return all phones that belongs to active users
|
2023-01-31 23:11:25 +01:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_all_for_active_users()
|
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
SELECT phone.*
|
|
|
|
FROM phone
|
|
|
|
LEFT JOIN user
|
|
|
|
ON phone.id_user = user.id
|
|
|
|
WHERE user.status = :status
|
|
|
|
';
|
|
|
|
|
|
|
|
$params = [
|
|
|
|
'status' => \models\User::STATUS_ACTIVE,
|
|
|
|
];
|
|
|
|
|
|
|
|
$result = $this->_run_query($query, $params);
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2019-11-10 22:56:26 +01:00
|
|
|
/**
|
2020-03-31 01:19:21 +02:00
|
|
|
* Return a phone by his name and user.
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
|
|
|
* @param int $id_user : user id
|
2020-06-23 21:06:13 +02:00
|
|
|
* @param string $name : phone name
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2019-11-12 05:16:59 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
2020-03-31 01:19:21 +02:00
|
|
|
public function get_by_name_and_user(int $id_user, string $name)
|
2019-11-12 05:16:59 +01:00
|
|
|
{
|
2020-03-31 01:19:21 +02:00
|
|
|
return $this->_select_one('phone', ['name' => $name, 'id_user' => $id_user]);
|
2019-11-12 05:16:59 +01:00
|
|
|
}
|
2020-01-17 18:19:25 +01:00
|
|
|
|
2019-11-14 23:09:56 +01:00
|
|
|
/**
|
2020-03-31 01:19:21 +02:00
|
|
|
* Return a phone by his name.
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2020-03-31 01:19:21 +02:00
|
|
|
* @param string $name : phone name
|
2020-01-17 18:19:25 +01:00
|
|
|
*
|
2019-11-14 23:09:56 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
2020-03-31 01:19:21 +02:00
|
|
|
public function get_by_name(string $name)
|
2019-11-14 23:09:56 +01:00
|
|
|
{
|
2020-03-31 01:19:21 +02:00
|
|
|
return $this->_select_one('phone', ['name' => $name]);
|
2019-11-14 23:09:56 +01:00
|
|
|
}
|
2020-01-17 18:19:25 +01:00
|
|
|
|
2023-02-02 01:12:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a list of phone limits
|
|
|
|
*
|
|
|
|
* @param int $id_phone : Phone id
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_limits(int $id_phone)
|
|
|
|
{
|
|
|
|
return $this->_select('phone_limit', ['id_phone' => $id_phone]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a limit for a phone.
|
|
|
|
*
|
|
|
|
* @param int $id_phone : Phone id
|
|
|
|
* @param int $volume : Limit in volume of SMS
|
|
|
|
* @param string $startpoint : A relative time to use as startpoint for counting volume. See https://www.php.net/manual/en/datetime.formats.relative.php
|
|
|
|
*
|
|
|
|
* @return mixed (bool|int) : False on error, new row id else
|
|
|
|
*/
|
|
|
|
public function insert_phone_limit(int $id_phone, int $volume, string $startpoint)
|
|
|
|
{
|
|
|
|
$success = $this->_insert('phone_limit', ['id_phone' => $id_phone, 'volume' => $volume, 'startpoint' => $startpoint]);
|
|
|
|
|
|
|
|
return $success ? $this->_last_id() : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete limits for a phone
|
|
|
|
*
|
|
|
|
* @param array $id_phone : Phone id
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function delete_phone_limits(int $id_phone)
|
|
|
|
{
|
|
|
|
return $this->_delete('phone_limit', ['id_phone' => $id_phone]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-17 18:19:25 +01:00
|
|
|
/**
|
|
|
|
* Return table name.
|
|
|
|
*/
|
|
|
|
protected function get_table_name(): string
|
|
|
|
{
|
|
|
|
return 'phone';
|
|
|
|
}
|
2019-11-10 22:56:26 +01:00
|
|
|
}
|