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
|
|
|
}
|
2020-01-06 23:38:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Analyse a message to check if it's a command and extract it
|
|
|
|
* @param int $id_user : User id to search a command for
|
|
|
|
* @param string $message : Text of the message to analyse
|
|
|
|
* @return mixed : false on error, array with new text and command to execute ['updated_text' => string, 'command' => string]
|
|
|
|
*/
|
|
|
|
public function check_for_command (int $id_user, string $message) : bool
|
|
|
|
{
|
|
|
|
$extracted_command = [];
|
|
|
|
|
2020-01-07 17:55:16 +01:00
|
|
|
$decode_message = json_decode(trim($message), true);
|
2020-01-06 23:38:45 +01:00
|
|
|
if ($decode_message === null)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!isset($decode_message['login'], $decode_message['password']))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//Check for user
|
|
|
|
$internal_user = \controllers\internals\User($this->bdd);
|
|
|
|
$user = $internal_user->check_credentials($decode_message['login'], $decode_message['password']);
|
|
|
|
if (!$user || $user['id'] != $id_user)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//Check for admin rights
|
|
|
|
if ($command['admin'] && !$user['admin'])
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//Find command
|
|
|
|
$commands = $this->gets_for_user($user['id']);
|
|
|
|
$find_command = false;
|
|
|
|
foreach ($commands as $command)
|
|
|
|
{
|
|
|
|
$command_name = $command['name'];
|
|
|
|
if (isset($decode_message[$command_name]))
|
|
|
|
{
|
|
|
|
$find_command = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$find_command)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//Forge command and return
|
|
|
|
$decode_message['password'] = '******';
|
|
|
|
$updated_text = json_encode($decode_message);
|
|
|
|
|
|
|
|
$generated_command = PWD_SCRIPTS . '/' . $command['script'];
|
|
|
|
$args = $decode_message['args'] ?? '';
|
|
|
|
$generated_command .= ' ' . escapeshellcmd($args);
|
|
|
|
|
|
|
|
return [
|
|
|
|
'updated_text' => $updated_text,
|
|
|
|
'command' => $generated_command,
|
|
|
|
];
|
|
|
|
}
|
2019-10-29 18:36:25 +01:00
|
|
|
}
|