mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-20 16:37:48 +02:00
Implement standard controller and model and update commands to use them
This commit is contained in:
parent
4c27d8ccf2
commit
0e22f3d02c
5 changed files with 264 additions and 193 deletions
BIN
controllers/internals/.StandardController.php.swp
Normal file
BIN
controllers/internals/.StandardController.php.swp
Normal file
Binary file not shown.
|
@ -11,120 +11,60 @@
|
|||
|
||||
namespace controllers\internals;
|
||||
|
||||
/**
|
||||
* Classe des commandes.
|
||||
*/
|
||||
class Command extends \descartes\InternalController
|
||||
class Command extends StandardController
|
||||
{
|
||||
private $model_command;
|
||||
private $internal_event;
|
||||
|
||||
public function __construct(\PDO $bdd)
|
||||
{
|
||||
$this->model_command = new \models\Command($bdd);
|
||||
$this->internal_event = new \controllers\internals\Event($bdd);
|
||||
}
|
||||
protected $model = false;
|
||||
|
||||
/**
|
||||
* Return the list of commands as an array.
|
||||
*
|
||||
* @param mixed(int|bool) $nb_entry : Le nombre d'entrées à retourner par page
|
||||
* @param mixed(int|bool) $page : Le numéro de page en cours
|
||||
*
|
||||
* @return array : La liste des commandes
|
||||
* Get the model for the Controller
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
public function list($nb_entry = null, $page = null)
|
||||
protected function get_model () : \descartes\Model
|
||||
{
|
||||
return $this->model_command->list($nb_entry, $nb_entry * $page);
|
||||
$this->model = $this->model ?? new \models\Command($this->$bdd);
|
||||
return $this->model;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get all commands.
|
||||
*
|
||||
* @return array
|
||||
* 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
|
||||
*/
|
||||
public function get_all()
|
||||
{
|
||||
//Recupération des commandes
|
||||
return $this->model_command->get_all();
|
||||
}
|
||||
|
||||
/**
|
||||
* Cette fonction retourne une liste des commandes sous forme d'un tableau.
|
||||
*
|
||||
* @param array int $ids : Les ids des entrées à retourner
|
||||
*
|
||||
* @return array : La liste des commandes
|
||||
*/
|
||||
public function gets($ids)
|
||||
{
|
||||
//Recupération des commandes
|
||||
return $this->model_command->gets($ids);
|
||||
}
|
||||
|
||||
/**
|
||||
* Cette fonction permet de compter le nombre de scheduleds.
|
||||
*
|
||||
* @return int : Le nombre d'entrées dans la table
|
||||
*/
|
||||
public function count()
|
||||
{
|
||||
return $this->model_command->count();
|
||||
}
|
||||
|
||||
/**
|
||||
* Cette fonction va supprimer une commande.
|
||||
*
|
||||
* @param array $id : L'id de la commande à supprimer
|
||||
*
|
||||
* @return int : Le nombre de commandes supprimées;
|
||||
*/
|
||||
public function delete($id)
|
||||
{
|
||||
return $this->model_command->delete($id);
|
||||
}
|
||||
|
||||
/**
|
||||
* Cette fonction insert une nouvelle commande.
|
||||
*
|
||||
* @param array $command : La commande à insérer
|
||||
* @param mixed $name
|
||||
* @param mixed $script
|
||||
* @param mixed $admin
|
||||
*
|
||||
* @return mixed bool|int : false si echec, sinon l'id de la nouvelle commande insérée
|
||||
*/
|
||||
public function create($name, $script, $admin)
|
||||
public function create(int $id_user, string $name, string $script, bool $admin)
|
||||
{
|
||||
$command = [
|
||||
'id_user' => $id_user,
|
||||
'name' => $name,
|
||||
'script' => $script,
|
||||
'admin' => $admin,
|
||||
];
|
||||
|
||||
$result = $this->model_command->insert($command);
|
||||
|
||||
if (!$result)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->internal_event->create($_SESSION['user']['id'], 'COMMAND_ADD', 'Ajout commande : '.$name.' => '.$script);
|
||||
|
||||
$this->internal_event->create($id_user, 'COMMAND_ADD', 'Ajout commande : ' . $name . ' => ' . $script);
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Cette fonction met à jour un commande.
|
||||
*
|
||||
* @param mixed $id
|
||||
* @param mixed $name
|
||||
* @param mixed $script
|
||||
* @param mixed $admin
|
||||
*
|
||||
* @return int : le nombre de ligne modifiées
|
||||
* 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
|
||||
*/
|
||||
public function update($id, $name, $script, $admin)
|
||||
public function update_for_user(int $id_user, int $id, string $name, string $script, bool $admin)
|
||||
{
|
||||
$command = [
|
||||
'name' => $name,
|
||||
|
@ -132,6 +72,6 @@ namespace controllers\internals;
|
|||
'admin' => $admin,
|
||||
];
|
||||
|
||||
return $this->model_command->update($id, $command);
|
||||
return $this->model_command->update_for_user($id_user, $id, $command);
|
||||
}
|
||||
}
|
||||
|
|
111
controllers/internals/StandardController.php
Executable file
111
controllers/internals/StandardController.php
Executable file
|
@ -0,0 +1,111 @@
|
|||
<?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;
|
||||
|
||||
abstract class StandardController extends \descartes\InternalController
|
||||
{
|
||||
public function __construct(\PDO $bdd)
|
||||
{
|
||||
$this->bdd = $bdd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the model for the Controller
|
||||
* @return \descartes\Model
|
||||
*/
|
||||
abstract protected function get_model () : \descartes\Model;
|
||||
|
||||
|
||||
/**
|
||||
* Create a new entry
|
||||
* @return mixed bool|int : False if cannot create entry, id of the new entry else
|
||||
*/
|
||||
abstract public function create();
|
||||
|
||||
|
||||
/**
|
||||
* Update a entry
|
||||
* @return mixed bool|int : False if cannot update entry, number of modified rows else
|
||||
*/
|
||||
abstract public function update_for_user();
|
||||
|
||||
|
||||
/**
|
||||
* Return a entry by his id
|
||||
* @param int $id : Entry id
|
||||
* @return array
|
||||
*/
|
||||
public function get (int $id)
|
||||
{
|
||||
return $this->get_model()->get($id);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return the list of entries for a user
|
||||
* @param int $id_user : User id
|
||||
* @param ?int $nb_entry : Number of entry to return
|
||||
* @param ?int $page : Pagination, used to calcul offset, $nb_entry * $page
|
||||
* @return array : Entrys list
|
||||
*/
|
||||
public function list_for_user (int $id_user, ?int $nb_entry = null, ?int $page = null)
|
||||
{
|
||||
return $this->get_model()->list_for_user($id_user, $nb_entry, $nb_entry * $page);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return a list of entries in a group of ids and for a user
|
||||
* @param int $id_user : user id
|
||||
* @param array $ids : ids of entries to find
|
||||
* @return array
|
||||
*/
|
||||
public function gets_in_for_user (int $id_user, array $ids)
|
||||
{
|
||||
return $this->get_model()->gets_in_for_user($id_user, $ids);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Insert a entry
|
||||
* @param
|
||||
* @param array $entry : Entry to insert
|
||||
* @return mixed bool|int : false on error, new entry id else
|
||||
*/
|
||||
public function create ($entry)
|
||||
{
|
||||
$result = $this->get_model()->insert($entry);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Delete a entry by his id for a user
|
||||
* @param int $id_user : User id
|
||||
* @param int $id : Entry id
|
||||
* @return int : Number of removed rows
|
||||
*/
|
||||
public function delete_for_user(int $id_user, int $id)
|
||||
{
|
||||
return $this->get_model()->delete_for_user($id_user, $id);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Count number of entry for a user
|
||||
* @param int $id_user : User id
|
||||
* @return int : number of entries
|
||||
*/
|
||||
public function count_for_user(int $id_user)
|
||||
{
|
||||
return $this->get_model()->count_for_user($id_user);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue