Newer
Older
<?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 Workflow\models\WorkflowExternalInformationModel;
use Workflow\models\WorkflowModel;
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
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'])];
}
91
92
93
94
95
96
97
98
99
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
$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
]);