Skip to content
Snippets Groups Projects
SedaController.php 17.7 KiB
Newer Older
  • Learn to ignore specific revisions
  • <?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 Seda Controller
    * @author dev@maarch.org
    */
    
    namespace ExportSeda\controllers;
    
    use Attachment\models\AttachmentModel;
    use Doctype\models\DoctypeModel;
    use Email\models\EmailModel;
    use Entity\models\EntityModel;
    
    use Folder\models\FolderModel;
    
    use Note\models\NoteModel;
    
    use Resource\controllers\ResController;
    use Resource\controllers\ResourceListController;
    
    use Resource\models\ResModel;
    use Respect\Validation\Validator;
    use Slim\Http\Request;
    use Slim\Http\Response;
    use SrcCore\models\CoreConfigModel;
    
    use User\models\UserModel;
    
    
    class SedaController
    {
    
        public function checkSendToRecordManagement(Request $request, Response $response, array $aArgs)
    
            $body = $request->getParsedBody();
    
            if (!Validator::arrayType()->notEmpty()->validate($body['resources'])) {
                return $response->withStatus(400)->withJson(['errors' => 'Body resources is empty or not an array']);
            }
    
            $errors = ResourceListController::listControl(['groupId' => $aArgs['groupId'], 'userId' => $aArgs['userId'], 'basketId' => $aArgs['basketId'], 'currentUserId' => $GLOBALS['id']]);
            if (!empty($errors['errors'])) {
                return $response->withStatus($errors['code'])->withJson(['errors' => $errors['errors']]);
    
            $body['resources'] = array_slice($body['resources'], 0, 500);
            if (!ResController::hasRightByResId(['resId' => $body['resources'], 'userId' => $GLOBALS['id']])) {
                return $response->withStatus(403)->withJson(['errors' => 'Document out of perimeter']);
            }
    
            $firstResource = $body['resources'][0];
    
    
            $resource = ResModel::getById(['resId' => $firstResource, 'select' => ['res_id', 'destination', 'type_id', 'subject', 'linked_resources']]);
    
            if (empty($resource)) {
                return $response->withStatus(400)->withJson(['errors' => 'resource does not exists']);
            } elseif (empty($resource['destination'])) {
                return $response->withStatus(400)->withJson(['errors' => 'resource has no destination', 'lang' => 'noDestination']);
            }
    
            $doctype = DoctypeModel::getById(['id' => $resource['type_id'], 'select' => ['description', 'retention_rule', 'retention_final_disposition']]);
            if (empty($doctype['retention_rule']) || empty($doctype['retention_final_disposition'])) {
                return $response->withStatus(400)->withJson(['errors' => 'retention_rule or retention_final_disposition is empty for doctype', 'lang' => 'noRetentionInfo']);
            }
    
            $entity = EntityModel::getByEntityId(['entityId' => $resource['destination'], 'select' => ['producer_service', 'entity_label']]);
    
            if (empty($entity['producer_service'])) {
                return $response->withStatus(400)->withJson(['errors' => 'producer_service is empty for this entity', 'lang' => 'noProducerService']);
            }
    
    
            $config = CoreConfigModel::getJsonLoaded(['path' => 'apps/maarch_entreprise/xml/config.json']);
            if (empty($config['exportSeda']['senderOrgRegNumber'])) {
                return $response->withStatus(400)->withJson(['errors' => 'No senderOrgRegNumber found in config.json', 'lang' => 'noSenderOrgRegNumber']);
    
            $return = SedaController::initArchivalData([
                'resource'           => $resource,
                'senderOrgRegNumber' => $config['exportSeda']['senderOrgRegNumber'],
                'entity'             => $entity,
                'doctype'            => $doctype
            ])['archivalData'];
    
            $archivalAgreements = SedaController::getArchivalAgreements([
                'config'              => $config,
                'senderArchiveEntity' => $config['exportSeda']['senderOrgRegNumber'],
                'producerService'     => $entity['producer_service']
            ]);
            if (!empty($archivalAgreements['errors'])) {
                return $response->withStatus(400)->withJson($archivalAgreements);
            }
            $recipientArchiveEntities = SedaController::getRecipientArchiveEntities(['config' => $config, 'archivalAgreements' => $archivalAgreements['archivalAgreements']]);
            if (!empty($recipientArchiveEntities['errors'])) {
                return $response->withStatus(400)->withJson($recipientArchiveEntities);
            }
    
            $return['archivalAgreements']       = $archivalAgreements['archivalAgreements'];
            $return['recipientArchiveEntities'] = $recipientArchiveEntities['archiveEntities'];
            
            return $response->withJson($return);
        }
    
        public function initArchivalData($args = [])
        {
    
            $date = new \DateTime();
    
    
            $return = [
                'data' => [
                    'entity' => [
    
                        'label'               => $args['entity']['entity_label'],
                        'producerService'     => $args['entity']['producer_service'],
                        'senderArchiveEntity' => $args['senderOrgRegNumber'],
    
                    ],
                    'doctype' => [
    
                        'label'                     => $args['doctype']['description'],
                        'retentionRule'             => $args['doctype']['retention_rule'],
                        'retentionFinalDisposition' => $args['doctype']['retention_final_disposition']
    
                    ],
                    'slipInfo' => [
                        'slipId'    => $GLOBALS['login'] . '-' . $date->format('Ymd-His'),
    
                        'archiveId' => 'archive_' . $args['resource']['res_id']
    
                'archiveUnits' => [
    
                        'id'               => 'letterbox_' . $args['resource']['res_id'],
                        'label'            => $args['resource']['subject'],
    
                        'type'             => 'mainDocument',
                        'descriptionLevel' => 'Item'
    
            $attachments = AttachmentModel::get([
                'select'  => ['res_id', 'title'],
                'where'   => ['res_id_master = ?', 'status not in (?)', 'attachment_type not in (?)'],
    
                'data'    => [$args['resource']['res_id'], ['DEL', 'OBS', 'TMP'], ['signed_response']],
    
                'orderBy' => ['modification_date DESC']
            ]);
            foreach ($attachments as $attachment) {
                $return['archiveUnits'][] = [
                    'id'               => 'attachment_' . $attachment['res_id'],
                    'label'            => $attachment['title'],
                    'type'             => 'attachment',
                    'descriptionLevel' => 'Item'
                ];
            }
    
    
            $notes = NoteModel::get(['select' => ['note_text', 'id'], 'where' => ['identifier = ?'], 'data' => [$args['resource']['res_id']]]);
    
            foreach ($notes as $note) {
    
                $return['archiveUnits'][] = [
    
                    'id'               => 'note_' . $note['id'],
                    'label'            => $note['note_text'],
                    'type'             => 'note',
                    'descriptionLevel' => 'Item'
    
                ];
            }
    
            $emails = EmailModel::get([
                'select'  => ['object', 'id'],
                'where'   => ['document->>\'id\' = ?', 'status = ?'],
    
                'data'    => [$args['resource']['res_id'], 'SENT'],
    
                'orderBy' => ['send_date desc']
            ]);
            foreach ($emails as $email) {
    
                $return['archiveUnits'][] = [
    
                    'id'               => 'note_' . $email['id'],
                    'label'            => $email['object'],
                    'type'             => 'email',
                    'descriptionLevel' => 'Item'
    
            $return['archiveUnits'][] = [
    
                'id'               => 'summarySheet_' . $args['resource']['res_id'],
    
                'label'            => 'Fiche de liaison',
                'type'             => 'summarySheet',
                'descriptionLevel' => 'Item'
    
            $linkedResourcesIds = json_decode($args['resource']['linked_resources'], true);
    
            if (!empty($linkedResourcesIds)) {
    
                $linkedResources = [];
    
                $linkedResources = ResModel::get([
    
                    'select' => ['subject', 'alt_identifier'],
    
                    'where'  => ['res_id in (?)'],
                    'data'   => [$linkedResourcesIds]
                ]);
    
                $return['additionalData']['linkedResources'] = array_column($linkedResources, 'subject', 'alt_identifier');
    
            $entities = UserModel::getEntitiesById(['id' => $GLOBALS['id'], 'select' => ['entities.id']]);
    
            $entities = array_column($entities, 'id');
    
            if (empty($entities)) {
                $entities = [0];
            }
    
            $folders = FolderModel::getWithEntitiesAndResources([
    
                'select' => ['DISTINCT(folders.id)', 'folders.label'],
                'where'  => ['res_id = ?', '(entity_id in (?) OR keyword = ?)', 'folders.public = TRUE'],
    
                'data'   => [$args['resource']['res_id'], $entities, 'ALL_ENTITIES']
    
            ]);
            foreach ($folders as $folder) {
                $return['additionalData']['folders'][] = [
    
                    'id'    => 'folder_' . $folder['id'],
                    'label' => $folder['label']
    
            return ['archivalData' => $return];
    
        public function getRecipientArchiveEntities($args = [])
        {
            $archiveEntities = [];
    
            if (strtolower($args['config']['exportSeda']['sae']) == 'maarchrm') {
    
                $curlResponse = CurlModel::execSimple([
    
                    'url'     => rtrim($args['config']['exportSeda']['urlSAEService'], '/') . '/organization/organization/Byrole/archiver',
    
                    'cookie'  => 'LAABS-AUTH=' . urlencode($args['config']['exportSeda']['token']),
    
                    'headers' => [
                        'Accept: application/json',
                        'Content-Type: application/json',
    
                        'User-Agent: ' . $args['config']['exportSeda']['userAgent']
    
                    ]
                ]);
    
                if (!empty($curlResponse['errors'])) {
    
                    return ['errors' => 'Error returned by the route /organization/organization/Byrole/archiver : ' . $curlResponse['errors']];
                } elseif ($curlResponse['code'] != 200) {
                    return ['errors' => 'Error returned by the route /organization/organization/Byrole/archiver : ' . $curlResponse['response']['message']];
    
                }
    
                $archiveEntitiesAllowed = array_column($args['archivalAgreements'], 'archiveEntityRegNumber');
    
                $archiveEntities[] = [
                    'id'    => "",
                    'label' => null
                ];
                foreach ($curlResponse['response'] as $retentionRule) {
                    if (in_array($retentionRule['registrationNumber'], $archiveEntitiesAllowed)) {
                        $archiveEntities[] = [
                            'id'    => $retentionRule['registrationNumber'],
                            'label' => $retentionRule['displayName']
                        ];
                    }
                }
            } else {
    
                if (is_array($args['config']['exportSeda']['externalSAE']['archiveEntities'])) {
                    foreach ($args['config']['exportSeda']['externalSAE']['archiveEntities'] as $archiveEntity) {
                        $archiveEntities[] = [
                                'id'    => $archiveEntity['id'],
                                'label' => $archiveEntity['label']
    
                            ];
                    }
                }
            }
    
            return ['archiveEntities' => $archiveEntities];
        }
    
        public function getArchivalAgreements($args = [])
        {
            $archivalAgreements = [];
    
            if (strtolower($args['config']['exportSeda']['sae']) == 'maarchrm') {
    
                $curlResponse = CurlModel::execSimple([
    
                    'url'     => rtrim($args['config']['exportSeda']['urlSAEService'], '/') . '/medona/archivalAgreement/Index',
    
                    'cookie'  => 'LAABS-AUTH=' . urlencode($args['config']['exportSeda']['token']),
    
                    'headers' => [
                        'Accept: application/json',
                        'Content-Type: application/json',
    
                        'User-Agent: ' . $args['config']['exportSeda']['userAgent']
    
                    ]
                ]);
    
                if (!empty($curlResponse['errors'])) {
    
                    return ['errors' => 'Error returned by the route /medona/archivalAgreement/Index : ' . $curlResponse['errors']];
                } elseif ($curlResponse['code'] != 200) {
                    return ['errors' => 'Error returned by the route /medona/archivalAgreement/Index : ' . $curlResponse['response']['message']];
    
                $producerService = SedaController::getProducerServiceInfo(['config' => $args['config'], 'producerServiceName' => $args['producerService']]);
    
                if (!empty($producerService['errors'])) {
    
                    return ['errors' => $curlResponse['errors']];
    
                } elseif (empty($producerService['producerServiceInfo'])) {
    
                    return ['errors' => 'ProducerService does not exists in MaarchRM', 'lang' => 'producerServiceDoesNotExists'];
    
                }
    
                $archivalAgreements[] = [
                    'id'    => "",
                    'label' => null
                ];
                foreach ($curlResponse['response'] as $retentionRule) {
                    if ($retentionRule['depositorOrgRegNumber'] == $args['senderArchiveEntity'] && in_array($producerService['producerServiceInfo']['orgId'], $retentionRule['originatorOrgIds'])) {
                        $archivalAgreements[] = [
                            'id'            => $retentionRule['reference'],
                            'label'         => $retentionRule['name'],
                            'archiveEntityRegNumber' => $retentionRule['archiverOrgRegNumber']
                        ];
                    }
                }
            } else {
    
                if (is_array($args['config']['exportSeda']['externalSAE']['archivalAgreements'])) {
                    foreach ($args['config']['exportSeda']['externalSAE']['archivalAgreements'] as $archivalAgreement) {
                        $archivalAgreements[] = [
                            'id'    => $archivalAgreement['id'],
                            'label' => $archivalAgreement['label']
                        ];
    
                    }
                }
            }
    
            return ['archivalAgreements' => $archivalAgreements];
        }
    
        public function getProducerServiceInfo($args = [])
        {
            $curlResponse = CurlModel::execSimple([
    
                'url'     => rtrim($args['config']['exportSeda']['urlSAEService'], '/') . '/organization/organization/Search?term=' . $args['producerServiceName'],
    
                'cookie'  => 'LAABS-AUTH=' . urlencode($args['config']['exportSeda']['token']),
    
                'headers' => [
                    'Accept: application/json',
                    'Content-Type: application/json',
    
                    'User-Agent: ' . $args['config']['exportSeda']['userAgent']
    
                ]
            ]);
    
            if (!empty($curlResponse['errors'])) {
    
                return ['errors' => 'Error returned by the route /organization/organization/Search : ' . $curlResponse['errors']];
            } elseif ($curlResponse['code'] != 200) {
                return ['errors' => 'Error returned by the route /organization/organization/Search : ' . $curlResponse['response']['message']];
    
            }
    
            return ['producerServiceInfo' => $curlResponse['response'][0]];
        }
    
    
        public function getRetentionRules(Request $request, Response $response)
        {
            if (!PrivilegeController::hasPrivilege(['privilegeId' => 'admin_architecture', 'userId' => $GLOBALS['id']])) {
                return $response->withStatus(403)->withJson(['errors' => 'Service forbidden']);
            }
    
    
            $config = CoreConfigModel::getJsonLoaded(['path' => 'apps/maarch_entreprise/xml/config.json']);
            if (empty($config['exportSeda']['sae'])) {
                return $response->withStatus(400)->withJson(['errors' => 'No SAE found in config.json']);
    
            if (strtolower($config['exportSeda']['sae']) == 'maarchrm') {
    
                    'url'     => rtrim($config['exportSeda']['urlSAEService'], '/') . '/recordsManagement/retentionRule/Index',
    
                    'cookie'  => 'LAABS-AUTH=' . urlencode($config['exportSeda']['token']),
    
                    'headers' => [
                        'Accept: application/json',
                        'Content-Type: application/json',
    
                        'User-Agent: ' . $config['exportSeda']['userAgent']
    
                    return $response->withStatus(400)->withJson(['errors' => 'Error returned by the route /recordsManagement/retentionRule/Index : ' . $curlResponse['errors']]);
                } elseif ($curlResponse['code'] != 200) {
                    return $response->withStatus(400)->withJson(['errors' => 'Error returned by the route /recordsManagement/retentionRule/Index : ' . $curlResponse['response']['message']]);
    
                }
    
                $retentionRules[] = [
                    'id'    => "",
                    'label' => null
                ];
                foreach ($curlResponse['response'] as $retentionRule) {
                    $retentionRules[] = [
                        'id'    => $retentionRule['code'],
                        'label' => $retentionRule['label']
                    ];
                }
            } else {
    
                if (is_array($config['exportSeda']['externalSAE']['retentionRules'])) {
                    foreach ($config['exportSeda']['externalSAE']['retentionRules'] as $rule) {
                        $retentionRules[] = [
                            'id'    => $rule['id'],
                            'label' => $rule['label']
                        ];
    
                    }
                }
            }
    
            return $response->withJson(['retentionRules' => $retentionRules]);
        }