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 Alfresco Controller
* @author dev@maarch.org
*/
namespace Alfresco\controllers;
use Attachment\models\AttachmentModel;
use Configuration\models\ConfigurationModel;
use Convert\controllers\ConvertPdfController;
use Docserver\models\DocserverModel;
use Entity\models\EntityModel;
use Group\controllers\PrivilegeController;
use Resource\models\ResModel;
use Respect\Validation\Validator;
use Slim\Http\Request;
use Slim\Http\Response;
use SrcCore\models\CoreConfigModel;
use SrcCore\models\CurlModel;
use SrcCore\models\PasswordModel;
use SrcCore\models\ValidatorModel;
use User\models\UserModel;
class AlfrescoController
{
public function getConfiguration(Request $request, Response $response)
{
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_alfresco', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
$configuration = ConfigurationModel::getByService(['service' => 'admin_alfresco']);
if (empty($configuration)) {
return $response->withJson(['configuration' => null]);
}
$configuration['value'] = json_decode($configuration['value'], true);
return $response->withJson(['configuration' => ['uri' => $configuration['value']['uri']]]);
}
public function updateConfiguration(Request $request, Response $response)
{
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_alfresco', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
$body = $request->getParsedBody();
if (!Validator::stringType()->validate($body['uri'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body uri is empty or not a string']);
}
$value = json_encode(['uri' => $body['uri']]);
$configuration = ConfigurationModel::getByService(['service' => 'admin_alfresco']);
if (empty($configuration)) {
ConfigurationModel::create(['service' => 'admin_alfresco', 'value' => $value]);
} else {
ConfigurationModel::update(['set' => ['value' => $value], 'where' => ['service = ?'], 'data' => ['admin_alfresco']]);
}
return $response->withStatus(204);
}
public function getAvailableEntities(Request $request, Response $response)
{
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_alfresco', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
$entities = EntityModel::get(['select' => ['id'], 'where' => ["external_id->>'alfresco' is null"]]);
$availableEntities = array_column($entities, 'id');
return $response->withJson(['availableEntities' => $availableEntities]);
}
public function getAccounts(Request $request, Response $response)
{
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_alfresco', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
$entities = EntityModel::get(['select' => ['external_id', 'short_label'], 'where' => ["external_id->>'alfresco' is not null"]]);
$accounts = [];
$alreadyAdded = [];
foreach ($entities as $entity) {
$alfresco = json_decode($entity['external_id'], true);
if (!in_array($alfresco['alfresco']['id'], $alreadyAdded)) {
'id' => $alfresco['alfresco']['id'],
'label' => $alfresco['alfresco']['label'],
'login' => $alfresco['alfresco']['login'],
'entitiesLabel' => [$entity['short_label']]
$alreadyAdded[] = $alfresco['alfresco']['id'];
} else {
foreach ($accounts as $key => $value) {
if ($value['id'] == $alfresco['alfresco']['id']) {
$accounts[$key]['entitiesLabel'][] = $entity['short_label'];
}
}
}
}
return $response->withJson(['accounts' => $accounts]);
}
public function getAccountById(Request $request, Response $response, array $args)
{
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_alfresco', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
$entities = EntityModel::get(['select' => ['external_id', 'id'], 'where' => ["external_id->'alfresco'->>'id' = ?"], 'data' => [$args['id']]]);
if (empty($entities[0])) {
return $response->withStatus(400)->withJson(['errors' => 'Account not found']);
}
$alfresco = json_decode($entities[0]['external_id'], true);
$account = [
'id' => $alfresco['alfresco']['id'],
'label' => $alfresco['alfresco']['label'],
'login' => $alfresco['alfresco']['login'],
'nodeId' => $alfresco['alfresco']['nodeId'],
'entities' => []
];
foreach ($entities as $entity) {
$account['entities'][] = $entity['id'];
}
return $response->withJson($account);
}
public function createAccount(Request $request, Response $response)
{
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_alfresco', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
$body = $request->getParsedBody();
if (!Validator::stringType()->notEmpty()->validate($body['label'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body label is empty or not a string']);
} elseif (!Validator::stringType()->notEmpty()->validate($body['login'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body login is empty or not a string']);
} elseif (!Validator::stringType()->notEmpty()->validate($body['password'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body password is empty or not a string']);
} elseif (!Validator::stringType()->notEmpty()->validate($body['nodeId'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body nodeId is empty or not a string']);
} elseif (!Validator::arrayType()->notEmpty()->validate($body['entities'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body entities is empty or not an array']);
}
foreach ($body['entities'] as $entity) {
if (!Validator::intVal()->notEmpty()->validate($entity)) {
return $response->withStatus(400)->withJson(['errors' => 'Body entities contains no integer values']);
}
}
$entities = EntityModel::get(['select' => ['id'], 'where' => ['id in (?)'], 'data' => [$body['entities']]]);
if (count($entities) != count($body['entities'])) {
return $response->withStatus(400)->withJson(['errors' => 'Some entities do not exist']);
}
$id = CoreConfigModel::uniqueId();
$account = [
'id' => $id,
'label' => $body['label'],
'login' => $body['login'],
'password' => PasswordModel::encrypt(['password' => $body['password']]),
'nodeId' => $body['nodeId']
];
$account = json_encode($account);
EntityModel::update([
'postSet' => ['external_id' => "jsonb_set(external_id, '{alfresco}', '{$account}')"],
'where' => ['id in (?)'],
'data' => [$body['entities']]
]);
return $response->withStatus(204);
}
public function updateAccount(Request $request, Response $response, array $args)
{
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_alfresco', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
201
202
203
204
205
206
207
208
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
$body = $request->getParsedBody();
if (!Validator::stringType()->notEmpty()->validate($body['label'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body label is empty or not a string']);
} elseif (!Validator::stringType()->notEmpty()->validate($body['login'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body login is empty or not a string']);
} elseif (!Validator::stringType()->notEmpty()->validate($body['nodeId'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body nodeId is empty or not a string']);
} elseif (!Validator::arrayType()->notEmpty()->validate($body['entities'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body entities is empty or not an array']);
}
$accounts = EntityModel::get(['select' => ['external_id', 'id'], 'where' => ["external_id->'alfresco'->>'id' = ?"], 'data' => [$args['id']]]);
if (empty($accounts[0])) {
return $response->withStatus(400)->withJson(['errors' => 'Account not found']);
}
foreach ($body['entities'] as $entity) {
if (!Validator::intVal()->notEmpty()->validate($entity)) {
return $response->withStatus(400)->withJson(['errors' => 'Body entities contains no integer values']);
}
}
$entities = EntityModel::get(['select' => ['id'], 'where' => ['id in (?)'], 'data' => [$body['entities']]]);
if (count($entities) != count($body['entities'])) {
return $response->withStatus(400)->withJson(['errors' => 'Some entities do not exist']);
}
$alfresco = json_decode($accounts[0]['external_id'], true);
$account = [
'id' => $args['id'],
'label' => $body['label'],
'login' => $body['login'],
'password' => empty($body['password']) ? $alfresco['alfresco']['password'] : PasswordModel::encrypt(['password' => $body['password']]),
'nodeId' => $body['nodeId']
];
$account = json_encode($account);
EntityModel::update([
'postSet' => ['external_id' => "jsonb_set(external_id, '{alfresco}', '{$account}')"],
'where' => ['id in (?)'],
'data' => [$body['entities']]
]);
$previousEntities = array_column($accounts, 'id');
$entitiesToRemove = array_diff($previousEntities, $body['entities']);
if (!empty($entitiesToRemove)) {
EntityModel::update([
'postSet' => ['external_id' => "external_id - 'alfresco'"],
'where' => ['id in (?)'],
'data' => [$entitiesToRemove]
]);
}
return $response->withStatus(204);
}
public function deleteAccount(Request $request, Response $response, array $args)
{
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_alfresco', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
$accounts = EntityModel::get(['select' => ['external_id', 'id'], 'where' => ["external_id->'alfresco'->>'id' = ?"], 'data' => [$args['id']]]);
if (empty($accounts[0])) {
return $response->withStatus(400)->withJson(['errors' => 'Account not found']);
}
$entitiesToRemove = array_column($accounts, 'id');
EntityModel::update([
'postSet' => ['external_id' => "external_id - 'alfresco'"],
'where' => ['id in (?)'],
'data' => [$entitiesToRemove]
]);
return $response->withStatus(204);
}
public function checkAccount(Request $request, Response $response)
{
if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_alfresco', 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
}
$body = $request->getParsedBody();
if (!Validator::stringType()->notEmpty()->validate($body['login'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body login is empty or not a string']);
} elseif (!Validator::stringType()->notEmpty()->validate($body['password'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body password is empty or not a string']);
}
$configuration = ConfigurationModel::getByService(['service' => 'admin_alfresco']);
if (empty($configuration)) {
return $response->withStatus(400)->withJson(['errors' => 'Alfresco configuration is not enabled']);
}
$configuration = json_decode($configuration['value'], true);
if (empty($configuration['uri'])) {
return $response->withStatus(400)->withJson(['errors' => 'Alfresco configuration URI is empty']);
}
$alfrescoUri = rtrim($configuration['uri'], '/');
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
if (empty($body['nodeId'])) {
$requestBody = [
'query' => [
'query' => "select * from cmis:folder",
'language' => 'cmis',
],
"paging" => [
'maxItems' => '1'
],
'fields' => ['id', 'name']
];
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/search/versions/1/search",
'basicAuth' => ['user' => $body['login'], 'password' => $body['password']],
'headers' => ['content-type:application/json', 'Accept: application/json'],
'method' => 'POST',
'body' => json_encode($requestBody)
]);
} else {
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/alfresco/versions/1/nodes/{$body['nodeId']}/children",
'basicAuth' => ['user' => $body['login'], 'password' => $body['password']],
'headers' => ['content-type:application/json'],
'method' => 'GET',
'queryParams' => ['where' => '(isFolder=true)']
]);
}
if ($curlResponse['code'] != 200) {
if ($curlResponse['code'] == 404) {
return $response->withStatus(400)->withJson(['errors' => 'Page not found', 'lang' => 'pageNotFound']);
} elseif (!empty($curlResponse['response']['error']['briefSummary'])) {
return $response->withStatus(400)->withJson(['errors' => $curlResponse['response']['error']['briefSummary']]);
} else {
return $response->withStatus(400)->withJson(['errors' => json_encode($curlResponse['response'])]);
}
}
return $response->withStatus(204);
}
public function getRootFolders(Request $request, Response $response)
{
$configuration = ConfigurationModel::getByService(['service' => 'admin_alfresco']);
if (empty($configuration)) {
return $response->withStatus(400)->withJson(['errors' => 'Alfresco configuration is not enabled']);
}
$configuration = json_decode($configuration['value'], true);
if (empty($configuration['uri'])) {
return $response->withStatus(400)->withJson(['errors' => 'Alfresco configuration URI is empty']);
}
$alfrescoUri = rtrim($configuration['uri'], '/');
$entity = UserModel::getPrimaryEntityById(['id' => $GLOBALS['id'], 'select' => ['entities.external_id']]);
if (empty($entity)) {
return $response->withStatus(400)->withJson(['errors' => 'User has no primary entity']);
}
$entityInformations = json_decode($entity['external_id'], true);
if (empty($entityInformations['alfresco'])) {
return $response->withStatus(400)->withJson(['errors' => 'User primary entity has not enough alfresco informations']);
}
$entityInformations['alfresco']['password'] = PasswordModel::decrypt(['cryptedPassword' => $entityInformations['alfresco']['password']]);
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/alfresco/versions/1/nodes/{$entityInformations['alfresco']['nodeId']}/children",
'basicAuth' => ['user' => $entityInformations['alfresco']['login'], 'password' => $entityInformations['alfresco']['password']],
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
'headers' => ['content-type:application/json'],
'method' => 'GET',
'queryParams' => ['where' => '(isFolder=true)']
]);
if ($curlResponse['code'] != 200) {
return $response->withStatus(400)->withJson(['errors' => json_encode($curlResponse['response'])]);
}
$folders = [];
if (!empty($curlResponse['response']['list']['entries'])) {
foreach ($curlResponse['response']['list']['entries'] as $value) {
$folders[] = [
'id' => $value['entry']['id'],
'icon' => 'fa fa-folder',
'text' => $value['entry']['name'],
'parent' => '#',
'children' => true
];
}
}
return $response->withJson($folders);
}
public function getChildrenFoldersById(Request $request, Response $response, array $args)
{
$configuration = ConfigurationModel::getByService(['service' => 'admin_alfresco']);
if (empty($configuration)) {
return $response->withStatus(400)->withJson(['errors' => 'Alfresco configuration is not enabled']);
}
$configuration = json_decode($configuration['value'], true);
if (empty($configuration['uri'])) {
return $response->withStatus(400)->withJson(['errors' => 'Alfresco configuration URI is empty']);
}
$alfrescoUri = rtrim($configuration['uri'], '/');
$entity = UserModel::getPrimaryEntityById(['id' => $GLOBALS['id'], 'select' => ['entities.external_id']]);
if (empty($entity)) {
return $response->withStatus(400)->withJson(['errors' => 'User has no primary entity']);
}
$entityInformations = json_decode($entity['external_id'], true);
if (empty($entityInformations['alfresco'])) {
return $response->withStatus(400)->withJson(['errors' => 'User primary entity has not enough alfresco informations']);
}
$entityInformations['alfresco']['password'] = PasswordModel::decrypt(['cryptedPassword' => $entityInformations['alfresco']['password']]);
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/alfresco/versions/1/nodes/{$args['id']}/children",
'basicAuth' => ['user' => $entityInformations['alfresco']['login'], 'password' => $entityInformations['alfresco']['password']],
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
'headers' => ['content-type:application/json'],
'method' => 'GET',
'queryParams' => ['where' => '(isFolder=true)']
]);
if ($curlResponse['code'] != 200) {
return $response->withStatus(400)->withJson(['errors' => json_encode($curlResponse['response'])]);
}
$folders = [];
if (!empty($curlResponse['response']['list']['entries'])) {
foreach ($curlResponse['response']['list']['entries'] as $value) {
$folders[] = [
'id' => $value['entry']['id'],
'icon' => 'fa fa-folder',
'text' => $value['entry']['name'],
'parent' => $args['id'],
'children' => true
];
}
}
return $response->withJson($folders);
}
public function getFolders(Request $request, Response $response)
{
$queryParams = $request->getQueryParams();
if (!Validator::stringType()->notEmpty()->validate($queryParams['search'])) {
return $response->withStatus(400)->withJson(['errors' => 'Query params search is empty']);
} elseif (strlen($queryParams['search']) < 3) {
return $response->withStatus(400)->withJson(['errors' => 'Query params search is too short']);
}
$configuration = ConfigurationModel::getByService(['service' => 'admin_alfresco']);
if (empty($configuration)) {
return $response->withStatus(400)->withJson(['errors' => 'Alfresco configuration is not enabled']);
}
$configuration = json_decode($configuration['value'], true);
if (empty($configuration['uri'])) {
return $response->withStatus(400)->withJson(['errors' => 'Alfresco configuration URI is empty']);
}
$alfrescoUri = rtrim($configuration['uri'], '/');
$entity = UserModel::getPrimaryEntityById(['id' => $GLOBALS['id'], 'select' => ['entities.external_id']]);
if (empty($entity)) {
return $response->withStatus(400)->withJson(['errors' => 'User has no primary entity']);
}
$entityInformations = json_decode($entity['external_id'], true);
if (empty($entityInformations['alfresco'])) {
return $response->withStatus(400)->withJson(['errors' => 'User primary entity has not enough alfresco informations']);
}
$entityInformations['alfresco']['password'] = PasswordModel::decrypt(['cryptedPassword' => $entityInformations['alfresco']['password']]);
$search = addslashes($queryParams['search']);
$body = [
'query' => [
'query' => "select * from cmis:folder where CONTAINS ('cmis:name:*{$search}*') and IN_TREE('{$entityInformations['alfresco']['nodeId']}')",
'language' => 'cmis',
],
'fields' => ['id', 'name']
];
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/search/versions/1/search",
'basicAuth' => ['user' => $entityInformations['alfresco']['login'], 'password' => $entityInformations['alfresco']['password']],
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
'headers' => ['content-type:application/json', 'Accept: application/json'],
'method' => 'POST',
'body' => json_encode($body)
]);
if ($curlResponse['code'] != 200) {
return $response->withStatus(400)->withJson(['errors' => json_encode($curlResponse['response'])]);
}
$folders = [];
if (!empty($curlResponse['response']['list']['entries'])) {
foreach ($curlResponse['response']['list']['entries'] as $value) {
$folders[] = [
'id' => $value['entry']['id'],
'icon' => 'fa fa-folder',
'text' => $value['entry']['name'],
'parent' => '#',
'children' => true
];
}
}
return $response->withJson($folders);
}
public static function sendResource(array $args)
{
ValidatorModel::notEmpty($args, ['resId', 'folderId', 'userId']);
ValidatorModel::intVal($args, ['resId', 'userId']);
ValidatorModel::stringType($args, ['folderId', 'folderName']);
$configuration = ConfigurationModel::getByService(['service' => 'admin_alfresco']);
if (empty($configuration)) {
return ['errors' => 'Alfresco configuration is not enabled'];
}
$configuration = json_decode($configuration['value'], true);
if (empty($configuration['uri'])) {
return ['errors' => 'Alfresco configuration URI is empty'];
}
$alfrescoUri = rtrim($configuration['uri'], '/');
$entity = UserModel::getPrimaryEntityById(['id' => $args['userId'], 'select' => ['entities.external_id']]);
if (empty($entity)) {
return ['errors' => 'User has no primary entity'];
}
$entityInformations = json_decode($entity['external_id'], true);
if (empty($entityInformations['alfresco'])) {
return ['errors' => 'User primary entity has not enough alfresco informations'];
}
$entityInformations['alfresco']['password'] = PasswordModel::decrypt(['cryptedPassword' => $entityInformations['alfresco']['password']]);
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
$document = ResModel::getById(['select' => ['filename', 'subject', 'alt_identifier', 'external_id'], 'resId' => $args['resId']]);
if (empty($document)) {
return ['errors' => 'Document does not exist'];
} elseif (empty($document['filename'])) {
return ['errors' => 'Document has no file'];
}
$convertedDocument = ConvertPdfController::getConvertedPdfById(['resId' => $args['resId'], 'collId' => 'letterbox_coll']);
if (!empty($convertedDocument['errors'])) {
return ['errors' => 'Conversion error : ' . $convertedDocument['errors']];
}
$docserver = DocserverModel::getByDocserverId(['docserverId' => $convertedDocument['docserver_id'], 'select' => ['path_template', 'docserver_type_id']]);
if (empty($docserver['path_template']) || !file_exists($docserver['path_template'])) {
return ['errors' => 'Docserver does not exist'];
}
$pathToDocument = $docserver['path_template'] . str_replace('#', DIRECTORY_SEPARATOR, $convertedDocument['path']) . $convertedDocument['filename'];
if (!is_file($pathToDocument)) {
return ['errors' => 'Document not found on docserver'];
}
$fileContent = file_get_contents($pathToDocument);
if ($fileContent === false) {
return ['errors' => 'Document not found on docserver'];
}
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/alfresco/versions/1/nodes/{$args['folderId']}/children",
'basicAuth' => ['user' => $entityInformations['alfresco']['login'], 'password' => $entityInformations['alfresco']['password']],
'headers' => ['content-type:application/json', 'Accept: application/json'],
'method' => 'POST',
'body' => json_encode(['name' => str_replace('/', '_', $document['alt_identifier']), 'nodeType' => 'cm:folder'])
]);
if ($curlResponse['code'] != 201) {
return ['errors' => "Create folder {$document['alt_identifier']} failed : " . json_encode($curlResponse['response'])];
}
$resourceFolderId = $curlResponse['response']['entry']['id'];
$document['subject'] = str_replace([':', '*', '\'', '"', '>', '<'], ' ', $document['subject']);
$multipartBody = [
'filedata' => ['isFile' => true, 'filename' => $document['subject'], 'content' => $fileContent],
];
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/alfresco/versions/1/nodes/{$resourceFolderId}/children",
'basicAuth' => ['user' => $entityInformations['alfresco']['login'], 'password' => $entityInformations['alfresco']['password']],
'method' => 'POST',
'multipartBody' => $multipartBody
]);
if ($curlResponse['code'] != 201) {
return ['errors' => "Send resource {$args['resId']} failed : " . json_encode($curlResponse['response'])];
}
$documentId = $curlResponse['response']['entry']['id'];
$body = [
'properties' => [
'cm:description' => $document['alt_identifier'],
],
];
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/alfresco/versions/1/nodes/{$documentId}",
'basicAuth' => ['user' => $entityInformations['alfresco']['login'], 'password' => $entityInformations['alfresco']['password']],
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
'headers' => ['content-type:application/json', 'Accept: application/json'],
'method' => 'PUT',
'body' => json_encode($body)
]);
if ($curlResponse['code'] != 200) {
return ['errors' => "Update resource {$args['resId']} failed : " . json_encode($curlResponse['response'])];
}
$externalId = json_decode($document['external_id'], true);
$externalId['alfrescoId'] = $documentId;
ResModel::update(['set' => ['external_id' => json_encode($externalId)], 'where' => ['res_id = ?'], 'data' => [$args['resId']]]);
$attachments = AttachmentModel::get([
'select' => ['res_id', 'title', 'identifier', 'external_id', 'docserver_id', 'path', 'filename', 'format'],
'where' => ['res_id_master = ?', 'attachment_type not in (?)', 'status not in (?)'],
'data' => [$args['resId'], ['signed_response'], ['DEL', 'OBS']]
]);
$firstAttachment = true;
$attachmentsTitlesSent = [];
foreach ($attachments as $attachment) {
if ($attachment['format'] == 'xml') {
$adrInfo = [
'docserver_id' => $attachment['docserver_id'],
'path' => $attachment['path'],
'filename' => $attachment['filename']
];
} else {
$adrInfo = ConvertPdfController::getConvertedPdfById(['resId' => $attachment['res_id'], 'collId' => 'attachments_coll']);
}
if (empty($adrInfo['docserver_id'])) {
continue;
}
$docserver = DocserverModel::getByDocserverId(['docserverId' => $adrInfo['docserver_id']]);
if (empty($docserver['path_template'])) {
continue;
}
$pathToDocument = $docserver['path_template'] . str_replace('#', DIRECTORY_SEPARATOR, $adrInfo['path']) . $adrInfo['filename'];
if (!is_file($pathToDocument)) {
continue;
}
$fileContent = file_get_contents($pathToDocument);
if ($fileContent === false) {
continue;
}
if ($firstAttachment) {
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/alfresco/versions/1/nodes/{$resourceFolderId}/children",
'basicAuth' => ['user' => $entityInformations['alfresco']['login'], 'password' => $entityInformations['alfresco']['password']],
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
'headers' => ['content-type:application/json', 'Accept: application/json'],
'method' => 'POST',
'body' => json_encode(['name' => 'Pièces jointes', 'nodeType' => 'cm:folder'])
]);
if ($curlResponse['code'] != 201) {
return ['errors' => "Create folder 'Pièces jointes' failed : " . json_encode($curlResponse['response'])];
}
$attachmentsFolderId = $curlResponse['response']['entry']['id'];
}
if (empty($attachmentsFolderId)) {
continue;
}
$firstAttachment = false;
if (in_array($attachment['title'], $attachmentsTitlesSent)) {
$i = 1;
$newTitle = "{$attachment['title']}_{$i}";
while (in_array($newTitle, $attachmentsTitlesSent)) {
$newTitle = "{$attachment['title']}_{$i}";
++$i;
}
$attachment['title'] = $newTitle;
}
$multipartBody = [
'filedata' => ['isFile' => true, 'filename' => $attachment['title'], 'content' => $fileContent],
];
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/alfresco/versions/1/nodes/{$attachmentsFolderId}/children",
'basicAuth' => ['user' => $entityInformations['alfresco']['login'], 'password' => $entityInformations['alfresco']['password']],
'method' => 'POST',
'multipartBody' => $multipartBody
]);
if ($curlResponse['code'] != 201) {
return ['errors' => "Send attachment {$attachment['res_id']} failed : " . json_encode($curlResponse['response'])];
}
$attachmentId = $curlResponse['response']['entry']['id'];
$body = [
'properties' => [
'cm:description' => $attachment['identifier'],
],
];
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/alfresco/versions/1/nodes/{$attachmentId}",
'basicAuth' => ['user' => $entityInformations['alfresco']['login'], 'password' => $entityInformations['alfresco']['password']],
'headers' => ['content-type:application/json', 'Accept: application/json'],
'method' => 'PUT',
'body' => json_encode($body)
]);
if ($curlResponse['code'] != 200) {
return ['errors' => "Update attachment {$attachment['res_id']} failed : " . json_encode($curlResponse['response'])];
}
$attachmentsTitlesSent[] = $attachment['title'];
$externalId = json_decode($attachment['external_id'], true);
$externalId['alfrescoId'] = $attachmentId;
AttachmentModel::update(['set' => ['external_id' => json_encode($externalId)], 'where' => ['res_id = ?'], 'data' => [$attachment['res_id']]]);
}
$message = empty($args['folderName']) ? " (envoyé au dossier {$args['folderId']})" : " (envoyé au dossier {$args['folderName']})";
return ['history' => $message];
}
}