Newer
Older
* Copyright Maarch since 2008 under license.
* See LICENSE.txt file at the root folder for more details.
* This file is part of Maarch software.
*
*/
/**
* @brief Signature Controller
* @author dev@maarch.org
*/
namespace User\controllers;
use Docserver\controllers\DocserverController;
use Docserver\models\DocserverModel;
use Group\controllers\PrivilegeController;
use History\controllers\HistoryController;
use Respect\Validation\Validator;
use Slim\Http\Request;
use Slim\Http\Response;
use SrcCore\models\CoreConfigModel;
use SrcCore\models\ValidatorModel;
class SignatureController
{
public function get(Request $request, Response $response, array $args)
{
if ($GLOBALS['id'] != $args['id']) {
$user = UserModel::getById(['id' => $args['id'], 'select' => ['substitute']]);
if (empty($user) || $user['substitute'] != $GLOBALS['id']) {
return $response->withStatus(403)->withJson(['errors' => 'Privilege forbidden']);
}
}
$docserver = DocserverModel::getByType(['type' => 'SIGNATURE', 'select' => ['path']]);
if (empty($docserver['path']) || !is_dir($docserver['path'])) {
return $response->withStatus(400)->withJson(['errors' => 'Docserver \'SIGNATURE\' does not exist']);
$where = ['user_id = ?'];
if ($GLOBALS['id'] != $args['id']) {
$where[] = 'substituted = true';
}
'select' => ['id', 'path', 'filename', 'fingerprint', 'substituted'],
'where' => $where,
'data' => [$args['id']],
$signatures = [];
foreach ($rawSignatures as $signature) {
$pathToSignature = $docserver['path'] . $signature['path'] . $signature['filename'];
$fingerprint = DocserverController::getFingerPrint(['path' => $pathToSignature]);
if ($signature['fingerprint'] == $fingerprint) {
$signatures[] = [
'id' => $signature['id'],
'substituted' => $signature['substituted'],
'encodedSignature' => base64_encode(file_get_contents($pathToSignature))
];
}
}
}
return $response->withJson(['signatures' => $signatures]);
}
public function create(Request $request, Response $response, array $args)
{
if ($GLOBALS['id'] != $args['id'] && !PrivilegeController::hasPrivilege(['userId' => $GLOBALS['id'], 'privilege' => 'manage_users'])) {
return $response->withStatus(403)->withJson(['errors' => 'Privilege forbidden']);
}
$body = $request->getParsedBody();
$check = Validator::notEmpty()->validate($body['encodedSignature']);
$check = $check && Validator::stringType()->notEmpty()->validate($body['format']);
if (!$check) {
return $response->withStatus(400)->withJson(['errors' => 'Bad Request']);
}
$signature = base64_decode($body['encodedSignature']);
$finfo = new \finfo(FILEINFO_MIME_TYPE);
$mimeType = $finfo->buffer($signature);
$type = explode('/', $mimeType);
if ($type[0] != 'image') {
return $response->withStatus(400)->withJson(['errors' => 'Signature is not an image']);
return $response->withStatus(400)->withJson(['errors' => 'Max file size reached (1 MB)']);
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
$storeInfos = DocserverController::storeResourceOnDocServer([
'encodedFile' => $body['encodedSignature'],
'format' => $body['format'],
'docserverType' => 'SIGNATURE'
]);
if (!empty($storeInfos['errors'])) {
return $response->withStatus(500)->withJson(['errors' => $storeInfos['errors']]);
}
$id = SignatureModel::create([
'userId' => $args['id'],
'path' => $storeInfos['path'],
'filename' => $storeInfos['filename'],
'fingerprint' => $storeInfos['fingerprint'],
'external_application' => null
]);
HistoryController::add([
'code' => 'OK',
'objectType' => 'signatures',
'objectId' => $id,
'type' => 'CREATION',
'message' => '{userSignatureAdded}',
'data' => ['userId' => $args['id']]
]);
return $response->withJson(['signatureId' => $id]);
}
public function delete(Request $request, Response $response, array $args)
{
if ($GLOBALS['id'] != $args['id'] && !PrivilegeController::hasPrivilege(['userId' => $GLOBALS['id'], 'privilege' => 'manage_users'])) {
return $response->withStatus(403)->withJson(['errors' => 'Privilege forbidden']);
}
SignatureModel::delete(['where' => ['user_id = ?', 'id = ?'], 'data' => [$args['id'], $args['signatureId']]]);
HistoryController::add([
'code' => 'OK',
'objectType' => 'signatures',
'objectId' => $args['signatureId'],
'type' => 'SUPPRESSION',
'message' => '{userSignatureDeleted}',
'data' => ['userId' => $args['id']]
]);
return $response->withJson(['success' => 'success']);
}
public function updateExternalSignatures(Request $request, Response $response, array $args)
{
if ($GLOBALS['id'] != $args['id'] && !PrivilegeController::hasPrivilege(['userId' => $GLOBALS['id'], 'privilege' => 'manage_users'])) {
return $response->withStatus(403)->withJson(['errors' => 'Privilege forbidden']);
}
$user = UserModel::getById(['select' => [1], 'id' => $args['id']]);
if (empty($user)) {
return $response->withStatus(400)->withJson(['errors' => 'User does not exist']);
}
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
if (!Validator::arrayType()->notEmpty()->validate($body['signatures'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body signature is empty or not an array']);
} elseif (!Validator::stringType()->notEmpty()->validate($body['externalApplication'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body externalApplication is empty or not a string']);
}
foreach ($body['signatures'] as $key => $signature) {
if (!Validator::notEmpty()->validate($signature['encodedSignature'])) {
return $response->withStatus(400)->withJson(['errors' => "Body signatures[{$key}] encodedSignature is empty"]);
} elseif (!Validator::stringType()->notEmpty()->validate($signature['format'])) {
return $response->withStatus(400)->withJson(['errors' => "Body signatures[{$key}] format is empty or not a string"]);
}
}
SignatureModel::delete(['where' => ['user_id = ?', 'external_application = ?'], 'data' => [$args['id'], $body['externalApplication']]]);
foreach ($body['signatures'] as $signature) {
$storeInfos = DocserverController::storeResourceOnDocServer([
'encodedFile' => $signature['encodedSignature'],
'format' => $signature['format'],
'docserverType' => 'SIGNATURE'
]);
if (!empty($storeInfos['errors'])) {
return $response->withStatus(500)->withJson(['errors' => $storeInfos['errors']]);
}
$id = SignatureModel::create([
'userId' => $args['id'],
'path' => $storeInfos['path'],
'filename' => $storeInfos['filename'],
'fingerprint' => $storeInfos['fingerprint'],
'external_application' => $body['externalApplication']
]);
HistoryController::add([
'code' => 'OK',
'objectType' => 'signatures',
'objectId' => $id,
'type' => 'CREATION',
'message' => '{userSignatureAdded}',
'data' => ['userId' => $args['id'], 'externalApplication' => $body['externalApplication']]
]);
}
return $response->withStatus(204);
}
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
public function updateSubstituted(Request $request, Response $response, array $args)
{
if ($GLOBALS['id'] != $args['id'] && !PrivilegeController::hasPrivilege(['userId' => $GLOBALS['id'], 'privilege' => 'manage_users'])) {
return $response->withStatus(403)->withJson(['errors' => 'Privilege forbidden']);
}
$user = UserModel::getById(['select' => [1], 'id' => $args['id']]);
if (empty($user)) {
return $response->withStatus(400)->withJson(['errors' => 'User does not exist']);
}
$body = $request->getParsedBody();
if (!Validator::boolType()->validate($body['substituted'])) {
return $response->withStatus(400)->withJson(['errors' => "Body substituted is not set or not a boolean"]);
}
SignatureModel::update([
'set' => ['substituted' => $body['substituted'] ? 'true' : 'false'],
'where' => ['user_id = ?', 'id = ?'],
'data' => [$args['id'], $args['signatureId']]
]);
return $response->withStatus(204);
}

Alex ORLUC
committed
public function getSignatureModes(Request $request, Response $response)
{
$modes = CoreConfigModel::getSignatureModes();
return $response->withJson($modes);
}
public static function isValidSignatureMode(array $args)
{
ValidatorModel::stringType($args, ['mode']);
if (empty($args['mode'])) {
return false;
}
$validModes = CoreConfigModel::getSignatureModes();

Florian Azizian
committed
array_push($validModes, ['id' => 'otp_visa_yousign']);
array_push($validModes, ['id' => 'otp_sign_yousign']);
foreach ($validModes as $validMode) {
if ($validMode['id'] == $args['mode']) {
return true;
}
}
return false;
}