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-12 20:46:45 +01:00
|
|
|
class Command extends StandardController
|
2019-10-29 18:36:25 +01:00
|
|
|
{
|
2019-11-14 21:44:31 +01:00
|
|
|
protected $model = null;
|
2019-11-07 16:17:18 +01:00
|
|
|
|
2019-10-29 18:36:25 +01:00
|
|
|
/**
|
2019-11-12 20:46:45 +01:00
|
|
|
* Get the model for the Controller
|
|
|
|
* @return \descartes\Model
|
2019-10-29 18:36:25 +01:00
|
|
|
*/
|
2019-11-12 20:46:45 +01:00
|
|
|
protected function get_model () : \descartes\Model
|
2019-10-29 18:36:25 +01:00
|
|
|
{
|
2019-11-14 22:33:00 +01:00
|
|
|
$this->model = $this->model ?? new \models\Command($this->bdd);
|
2019-11-12 20:46:45 +01:00
|
|
|
return $this->model;
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
|
|
|
|
2019-11-12 20:46:45 +01:00
|
|
|
|
2019-10-29 14:57:13 +01:00
|
|
|
/**
|
2019-11-12 20:46:45 +01:00
|
|
|
* Create a new command
|
|
|
|
* @param int $id_user : User id
|
|
|
|
* @param string $name : Command name
|
|
|
|
* @param string $script : Script file
|
|
|
|
* @param bool $admin : Is command admin only
|
|
|
|
* @return mixed bool|int : False if cannot create command, id of the new command else
|
2019-10-29 14:57:13 +01:00
|
|
|
*/
|
2019-11-12 20:46:45 +01:00
|
|
|
public function create(int $id_user, string $name, string $script, bool $admin)
|
2019-10-29 14:57:13 +01:00
|
|
|
{
|
|
|
|
$command = [
|
2019-11-12 20:46:45 +01:00
|
|
|
'id_user' => $id_user,
|
2019-10-29 14:57:13 +01:00
|
|
|
'name' => $name,
|
|
|
|
'script' => $script,
|
|
|
|
'admin' => $admin,
|
|
|
|
];
|
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
$result = $this->get_model()->insert($command);
|
2019-10-30 00:30:39 +01:00
|
|
|
if (!$result)
|
|
|
|
{
|
2019-10-29 14:57:13 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
$internal_event = new Event($this->bdd);
|
|
|
|
$internal_event->create($id_user, 'COMMAND_ADD', 'Ajout commande : ' . $name . ' => ' . $script);
|
2019-11-12 20:46:45 +01:00
|
|
|
|
2019-10-29 14:57:13 +01:00
|
|
|
return $result;
|
2019-10-29 18:36:25 +01:00
|
|
|
}
|
2019-11-12 20:46:45 +01:00
|
|
|
|
|
|
|
|
2019-10-29 18:36:25 +01:00
|
|
|
/**
|
2019-11-12 20:46:45 +01:00
|
|
|
* Update a command
|
|
|
|
* @param int $id_user : User id
|
|
|
|
* @param int $id : Command id
|
|
|
|
* @param string $name : Command name
|
|
|
|
* @param string $script : Script file
|
|
|
|
* @param bool $admin : Is command admin only
|
|
|
|
* @return mixed bool|int : False if cannot create command, id of the new command else
|
2019-10-29 18:36:25 +01:00
|
|
|
*/
|
2019-11-12 20:46:45 +01:00
|
|
|
public function update_for_user(int $id_user, int $id, string $name, string $script, bool $admin)
|
2019-10-29 14:57:13 +01:00
|
|
|
{
|
2019-11-13 06:13:55 +01:00
|
|
|
$datas = [
|
2019-10-29 14:57:13 +01:00
|
|
|
'name' => $name,
|
|
|
|
'script' => $script,
|
|
|
|
'admin' => $admin,
|
|
|
|
];
|
|
|
|
|
2019-11-14 02:02:50 +01:00
|
|
|
return $this->get_model()->update_for_user($id_user, $id, $datas);
|
2019-10-29 14:57:13 +01:00
|
|
|
}
|
2019-10-29 18:36:25 +01:00
|
|
|
}
|