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.
|
|
|
|
*/
|
|
|
|
|
2019-10-29 14:57:13 +01:00
|
|
|
namespace controllers\internals;
|
2019-10-29 18:36:25 +01:00
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
class SmsStop extends StandardController
|
2019-10-29 18:36:25 +01:00
|
|
|
{
|
2019-11-14 21:44:31 +01:00
|
|
|
protected $model = null;
|
2019-10-30 00:17:10 +01:00
|
|
|
|
2019-11-07 16:17:18 +01:00
|
|
|
/**
|
2019-11-14 02:02:50 +01:00
|
|
|
* Get the model for the Controller
|
|
|
|
* @return \descartes\Model
|
2019-11-07 16:17:18 +01:00
|
|
|
*/
|
2019-11-14 02:02:50 +01:00
|
|
|
protected function get_model () : \descartes\Model
|
2019-11-07 16:17:18 +01:00
|
|
|
{
|
2019-11-14 22:33:00 +01:00
|
|
|
$this->model = $this->model ?? new \models\SmsStop($this->bdd);
|
2019-11-14 02:02:50 +01:00
|
|
|
return $this->model;
|
2019-11-07 16:17:18 +01:00
|
|
|
}
|
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
|
2019-10-29 18:36:25 +01:00
|
|
|
/**
|
2019-11-14 02:02:50 +01:00
|
|
|
* Create a new smsstop
|
|
|
|
* @param int $id_user : User id
|
|
|
|
* @param string $number : Number to stop smss for
|
|
|
|
* @return mixed bool|int : False if cannot create smsstop, id of the new smsstop else
|
2019-10-29 18:36:25 +01:00
|
|
|
*/
|
2019-11-14 02:02:50 +01:00
|
|
|
public function create(int $id_user, string $number)
|
2019-10-29 18:36:25 +01:00
|
|
|
{
|
2019-11-14 02:02:50 +01:00
|
|
|
$smsstop = [
|
|
|
|
'id_user' => $id_user,
|
|
|
|
'number' => $number,
|
|
|
|
];
|
2019-10-29 14:57:13 +01:00
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
return $this->get_model()->insert($smsstop);
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
2019-11-14 02:02:50 +01:00
|
|
|
|
|
|
|
|
2019-10-29 14:57:13 +01:00
|
|
|
/**
|
2019-11-14 02:02:50 +01:00
|
|
|
* Update a smsstop
|
|
|
|
* @param int $id_user : User id
|
|
|
|
* @param int $id_smsstop : SmsStop id
|
|
|
|
* @param string $number : Number to stop smss for
|
|
|
|
* @return mixed bool|int : False if cannot create smsstop, id of the new smsstop else
|
2019-10-29 18:36:25 +01:00
|
|
|
*/
|
2019-11-14 02:02:50 +01:00
|
|
|
public function update_for_user(int $id_user, int $id_smsstop, string $number)
|
2019-10-29 18:36:25 +01:00
|
|
|
{
|
2019-11-14 02:02:50 +01:00
|
|
|
$datas = [
|
|
|
|
'number' => $number,
|
|
|
|
];
|
2019-10-29 14:57:13 +01:00
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
return $this->get_model()->update_for_user($id_user, $id_smsstop, $datas);
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-10-29 18:36:25 +01:00
|
|
|
/**
|
2019-11-14 02:02:50 +01:00
|
|
|
* Return a smsstop by his number and user
|
|
|
|
* @param int $id_user : user id
|
|
|
|
* @param string $number : phone number
|
|
|
|
* @return array
|
2019-10-29 18:36:25 +01:00
|
|
|
*/
|
2019-11-14 02:02:50 +01:00
|
|
|
public function get_by_number_for_user (int $id_user, string $number)
|
2019-10-29 18:36:25 +01:00
|
|
|
{
|
2019-11-14 02:02:50 +01:00
|
|
|
return $this->get_model()->get_by_number_for_user($id_user, $number);
|
2019-10-29 18:36:25 +01:00
|
|
|
}
|
|
|
|
}
|