raspisms/controllers/internals/Phone.php

262 lines
8.0 KiB
PHP
Raw Normal View History

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 controllers\internals;
class Phone extends StandardController
2019-11-10 22:56:26 +01:00
{
const MMS_SENDING = 'sending';
const MMS_RECEPTION = 'reception';
const MMS_BOTH = 'both';
2020-01-17 18:19:25 +01:00
protected $model;
2019-11-10 22:56:26 +01:00
/**
* Return all phones for active users.
*
* @param int $id_user : user id
*
* @return array
*/
public function get_all_for_active_users()
{
return $this->get_model()->get_all_for_active_users();
}
/**
* Return all phones of a user.
2020-01-17 18:19:25 +01:00
*
* @param int $id_user : user id
2020-01-17 18:19:25 +01:00
*
* @return array
*/
2020-01-17 18:19:25 +01:00
public function gets_for_user(int $id_user)
{
return $this->get_model()->gets_for_user($id_user);
}
2020-01-17 18:19:25 +01:00
/**
* Return a list of phone limits
2020-01-17 18:19:25 +01:00
*
* @param int $id_phone : Phone id
2020-01-17 18:19:25 +01:00
*
* @return array
*/
public function get_limits(int $id_phone)
{
return $this->get_model()->get_limits($id_phone);
}
/**
2021-06-17 00:51:33 +02:00
* Check if a phone support mms.
*
* @param int $id : id of the phone to check
2021-06-17 00:51:33 +02:00
* @param $type : type of sms support, a const from Phone, MMS_SENDING, MMS_RECEPTION or MMS_BOTH
*
* @return bool : true if support, false else
*/
2021-06-17 00:51:33 +02:00
public function support_mms(int $id, string $type)
{
$phone = $this->get_model()->get($id);
if (!$phone)
{
return false;
}
switch ($type)
{
2021-06-17 00:51:33 +02:00
case self::MMS_SENDING:
return $phone['adapter']::meta_support_mms_sending();
2021-06-17 00:51:33 +02:00
break;
2021-06-17 00:51:33 +02:00
case self::MMS_RECEPTION:
return $phone['adapter']::meta_support_mms_reception();
2021-06-17 00:51:33 +02:00
break;
2021-06-17 00:51:33 +02:00
case self::MMS_BOTH:
return $phone['adapter']::meta_support_mms_sending() && $phone['adapter']::meta_support_mms_reception();
2021-06-17 00:51:33 +02:00
break;
default:
return false;
}
}
/**
2021-06-17 00:51:33 +02:00
* Get all phones supporting mms for a user.
*
* @param int $id_user : id of the user
2021-06-17 00:51:33 +02:00
* @param $type : type of sms support, a const from Phone, MMS_SENDING, MMS_RECEPTION or MMS_BOTH
*
* @return array : array of phones supporting mms
*/
2021-06-17 00:51:33 +02:00
public function gets_phone_supporting_mms_for_user(int $id_user, string $type)
{
$phones = $this->get_model()->gets_for_user($id_user);
$valid_phones = [];
foreach ($phones as $phone)
{
if ($this->support_mms($phone['id'], $type))
{
$valid_phones[] = $phone;
}
}
return $valid_phones;
}
2019-11-10 22:56:26 +01:00
/**
2020-06-23 21:06:13 +02:00
* Return a phone for a user by a name.
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
*/
public function get_by_name_and_user(int $id_user, string $name)
2019-11-12 05:16:59 +01:00
{
return $this->get_model()->get_by_name_and_user($id_user, $name);
2019-11-10 22:56:26 +01:00
}
/**
2020-01-17 18:19:25 +01:00
* Create a phone.
*
2021-02-23 00:31:54 +01:00
* @param int $id_user : User to insert phone for
* @param string $name : The name of the phone
* @param string $adapter : The adapter to use the phone
* @param string json $adapter_data : A JSON string representing adapter's data (for example credentials for an api)
2023-02-05 23:11:58 +01:00
* @param int $priority : Priority with which to use phone to send SMS. Default 0.
* @param array $limits : An array of limits for this phone. Each limit must be an array with a key volume and a key startpoint
2020-01-17 18:19:25 +01:00
*
2021-01-14 03:32:17 +01:00
* @return bool|int : false on error, new id on success
2019-11-10 22:56:26 +01:00
*/
2023-02-05 23:11:58 +01:00
public function create(int $id_user, string $name, string $adapter, string $adapter_data, int $priority = 0, array $limits = [])
2019-11-10 22:56:26 +01:00
{
2020-01-17 18:19:25 +01:00
$phone = [
2019-11-10 22:56:26 +01:00
'id_user' => $id_user,
'name' => $name,
2023-02-05 23:11:58 +01:00
'priority' => $priority,
2019-11-12 05:16:59 +01:00
'adapter' => $adapter,
'adapter_data' => $adapter_data,
2019-11-10 22:56:26 +01:00
];
//Use transaction to garanty atomicity
$this->bdd->beginTransaction();
$new_phone_id = $this->get_model()->insert($phone);
if (!$new_phone_id)
{
$this->bdd->rollBack();
return false;
}
foreach ($limits as $limit)
{
$limit_id = $this->get_model()->insert_phone_limit($new_phone_id, $limit['volume'], $limit['startpoint']);
if (!$limit_id)
{
$this->bdd->rollBack();
return false;
}
}
$success = $this->bdd->commit();
return ($success ? $new_phone_id : false);
2019-11-10 22:56:26 +01:00
}
/**
2020-01-17 18:19:25 +01:00
* Update a phone.
*
2021-02-23 00:31:54 +01:00
* @param int $id_user : User to insert phone for
* @param int $id : Phone id
* @param string $name : The name of the phone
* @param string $adapter : The adapter to use the phone
2023-02-04 01:15:36 +01:00
* @param string json $adapter_data : A JSON string representing adapter's data (for example credentials for an api)
2023-02-05 23:11:58 +01:00
* @param int $priority : Priority with which to use phone to send SMS. Default 0.
2023-02-04 01:15:36 +01:00
* @param array $limits : An array of limits for this phone. Each limit must be an array with a key volume and a key startpoint
2020-01-17 18:19:25 +01:00
*
2019-11-10 22:56:26 +01:00
* @return bool : false on error, true on success
*/
2023-02-05 23:11:58 +01:00
public function update_for_user(int $id_user, int $id, string $name, string $adapter, string $adapter_data, int $priority = 0, array $limits = []): bool
2019-11-10 22:56:26 +01:00
{
$phone = [
'id_user' => $id_user,
'name' => $name,
2019-11-12 05:16:59 +01:00
'adapter' => $adapter,
2023-02-04 01:15:36 +01:00
'adapter_data' => $adapter_data,
2023-02-05 23:11:58 +01:00
'priority' => $priority,
2019-11-10 22:56:26 +01:00
];
2023-02-04 01:15:36 +01:00
//Use transaction to garanty atomicity
$this->bdd->beginTransaction();
$nb_delete = $this->get_model()->delete_phone_limits($id);
foreach ($limits as $limit)
{
$limit_id = $this->get_model()->insert_phone_limit($id, $limit['volume'], $limit['startpoint']);
if (!$limit_id)
{
$this->bdd->rollBack();
return false;
}
}
$nb_update = $this->get_model()->update_for_user($id_user, $id, $phone);
$success = $this->bdd->commit();
if (!$success)
{
return false;
}
if ($nb_update == 0 && count($limits) == 0)
{
return false;
}
return true;
2019-11-10 22:56:26 +01:00
}
2020-01-17 18:19:25 +01:00
/**
* Update a phone status.
*
* @param int $id : Phone id
* @param string $status : The new status of the phone
*
* @return bool : false on error, true on success
*/
public function update_status(int $id, string $status) : bool
{
return (bool) $this->get_model()->update($id, ['status' => $status]);
}
2020-01-17 18:19:25 +01:00
/**
* Get the model for the Controller.
*/
2021-07-19 17:32:23 +02:00
protected function get_model(): \models\Phone
2020-01-17 18:19:25 +01:00
{
$this->model = $this->model ?? new \models\Phone($this->bdd);
return $this->model;
}
2019-11-10 22:56:26 +01:00
}