-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.php
486 lines (392 loc) · 12.9 KB
/
api.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
<?php
require 'vendor/autoload.php';
use GuzzleHttp\Client;
use Ramsey\Uuid\Uuid;
use \Firebase\JWT\JWT;
$API_MIN_VERSION = "1.5.5.0";
class SmashdocsError extends Exception
{
}
class CreationFailed extends SmashdocsError
{
}
class UploadError extends SmashdocsError
{
}
class UnarchiveError extends SmashdocsError
{
}
class ArchiveError extends SmashdocsError
{
}
class ReviewError extends SmashdocsError
{
}
class DeletionError extends SmashdocsError
{
}
class CopyError extends SmashdocsError
{
}
class DocumentInfoError extends SmashdocsError
{
}
class UpdateMetadataError extends SmashdocsError
{
}
class OpenError extends SmashdocsError
{
}
class ExportError extends SmashdocsError
{
}
class GetDocumentsError extends SmashdocsError
{
}
function ends_with($string, $test)
{
$strlen = strlen($string);
$testlen = strlen($test);
if ($testlen > $strlen) return false;
return substr_compare($string, $test, $strlen - $testlen, $testlen) === 0;
}
function check_role($role)
{
$allowed_sd_roles = array('editor', 'reader', 'approver', 'commentator');
if (!in_array($role, $allowed_sd_roles)) {
throw new Exception('Unkown Smashdocs role: ' . $role);
}
}
function check_length($s, $max_len)
{
if (strlen($s) > $max_len) {
throw new Exception('String too long');
}
}
function check_title($s)
{
return check_length($s, 200);
}
function check_description($s)
{
return check_length($s, 400);
}
/* Check Email */
function check_email($s)
{
/* Check Email */
return check_length($s, 150);
}
function check_firstname($s)
{
return check_length($s, 150);
}
function check_lastname($s)
{
return check_length($s, 150);
}
function check_company($s)
{
return check_length($s, 150);
}
function check_document_id($document_id)
{
}
function check_user_data($ud)
{
}
class Smashdocs
{
function __construct($portal_url, $client_id, $client_key, $group_id = 'default', $verbose = 0)
{
$this->partner_url = $portal_url;
$this->client_id = $client_id;
$this->client_key = $client_key;
$this->group_id = $group_id;
$this->verbose = $verbose;
}
private function gen_token($user_id=null)
{
if ($user_id != null) {
$iss = $user_id;
} else {
$iss = Uuid::uuid4();
}
$iat = time();
$jti = Uuid::uuid4();
$jwt_payload = array(
"iat" => $iat,
"iss" => $iss,
"jti" => $jti,
);
$jwt = new JWT;
$token = $jwt->encode($jwt_payload, $this->client_key, "HS256");
return $token;
}
private function standard_headers($user_id=null)
{
return array(
"x-client-id" => $this->client_id,
"content-type" => "application/json",
"authorization" => "Bearer " . $this->gen_token($user_id),
);
}
private function check_http_response($response, $status_code_expected = 200, $exc_name = 'SmashdocsError', $decode_json = true)
{
global $API_MIN_VERSION;
$httpcode = $response->getStatusCode();
if ($httpcode != $status_code_expected) {
$msg = 'HTTP call returned with status ' . $httpcode . ' (expected: ' . $status_code_expected . ', ' . $out . ')';
$exc = new $exc_name($msg);
$exc->status_code_got = $httpcode;
$exc->status_code_expected = $status_code_expected;
$exc->error_msg = $out;
throw $exc;
}
$api_version = $response->getHeader('X-Api-Version');
if (count($api_version) > 0 ) {
$api_version = $api_version[0];
if (version_compare($api_version, $API_MIN_VERSION, '<')) {
$msg = "Partner API version too old: " . $api_version . ", expected minimal: " . $API_MIN_VERSION;
throw new SmashdocsError($msg);
}
}
if ($decode_json) {
return json_decode($response->getBody());
} else {
return $response->getBody();
}
}
public function get_documents($group_id = null, $user_id = null)
{
$data = array();
if ($group_id)
$data["groupId"] = $group_id;
if ($user_id)
$data["userId"] = $user_id;
$url = $this->partner_url . "/partner/documents/list";
$client = new Client();
$response = $client->get($url, array('debug' => $this->verbose, 'headers' => $this->standard_headers()));
return (array)$this->check_http_response($response, 200, 'GetDocumentsError', true);
}
public function list_templates()
{
$url = $this->partner_url . "/partner/templates/word";
$client = new Client();
$response = $client->get($url, array(
'debug' => $this->verbose,
'headers' => $this->standard_headers()
));
return (array)$this->check_http_response($response, 200, 'OpenError', true);
}
function delete_document($documentId)
{
check_document_id($documentId);
$url = $this->partner_url . "/partner/documents/" . $documentId;
$client = new Client();
try {
$response = $client->delete($url, array(
'debug' => $this->verbose,
'headers' => $this->standard_headers()
));
} catch (Exception $e) {
throw new DeletionError($e->getMessage());
}
return $this->check_http_response($response, 200, 'DeletionError', false);
}
function open_document($documentId, $role = 'editor', array $user_data = null)
{
check_role($role);
check_document_id($documentId);
check_user_data($user_data);
$data = array(
"user" => $user_data,
"groupId" => $this->group_id,
"userRole" => $role,
"sectionHistory" => true
);
$url = $this->partner_url . "/partner/documents/" . $documentId;
$client = new Client();
$response = $client->post($url, array(
'debug' => $this->verbose,
'json' => $data,
'headers' => $this->standard_headers()
));
return (array)$this->check_http_response($response, 200, 'OpenError', true);
}
function archive_document($documentId)
{
$url = $this->partner_url . "/partner/documents/" . $documentId . "/archive";
$client = new Client();
$response = $client->post($url, array(
'debug' => $this->verbose,
'headers' => $this->standard_headers()
));
return (array)$this->check_http_response($response, 200, 'ArchiveError', true);
}
function review_document($documentId)
{
$url = $this->partner_url . "/partner/documents/" . $documentId . "/review";
$client = new Client();
$response = $client->post($url, array(
'debug' => $this->verbose,
'headers' => $this->standard_headers()
));
return (array)$this->check_http_response($response, 200, 'ReviewError', true);
}
function update_metadata($documentId, array $metadata = null)
{
check_document_id($documentId);
$url = $this->partner_url . "/partner/documents/" . $documentId . "/metadata";
$client = new Client();
$response = $client->post($url, array(
'debug' => $this->verbose,
'json' => $metadata,
'headers' => $this->standard_headers()
));
}
function document_info($documentId)
{
check_document_id($documentId);
$url = $this->partner_url . "/partner/documents/" . $documentId;
$client = new Client();
$response = $client->get($url, array(
'debug' => $this->verbose,
'headers' => $this->standard_headers()
));
return (array)$this->check_http_response($response, 200, 'DocumentInfoError', true);
}
function unarchive_document($documentId)
{
check_document_id($documentId);
$url = $this->partner_url . "/partner/documents/" . $documentId . "/unarchive";
$client = new Client();
$response = $client->post($url, array(
'debug' => $this->verbose,
'headers' => $this->standard_headers()
));
return (array)$this->check_http_response($response, 200, 'UnarchiveError', true);
}
function export_document($documentId, $user_id, $format, $template_id = '', $settings=null)
{
check_document_id($documentId);
if (!in_array($format, array('docx', 'html', 'sdxml'))) {
throw new SmashdocsError('Unknown export format ' . $format);
}
$data = array(
"userId" => $user_id,
);
if ($format == 'sdxml') {
$url = $this->partner_url . '/partner/documents/' . $documentId . '/export/sdxml';
} elseif ($format == 'html') {
$url = $this->partner_url . '/partner/documents/' . $documentId . '/export/html';
$data['mode'] = 'final';
} elseif ($format == 'docx') {
$url = $this->partner_url . '/partner/documents/' . $documentId . '/export/word';
$data['templateId'] = $template_id;
if ($settings != null) {
$data['settings'] = $settings;
} else {
$data['settings'] = (object)array();
}
}
$client = new Client();
$response = $client->post($url, array(
'debug' => $this->verbose,
'json' => $data,
'headers' => $this->standard_headers($user_id)
));
$out = $this->check_http_response($response, 200, 'ExportError', false);
$fn = tempnam(sys_get_temp_dir(), '');
if ($format == 'docx') {
$fn = $fn . '.docx';
} else {
$fn = $fn . '.' . $format . '.zip';
}
$fp = fopen($fn, "wb");
fwrite($fp, $out);
fclose($fp);
return $fn;
}
function new_document($title = null, $description = null, $role = 'editor', array $user_data = null)
{
check_title($title);
check_description($title);
check_role($role);
check_user_data($user_data);
$data = array(
"user" => $user_data,
"title" => $title,
"description" => $description,
"groupId" => $this->group_id,
"userRole" => $role,
"sectionHistory" => true
);
$url = $this->partner_url . "/partner/documents/create";
$client = new Client();
$response = $client->post($url, array(
'debug' => $this->verbose,
'json' => $data,
'headers' => $this->standard_headers()
));
return (array)$this->check_http_response($response, 200, 'CreationFailed', true);
}
function duplicate_document($document_id, $title = null, $description = null, $creator_id = null)
{
check_title($title);
check_description($title);
$data = array(
"description" => $description,
"title" => $title,
"creatorUserId" => $creator_id
);
$url = $this->partner_url . "/partner/documents/" . $document_id . "/duplicate";
$client = new Client();
$response = $client->post($url, array(
'debug' => $this->verbose,
'json' => $data,
'headers' => $this->standard_headers()
));
return (array)$this->check_http_response($response, 200, 'DuplicationFailed', true);
}
function upload_document($fn, $title = null, $description = null, $role = 'editor', array $user_data = null)
{
$headers = array(
"x-client-id" => $this->client_id,
"authorization" => "Bearer " . $this->gen_token()
);
$data = array(
"user" => $user_data,
"title" => $title,
"description" => $description,
"groupId" => $this->group_id,
"userRole" => $role,
"sectionHistory" => true
);
if (ends_with($fn, '.docx')) {
$url = $this->partner_url . "/partner/imports/word/upload";
} else {
$url = $this->partner_url . "/partner/imports/sdxml/upload";
}
$client = new Client();
$fp = fopen($fn, 'rb');
$response = $client->post($url, array(
'debug' => $this->verbose,
'headers' => $headers,
'multipart' => array(
array(
'name' => 'data',
'contents' => json_encode($data),
'headers' => array('content-type' => 'application/json')
),
array(
'name' => 'file',
'Content-type' => 'multipart/form-data',
'contents' => $fp
)
)
));
return (array)$this->check_http_response($response, 200, 'UploadError', true);
}
}
?>