Skip to content
Snippets Groups Projects
YousignController.php 6.12 KiB
Newer Older
  • Learn to ignore specific revisions
  • <?php
    
    /**
    * 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 Yousign Controller
    * @author dev@maarch.org
    */
    
    namespace Workflow\controllers;
    
    
    use Docserver\controllers\DocserverController;
    use Docserver\models\AdrModel;
    use Document\controllers\DocumentController;
    use Slim\Http\Request;
    use Slim\Http\Response;
    
    use SrcCore\models\CurlModel;
    
    use Workflow\models\WorkflowExternalInformationModel;
    use Workflow\models\WorkflowModel;
    
    
    class YousignController
    {
        public static function createProcedure(array $args)
        {
            $url = 'https://staging-api.yousign.com';
            $token = '';
    
            $fileResponse = CurlModel::exec([
                'url'           => "{$url}/files",
                'bearerAuth'    => ['token' => $token],
                'method'        => 'POST',
                'headers'       => ['content-type:application/json'],
                'body'          => json_encode([
                    'name'          => "{$args['name']}.pdf",
                    'content'       => $args['encodedDocument']
                ])
            ]);
    
            if ($fileResponse['code'] != 201) {
                return ['errors' => json_encode($fileResponse['reponse'])];
            }
    
            $fileId = $fileResponse['response']['id'];
    
            $procedureResponse = CurlModel::exec([
                'url'           => "{$url}/procedures",
                'bearerAuth'    => ['token' => $token],
                'method'        => 'POST',
                'headers'       => ['content-type:application/json'],
                'body'          => json_encode([
                    'name'          => $args['name'],
                    'description'   => $args['description'],
                    'members'       => [
                        [
                            'firstname' => $args['firstname'],
                            'lastname'  => $args['lastname'],
                            'email'     => $args['email'],
                            'phone'     => $args['phone'],
                            'fileObjects'   => [
                                [
                                    'file'      => $fileId,
                                    'page'      => 1,
                                    'position'  => $args['position']
                                ]
                            ]
                        ]
                    ],
                    'config'    => [
                        'email'     => [
                            'member.started' => [
                                [
                                    "subject"   => "Hey! You are invited to sign!",
                                    "message"   => "Hello <tag data-tag-type=\"string\" data-tag-name=\"recipient.firstname\"></tag> <tag data-tag-type=\"string\" data-tag-name=\"recipient.lastname\"></tag>, <br><br> You have ben invited to sign a document, please click on the following button to read it: <tag data-tag-type=\"button\" data-tag-name=\"url\" data-tag-title=\"Access to documents\">Access to documents</tag>",
                                    "to"        => ["@member"]
                                ]
                            ]
                        ]
                    ]
                ])
            ]);
    
            if ($procedureResponse['code'] != 201) {
                return ['errors' => json_encode($procedureResponse['reponse'])];
            }
    
    
            $informations = json_encode(['yousignFileId' => $fileId]);
            WorkflowExternalInformationModel::update(['set' => ['informations' => $informations], 'where' => ['workflow_id = ?'], 'data' => [$args['workflowId']]]);
    
            return true;
        }
    
        public function getByFileId(Request $request, Response $response, array $args)
        {
            $url = 'https://staging-api.yousign.com';
            $token = '';
    
            $workflow = WorkflowModel::get([
                'select' => [1],
                'where'  => ['main_document_id = ?', 'id = ?', 'status is null'],
                'data'   => [$args['id'], $args['workflowId']]
            ]);
            if (empty($workflow[0])) {
                return $response->withStatus(403)->withJson(['errors' => 'Workflow does not exist']);
            }
    
            $workflowExternalInformations = WorkflowExternalInformationModel::get(['select' => ['informations'], 'where' => ['workflow_id = ?'], 'data' => [$args['workflowId']]]);
            if (empty($workflowExternalInformations[0])) {
                return $response->withStatus(403)->withJson(['errors' => 'Workflow does not exist']);
            }
    
            $informations = json_decode($workflowExternalInformations[0]['informations'], true);
            if ($informations['yousignFileId'] != "/files/{$args['fileId']}") {
                return $response->withStatus(403)->withJson(['errors' => 'Unauthorized fileId']);
            }
    
            $fileResponse = CurlModel::exec([
                'url'           => "{$url}/files/{$args['fileId']}/download",
                'bearerAuth'    => ['token' => $token],
                'method'        => 'GET',
                'headers'       => ['content-type:application/json']
            ]);
            if ($fileResponse['code'] != 200) {
                return ['errors' => json_encode($fileResponse['reponse'])];
            }
    
            $storeInfos = DocserverController::storeResourceOnDocServer([
                'encodedFile'     => $fileResponse['reponse'],
                'format'          => 'pdf',
                'docserverType'   => 'DOC'
            ]);
            if (!empty($storeInfos['errors'])) {
                return $response->withStatus(500)->withJson(['errors' => $storeInfos['errors']]);
            }
    
            AdrModel::deleteDocumentAdr([
                'where' => ['main_document_id = ?', 'type = ?'],
                'data'  => [$args['id'], 'DOC']
            ]);
            AdrModel::createDocumentAdr([
                'documentId'    => $args['id'],
                'type'          => 'DOC',
                'path'          => $storeInfos['path'],
                'filename'      => $storeInfos['filename'],
                'fingerprint'   => $storeInfos['fingerprint']
            ]);
    
            DocumentController::endAction([
                'id'            => $args['id'],
                'workflowId'    => $workflow['id'],
                'status'        => DocumentController::ACTIONS[$args['actionId']],
                'note'          => $body['note'] ?? null
            ]);