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 ActionController
* @author dev <dev@maarch.org>
* @ingroup core
*/
namespace Action\controllers;
use AcknowledgementReceipt\models\AcknowledgementReceiptModel;
use Action\models\ActionModel;
use Action\models\BasketPersistenceModel;
use Action\models\ResMarkAsReadModel;
use Entity\models\EntityModel;
use Entity\models\ListInstanceModel;
use Entity\models\ListTemplateModel;
use ExternalSignatoryBook\controllers\MaarchParapheurController;
use MessageExchange\controllers\MessageExchangeReviewController;
use SrcCore\models\CoreConfigModel;
use SrcCore\models\ValidatorModel;

Florian Azizian
committed
use ExternalSignatoryBookTrait;
'closeMailWithAttachmentsOrNotesAction' => 'closeMailWithAttachmentsOrNotesAction',
'closeAndIndexAction' => 'closeAndIndexAction',
'updateDepartureDateAction' => 'updateDepartureDateAction',
'enabledBasketPersistenceAction' => 'enabledBasketPersistenceAction',
'disabledBasketPersistenceAction' => 'disabledBasketPersistenceAction',
'resMarkAsReadAction' => 'resMarkAsReadAction',

Florian Azizian
committed
'sendExternalSignatoryBookAction' => 'sendExternalSignatoryBookAction',
'sendExternalNoteBookAction' => 'sendExternalNoteBookAction',
'createAcknowledgementReceiptsAction' => 'createAcknowledgementReceipts',
'updateAcknowledgementSendDateAction' => 'updateAcknowledgementSendDateAction',
'sendShippingAction' => 'createMailevaShippings',
'sendSignatureBookAction' => 'sendSignatureBook',
'continueVisaCircuitAction' => 'continueVisaCircuit',
'rejectVisaBackToPrevious' => 'rejectVisaBackToPrevious',
'redirectInitiatorEntityAction' => 'redirectInitiatorEntityAction',
'rejectVisaBackToPreviousAction' => 'rejectVisaBackToPrevious',

