Newer
Older
<?php
/**
* Copyright Maarch since 2008 under licence GPLv3.
* See LICENCE.txt file at the root folder for more details.
* This file is part of Maarch software.
* @brief ParametersController
* @author dev <dev@maarch.org>
* @ingroup core
*/
/**
* @brief Parameter Controller
* @author dev@maarch.org
*/
namespace Parameter\controllers;
use Group\controllers\PrivilegeController;
use Parameter\models\ParameterModel;
use Respect\Validation\Validator;
use Slim\Http\Request;
use Slim\Http\Response;
class ParameterController
{
public function get(Request $request, Response $response)
{
$parameters = ParameterModel::get();
foreach ($parameters as $key => $parameter) {
if (!empty($parameter['param_value_string'])) {
$parameters[$key]['value'] = $parameter['param_value_string'];
} elseif (is_int($parameter['param_value_int'])) {
$parameters[$key]['value'] = $parameter['param_value_int'];
} elseif (!empty($parameter['param_value_date'])) {
$parameters[$key]['value'] = $parameter['param_value_date'];
}
}
return $response->withJson(['parameters' => $parameters]);
}
public function getById(Request $request, Response $response, array $aArgs)
{
$parameter = ParameterModel::getById(['id' => $aArgs['id']]);
if (empty($parameter)) {
return $response->withStatus(400)->withJson(['errors' => 'Parameter not found']);
}
return $response->withJson(['parameter' => $parameter]);
}
public function create(Request $request, Response $response)
{
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_parameters', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
$data = $request->getParams();
$check = Validator::stringType()->notEmpty()->validate($data['id']) && preg_match("/^[\w-]*$/", $data['id']);
$check = $check && (empty($data['param_value_int']) || Validator::intVal()->validate($data['param_value_int']));
$check = $check && (empty($data['param_value_string']) || Validator::stringType()->validate($data['param_value_string']));
if (!$check) {
return $response->withStatus(400)->withJson(['errors' => 'Bad Request']);
}
$parameter = ParameterModel::getById(['id' => $data['id']]);
if (!empty($parameter)) {
return $response->withStatus(400)->withJson(['errors' => _PARAMETER_ID_ALREADY_EXISTS]);
HistoryController::add([
'tableName' => 'parameters',
'recordId' => $data['id'],
'eventType' => 'ADD',
'info' => _PARAMETER_CREATION . " : {$data['id']}",
'moduleId' => 'parameter',
'eventId' => 'parameterCreation',
]);
return $response->withJson(['success' => 'success']);
public function update(Request $request, Response $response, array $args)
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_parameters', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
$body = $request->getParsedBody();
if ($args['id'] == 'logo' || $args['id'] == 'bodyImage') {
$customId = CoreConfigModel::getCustomId();
if (empty($customId)) {
return $response->withStatus(400)->withJson(['errors' => 'A custom is needed for this operation']);
}
$tmpPath = CoreConfigModel::getTmpPath();
if ($args['id'] == 'logo') {
if (strpos($body['image'], 'data:image/jpeg;base64,') === false) {
return $response->withStatus(400)->withJson(['errors' => 'Body image is not a base64 image']);
}
$tmpFileName = $tmpPath . 'parameter_logo_' . rand() . '_file.svg';
$body['logo'] = str_replace('data:image/svg+xml;base64,', '', $body['logo']);
$file = base64_decode($body['logo']);
file_put_contents($tmpFileName, $file);
$size = strlen($file);
if ($size > 5000000) {
return $response->withStatus(400)->withJson(['errors' => 'Logo size is not allowed']);
}
copy($tmpFileName, "custom/{$body['customId']}/img/logo.svg");
} elseif ($args['id'] == 'bodyImage') {
if (strpos($body['image'], 'data:image/jpeg;base64,') === false) {
return $response->withStatus(400)->withJson(['errors' => 'Body image is not a base64 image']);
}
$tmpFileName = $tmpPath . 'parameter_body_' . rand() . '_file.jpg';
$body['image'] = str_replace('data:image/jpeg;base64,', '', $body['image']);
$file = base64_decode($body['image']);
file_put_contents($tmpFileName, $file);
$size = strlen($file);
$imageSizes = getimagesize($tmpFileName);
if ($imageSizes[0] < 1920 || $imageSizes[1] < 1080) {
return $response->withStatus(400)->withJson(['errors' => 'Body image is not wide enough']);
} elseif ($size > 10000000) {
return $response->withStatus(400)->withJson(['errors' => 'Body size is not allowed']);
}
copy($tmpFileName, "custom/{$customId}/img/bodylogin.jpg");
}
unset($tmpFileName);
return $response->withStatus(204);
}
$parameter = ParameterModel::getById(['id' => $args['id']]);
if (empty($parameter)) {
return $response->withStatus(400)->withJson(['errors' => 'Parameter not found']);
}
$check = (empty($body['param_value_int']) || Validator::intVal()->validate($body['param_value_int']));
$check = $check && (empty($body['param_value_string']) || Validator::stringType()->validate($body['param_value_string']));
if (!$check) {
return $response->withStatus(400)->withJson(['errors' => 'Bad Request']);
}
$body['id'] = $args['id'];
ParameterModel::update($body);
HistoryController::add([
'tableName' => 'parameters',
'info' => _PARAMETER_MODIFICATION . " : {$args['id']}",
'moduleId' => 'parameter',
'eventId' => 'parameterModification',
]);
}
public function delete(Request $request, Response $response, array $aArgs)
{
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_parameters', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
ParameterModel::delete(['id' => $aArgs['id']]);
HistoryController::add([
'tableName' => 'parameters',
'recordId' => $aArgs['id'],
'eventType' => 'DEL',
'info' => _PARAMETER_SUPPRESSION . " : {$aArgs['id']}",
'moduleId' => 'parameter',
'eventId' => 'parameterSuppression',
]);
$parameters = ParameterModel::get();
foreach ($parameters as $key => $parameter) {
if (!empty($parameter['param_value_string'])) {
$parameters[$key]['value'] = $parameter['param_value_string'];
} elseif (!empty($parameter['param_value_int'])) {
$parameters[$key]['value'] = $parameter['param_value_int'];
} elseif (!empty($parameter['param_value_date'])) {
$parameters[$key]['value'] = $parameter['param_value_date'];
}
}
return $response->withJson(['parameters' => $parameters]);