Alex ORLUC
committed
'resetVisaAction' => 'resetVisa',
'interruptVisaAction' => 'interruptVisa',
'sendToOpinionCircuitAction' => 'sendToOpinionCircuit',
'continueOpinionCircuitAction' => 'continueOpinionCircuit',
'giveOpinionParallelAction' => 'giveOpinionParallel',
'noConfirmAction' => null
];
public static function terminateAction(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['id', 'resources']);
ValidatorModel::intVal($aArgs, ['id']);
ValidatorModel::arrayType($aArgs, ['resources']);
ValidatorModel::stringType($aArgs, ['basketName', 'note', 'history']);
$set = ['locker_user_id' => null, 'locker_time' => null, 'modification_date' => 'CURRENT_TIMESTAMP'];
$action = ActionModel::getById(['id' => $aArgs['id'], 'select' => ['label_action', 'id_status', 'history']]);
if (!empty($action['id_status']) && $action['id_status'] != '_NOSTATUS_') {
$set['status'] = $action['id_status'];
}
ResModel::update([
'set' => $set,
'where' => ['res_id in (?)'],
'data' => [$aArgs['resources']]
foreach ($aArgs['resources'] as $resource) {
if (!empty(trim($aArgs['note']))) {
NoteModel::create([
'resId' => $resource,
'user_id' => $GLOBALS['id'],
'note_text' => $aArgs['note']
]);
}
$info = "{$action['label_action']}{$aArgs['history']}";
$info = empty($aArgs['basketName']) ? $info : "{$aArgs['basketName']} : {$info}";
'tableName' => 'res_letterbox',

Florian Azizian
committed
'eventType' => 'ACTION#' . $aArgs['id'],
MessageExchangeReviewController::sendMessageExchangeReview(['res_id' => $resource, 'action_id' => $aArgs['id'], 'userId' => $GLOBALS['userId']]);
public static function closeMailAction(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['resId']);
ValidatorModel::intVal($aArgs, ['resId']);
ResModel::update(['set' => ['closing_date' => 'CURRENT_TIMESTAMP'], 'where' => ['res_id = ?', 'closing_date is null'], 'data' => [$aArgs['resId']]]);
if (CurlModel::isEnabled(['curlCallId' => 'closeResource'])) {
$bodyData = [];
$config = CurlModel::getConfigByCallId(['curlCallId' => 'closeResource']);
$resource = ResModel::getById(['select' => ['external_id'], 'resId' => $aArgs['resId']]);
$externalId = json_decode($resource['external_id'], true);
if (!empty($config['inObject'])) {
foreach ($config['objects'] as $object) {
$select = [];
$tmpBodyData = [];
foreach ($object['rawData'] as $value) {
if (!empty($select)) {
$document = ResModel::getOnView(['select' => $select, 'where' => ['res_id = ?'], 'data' => [$aArgs['resId']]]);
}
foreach ($object['rawData'] as $key => $value) {
if ($value == 'note') {
$tmpBodyData[$key] = empty($aArgs['note']) ? '' : $aArgs['note'];
} elseif ($value == 'localeoId') {
$tmpBodyData[$key] = $externalId['localeoId'];
} elseif (!empty($document[0][$value])) {
$tmpBodyData[$key] = $document[0][$value];
} else {
$tmpBodyData[$key] = '';
}
}
if (!empty($object['data'])) {
$tmpBodyData = array_merge($tmpBodyData, $object['data']);
}
$bodyData[$object['name']] = json_encode($tmpBodyData);
CurlModel::execSimple([
'url' => $config['url'],
'headers' => $config['header'],
'method' => $config['method'],
'body' => $bodyData,
]);
public static function closeMailWithAttachmentsOrNotesAction(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['resId']);
ValidatorModel::intVal($aArgs, ['resId']);
ValidatorModel::stringType($aArgs, ['note']);
$attachments = AttachmentModel::get([
'select' => [1],
'where' => ['res_id_master = ?', 'status != ?'],
'data' => [$aArgs['resId'], 'DEL'],
]);
$notes = NoteModel::getByUserIdForResource(['select' => ['user_id', 'id'], 'resId' => $aArgs['resId'], 'userId' => $GLOBALS['id']]);
if (empty($attachments) && empty($notes) && empty($aArgs['note'])) {
return ['errors' => ['No attachments or notes']];
}
ResModel::update(['set' => ['closing_date' => 'CURRENT_TIMESTAMP'], 'where' => ['res_id = ?', 'closing_date is null'], 'data' => [$aArgs['resId']]]);
return true;
}
public static function closeAndIndexAction(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['resId']);
ValidatorModel::intVal($aArgs, ['resId']);
ResModel::update(['set' => ['closing_date' => 'CURRENT_TIMESTAMP'], 'where' => ['res_id = ?', 'closing_date is null'], 'data' => [$aArgs['resId']]]);
return true;
}
public static function updateAcknowledgementSendDateAction(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['resId', 'data']);
ValidatorModel::intVal($aArgs, ['resId']);
AcknowledgementReceiptModel::updateSendDate(['send_date' => date('Y-m-d H:i:s', $aArgs['data']['send_date']), 'res_id' => $aArgs['resId']]);
return true;
}
public static function updateDepartureDateAction(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['resId']);
ValidatorModel::intVal($aArgs, ['resId']);
ResModel::update(['set' => ['departure_date' => 'CURRENT_TIMESTAMP'], 'where' => ['res_id = ?', 'departure_date is null'], 'data' => [$aArgs['resId']]]);
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
public static function disabledBasketPersistenceAction(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['resId']);
ValidatorModel::intVal($aArgs, ['resId']);
BasketPersistenceModel::delete([
'where' => ['res_id = ?', 'user_id = ?'],
'data' => [$aArgs['resId'], $GLOBALS['userId']]
]);
BasketPersistenceModel::create([
'res_id' => $aArgs['resId'],
'user_id' => $GLOBALS['userId'],
'is_persistent' => 'N'
]);
return true;
}
public static function enabledBasketPersistenceAction(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['resId']);
ValidatorModel::intVal($aArgs, ['resId']);
BasketPersistenceModel::delete([
'where' => ['res_id = ?', 'user_id = ?'],
'data' => [$aArgs['resId'], $GLOBALS['userId']]
]);
BasketPersistenceModel::create([
'res_id' => $aArgs['resId'],
'user_id' => $GLOBALS['userId'],
'is_persistent' => 'Y'
]);
return true;
}
public static function resMarkAsReadAction(array $aArgs)
{
ValidatorModel::notEmpty($aArgs, ['resId', 'data']);
ValidatorModel::intVal($aArgs, ['resId']);
ResMarkAsReadModel::delete([
'where' => ['res_id = ?', 'user_id = ?', 'basket_id = ?'],
'data' => [$aArgs['resId'], $GLOBALS['userId'], $aArgs['data']['basketId']]
]);
ResMarkAsReadModel::create([
'res_id' => $aArgs['resId'],
'user_id' => $GLOBALS['userId'],
'basket_id' => $aArgs['data']['basketId']
]);
public static function redirect(array $args)
{
ValidatorModel::notEmpty($args, ['resId', 'data']);
ValidatorModel::intVal($args, ['resId']);
ValidatorModel::arrayType($args, ['data']);
$listInstances = [];
if (!empty($args['data']['onlyRedirectDest'])) {
if (count($args['data']['listInstances']) == 1) {
$listInstances = ListInstanceModel::get(['select' => ['*'], 'where' => ['res_id = ?', 'difflist_type = ?', 'item_mode != ?'], 'data' => [$args['resId'], 'entity_id', 'dest']]);
}
$listInstances = array_merge($listInstances, $args['data']['listInstances']);
$controller = ListInstanceController::updateListInstance(['data' => [['resId' => $args['resId'], 'listInstances' => $listInstances]], 'userId' => $GLOBALS['id']]);
public static function redirectInitiatorEntityAction(array $args)
{
ValidatorModel::notEmpty($args, ['resId']);
ValidatorModel::intVal($args, ['resId']);
ValidatorModel::arrayType($args, ['data']);
$resource = ResModel::getById(['select' => ['initiator'], 'resId' => $args['resId']]);
if (!empty($resource)) {
$entityInfo = EntityModel::getByEntityId(['entityId' => $resource['initiator'], 'select' => ['id']]);
if (!empty($entityInfo)) {
$destUser = ListTemplateModel::getWithItems(['where' => ['entity_id = ?', 'item_mode = ?', 'type = ?'], 'data' => [$entityInfo['id'], 'dest', 'diffusionList']]);
if (!empty($destUser)) {
ListInstanceModel::update([
'set' => [
'item_mode' => 'cc'
'where' => ['item_mode = ?', 'res_id = ?'],
'data' => ['dest', $args['resId']]
]);
$userInfo = UserModel::getById(['select' => ['user_id'], 'id' => $destUser[0]['item_id']]);
ListInstanceModel::create([
'res_id' => $args['resId'],
'sequence' => 0,
'item_id' => $userInfo['user_id'],
'item_type' => 'user_id',
'item_mode' => 'dest',
'added_by_user' => $GLOBALS['userId'],
'viewed' => 0,
'difflist_type' => 'entity_id'
]);
$destUser = $userInfo['user_id'];
} else {
$destUser = '';
ResModel::update([
'set' => ['destination' => $resource['initiator'], 'dest_user' => $destUser],
'where' => ['res_id = ?'],
'data' => [$args['resId']]
]);
}
}
return true;
}
public function sendSignatureBook(array $args)
{
ValidatorModel::notEmpty($args, ['resId']);
ValidatorModel::intVal($args, ['resId']);
$circuit = ListInstanceModel::get(['select' => [1], 'where' => ['res_id = ?', 'difflist_type = ?', 'process_date is null'], 'data' => [$args['resId'], 'VISA_CIRCUIT']]);
if (empty($circuit)) {
return ['errors' => ['No available circuit']];
}
$signableAttachmentsTypes = [];
$attachmentsTypes = AttachmentModel::getAttachmentsTypesByXML();
foreach ($attachmentsTypes as $key => $type) {
if ($type['sign']) {
$signableAttachmentsTypes[] = $key;
}
}
$attachments = AttachmentModel::get([
'select' => [1],
'where' => ['res_id_master = ?', 'attachment_type in (?)', 'in_signature_book = ?', 'status not in (?)'],
'data' => [$args['resId'], $signableAttachmentsTypes, true, ['OBS', 'DEL', 'FRZ']]
]);
if (empty($attachments)) {
return ['errors' => ['No available attachments']];
}
return true;
}
public function continueVisaCircuit(array $args)
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
{
ValidatorModel::notEmpty($args, ['resId']);
ValidatorModel::intVal($args, ['resId']);
$listInstance = ListInstanceModel::get([
'select' => ['listinstance_id'],
'where' => ['res_id = ?', 'difflist_type = ?', 'process_date is null'],
'data' => [$args['resId'], 'VISA_CIRCUIT'],
'orderBy' => ['listinstance_id'],
'limit' => 1
]);
if (empty($listInstance[0])) {
return ['errors' => ['No available circuit']];
}
ListInstanceModel::update([
'set' => [
'process_date' => 'CURRENT_TIMESTAMP'
],
'where' => ['listinstance_id = ?'],
'data' => [$listInstance[0]['listinstance_id']]
]);
return true;
}
public static function sendExternalNoteBookAction(array $args)
{
ValidatorModel::notEmpty($args, ['resId']);
ValidatorModel::intVal($args, ['resId']);
$loadedXml = CoreConfigModel::getXmlLoaded(['path' => 'modules/visa/xml/remoteSignatoryBooks.xml']);
$config = [];
if (!empty($loadedXml)) {
$config['id'] = 'maarchParapheur';
foreach ($loadedXml->signatoryBook as $value) {
if ($value->id == $config['id']) {
$config['data'] = (array)$value;
break;
}
}
$processingUserInfo = MaarchParapheurController::getUserById(['config' => $config, 'id' => $args['data']['processingUser']]);
$sendedInfo = MaarchParapheurController::sendDatas([
'config' => $config,
'resIdMaster' => $args['resId'],
'processingUser' => $args['data']['processingUser'],
'objectSent' => 'mail',
'userId' => $GLOBALS['userId'],
'note' => $args['note'] ?? null
]);
if (!empty($sendedInfo['error'])) {
return ['errors' => [$sendedInfo['error']]];
} else {
$attachmentToFreeze = $sendedInfo['sended'];
}
$historyInfo = ' (à ' . $processingUserInfo['firstname'] . ' ' . $processingUserInfo['lastname'] . ')';
}
if (!empty($attachmentToFreeze)) {
ResModel::update([
'set' => ['external_signatory_book_id' => $attachmentToFreeze['letterbox_coll'][$args['resId']]],
'where' => ['res_id = ?'],
'data' => [$args['resId']]
]);
}
return ['history' => $historyInfo];
}
public static function rejectVisaBackToPrevious(array $args)
{
ValidatorModel::notEmpty($args, ['resId']);
ValidatorModel::intVal($args, ['resId']);
$listInstances = ListInstanceModel::get([
'select' => ['listinstance_id'],
'where' => ['res_id = ?', 'difflist_type = ?', 'process_date is not null'],
'data' => [$args['resId'], 'VISA_CIRCUIT'],
'orderBy' => ['listinstance_id desc'],
'limit' => 1
]);
if (empty($listInstances)) {
return false;
}
$listInstances = $listInstances[0];
ListInstanceModel::update([
'set' => ['process_date' => null],
'where' => ['listinstance_id = ?'],
'data' => [$listInstances['listinstance_id']]
]);
return true;
}

Alex ORLUC
committed
public static function resetVisa(array $args)
{
ValidatorModel::notEmpty($args, ['resId']);
ValidatorModel::intVal($args, ['resId']);
ListInstanceModel::update([
'set' => ['process_date' => null],
'where' => ['res_id = ?', 'difflist_type = ?'],
'data' => [$args['resId'], 'VISA_CIRCUIT']
]);
return true;
}
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
public static function interruptVisa(array $args)
{
ValidatorModel::notEmpty($args, ['resId']);
ValidatorModel::intVal($args, ['resId']);
$listInstances = ListInstanceModel::get([
'select' => ['listinstance_id'],
'where' => ['res_id = ?', 'difflist_type = ?', 'process_date is null'],
'data' => [$args['resId'], 'VISA_CIRCUIT'],
'orderBy' => ['listinstance_id'],
'limit' => 1
]);
if (!empty($listInstances)) {
$listInstances = $listInstances[0];
ListInstanceModel::update([
'set' => [
'process_date' => 'CURRENT_TIMESTAMP',
'process_comment' => _HAS_INTERRUPTED_WORKFLOW
],
'where' => ['listinstance_id = ?'],
'data' => [$listInstances['listinstance_id']]
]);
}
ListInstanceModel::update([
'set' => [
'process_date' => 'CURRENT_TIMESTAMP',
'process_comment' => _INTERRUPTED_WORKFLOW
],
'where' => ['res_id = ?', 'difflist_type = ?', 'process_date is null'],
'data' => [$args['resId'], 'VISA_CIRCUIT']
]);
return true;
}
public static function sendToOpinionCircuit(array $args)
{
ValidatorModel::notEmpty($args, ['resId']);
ValidatorModel::intVal($args, ['resId']);
$listinstances = ListInstanceModel::get([
'select' => [1],
'where' => ['res_id = ?', 'difflist_type = ?'],
'data' => [$args['resId'], 'AVIS_CIRCUIT']
]);
if (empty($listinstances)) {
return ['errors' => ['No available opinion workflow']];
}
Guillaume Heurtier
committed
if (empty($args['data']['opinionLimitDate'])) {
return ["errors" => ["Opinion limit date is missing"]];
}
ResModel::update([
'set' => ['opinion_limit_date' => $args['data']['opinionLimitDate']],
'where' => ['res_id = ?', 'difflist_type = ?'],
'data' => [$args['resId'], 'AVIS_CIRCUIT']
]);
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
public static function continueOpinionCircuit(array $args)
{
ValidatorModel::notEmpty($args, ['resId']);
ValidatorModel::intVal($args, ['resId']);
$currentStep = ListInstanceModel::get([
'select' => ['listinstance_id', 'item_id'],
'where' => ['res_id = ?', 'difflist_type = ?', 'process_date is null'],
'data' => [$args['resId'], 'AVIS_CIRCUIT'],
'orderBy' => ['listinstance_id'],
'limit' => 1
]);
if (empty($currentStep) || empty($currentStep[0])) {
return ['errors' => ['No workflow or workflow finished']];
}
$currentStep = $currentStep[0];
$message = null;
if ($currentStep['item_id'] != $GLOBALS['userId']) {
$currentUser = UserModel::getById(['select' => ['firstname', 'lastname'], 'id' => $GLOBALS['id']]);
$stepUser = UserModel::get([
'select' => ['firstname', 'lastname'],
'where' => ['user_id = ?'],
'data' => [$currentStep['item_id']]
]);
$stepUser = $stepUser[0];
$message = ' ' . _AVIS_SENT . " " . _BY ." "
. $currentUser['firstname'] . ' ' . $currentUser['lastname']
. " " . _INSTEAD_OF . " "
. $stepUser['firstname'] . ' ' . $stepUser['lastname'];
}
ListInstanceModel::update([
'set' => [
'process_date' => 'CURRENT_TIMESTAMP'
],
'where' => ['listinstance_id = ?'],
'data' => [$currentStep['listinstance_id']]
]);
if ($message == null) {
return true;
}
return ['history' => $message];
}
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
public static function giveOpinionParallel(array $args)
{
ValidatorModel::notEmpty($args, ['resId']);
ValidatorModel::intVal($args, ['resId']);
$currentStep = ListInstanceModel::get([
'select' => ['listinstance_id', 'item_id'],
'where' => ['res_id = ?', 'difflist_type = ?', 'item_id = ?', 'item_mode in (?)'],
'data' => [$args['resId'], 'entity_id', $GLOBALS['userId'], ['avis', 'avis_copy', 'avis_info']],
'limit' => 1
]);
if (empty($currentStep)) {
return ['errors' => ['No workflow available']];
}
$currentStep = $currentStep[0];
ListInstanceModel::update([
'set' => [
'process_date' => 'CURRENT_TIMESTAMP'
],
'where' => ['listinstance_id = ?'],
'data' => [$currentStep['listinstance_id']]
]);
return true;
}