-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pingen.php
668 lines (609 loc) · 20 KB
/
Pingen.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
487
488
489
490
491
492
493
494
495
496
497
498
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
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
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
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
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
<?php
/**
* A class to use the API of pingen.com as an integrator (Version 1.05)
*
* For more information about Pingen and how to use it as an integrator see
* https://pingen.com/en/customer/integrator/Briefversand-für-Integratoren.html
*
* API documentation can be found here:
* https://www.pingen.com/en/developer.html
*
*
* Copyright (c) 2013, Pingen GmbH
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the <organization> nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* @link https://www.pingen.com/en/developer.html
*/
class Pingen
{
/**
* @constant string Production Mode
*/
const MODE_PRODUCTION = 1;
/**
* @constant string Staging/Development Mode
*/
const MODE_STAGING = 2;
/**
* @constant string Library-Version
*/
const VERSION = 1.05;
/**
* @constant string Print in Black & White
*/
const PRINT_BLACK = 0;
/**
* @constant string Print in color
*/
const PRINT_COLOR = 1;
/**
* @constant string Sending speed priority
*/
const SPEED_PRIORITY = 1;
/**
* @constant string Sending speed economy
*/
const SPEED_ECONOMY = 2;
/**
* @var string Base URL of Pingen API
*/
protected $sBaseURL = '';
/**
* @var string Auth token
*/
private $sToken;
/**
* Constructor of class
*
* @param string $sToken Auth token
* @param integer $iMode Production or Staging Environment
*/
public function __construct($sToken, $iMode = self::MODE_PRODUCTION)
{
$this->sToken = $sToken;
switch($iMode)
{
case self::MODE_PRODUCTION:
$this->sBaseURL = 'https://api.pingen.com';
break;
case self::MODE_STAGING:
$this->sBaseURL = 'https://stage-api.pingen.com';
break;
default:
throw new Exception('The specified mode does not exist');
break;
}
}
/**
* You can list your available documents
*
* See https://www.pingen.com/en/developer/endpoints-documents.html
*
* @param int $iLimit Limit the amount of results
* @param int $iPage When limiting the results, specifies page
* @param string $sSort Sorts the list by the available values
* @param string $sSortType Defines the way of sorting
* @param string $aFilter Set of filters for list
* @return object
*/
public function document_list($iLimit = 0, $iPage = 1, $sSort = 'date', $sSortType = 'desc', $aFilter = array())
{
return $this->execute("document/list/limit/$iLimit/page/$iPage/sort/$sSort/sorttype/$sSortType" . $this->parse_filters($aFilter));
}
/**
* Get information about a specific document
*
* See https://www.pingen.com/en/developer/endpoints-documents.html for available options
*
* @param int $iDocumentId
* @return object
*/
public function document_get($iDocumentId)
{
return $this->execute("document/get/id/$iDocumentId");
}
/**
* Download a specific document as pdf
*
* See https://www.pingen.com/en/developer/endpoints-documents.html for available options
*
* @param int $iDocumentId
* @return application/pdf
*/
public function document_pdf($iDocumentId)
{
return $this->execute("document/pdf/id/$iDocumentId");
}
/**
* Preview a specific document as png
*
* See https://www.pingen.com/en/developer/endpoints-documents.html for available options
*
* @param int $iDocumentId Document id
* @param int $iPage Number of page that will be grabbed
* @param int $iSize Withd of preview
* @return image/png
*/
public function document_preview($iDocumentId, $iPage = 1, $iSize = 595)
{
return $this->execute("document/preview/id/$iDocumentId/page/$iPage/size/$iSize");
}
/**
* Delete a specific document
*
* @param int $iDocumentId
* @return object
*/
public function document_delete($iDocumentId)
{
return $this->execute("document/delete/id/$iDocumentId");
}
/**
* Send a specific document
*
* See https://www.pingen.com/en/developer/endpoints-documents.html for available options
*
* @param int $iDocumentId
* @param int $iSpeed
* @param int $iColor
* @return object
*/
public function document_send($iDocumentId, $iSpeed = self::SPEED_PRIORITY, $iColor = self::PRINT_COLOR)
{
$aData = array('speed' => $iSpeed, 'color' => $iColor);
return $this->execute("document/send/id/$iDocumentId", $aData);
}
/**
* Upload a new file (and optionally send it right away)
*
* See https://www.pingen.com/en/developer/endpoints-documents.html for available options
*
* @param string $sFile
* @param int $iSend
* @param int $iSpeed
* @param int $iColor
* @return object
*/
public function document_upload($sFile, $iSend = 0, $iSpeed = self::SPEED_PRIORITY, $iColor = self::PRINT_COLOR)
{
$aOptions = array('send' => $iSend, 'speed' => $iSpeed, 'color' => $iColor);
return $this->execute('document/upload', $aOptions, $sFile);
}
/**
* You can list your available letters
*
* See https://www.pingen.com/en/developer/endpoints-letters.html
*
* @param int $iLimit Limit the amount of results
* @param int $iPage When limiting the results, specifies page
* @param string $sSort Sorts the list by the available values
* @param string $sSortType Defines the way of sorting
* @param string $aFilter Set of filters for list
* @return object
*/
public function letter_list($iLimit = 0, $iPage = 1, $sSort = 'date', $sSortType = 'desc', $aFilter = array())
{
return $this->execute("letter/list/limit/$iLimit/page/$iPage/sort/$sSort/sorttype/$sSortType" . $this->parse_filters($aFilter));
}
/**
* You can get your letter object
*
* See https://www.pingen.com/en/developer/endpoints-letters.html
*
* @param int $iLetterId The Id of the letter
* @return object
*/
public function letter_get($iLetterId)
{
return $this->execute("letter/get/id/$iLetterId");
}
/**
* You can add new letter
*
* See https://www.pingen.com/en/developer/endpoints-letters.html
*
* @param array $aData Body parameters
* @return object
*/
public function letter_add($aData)
{
return $this->execute("letter/add", $aData);
}
/**
* You can edit letter
*
* See https://www.pingen.com/en/developer/endpoints-letters.html
*
* @param int $iLetterId The id of the letter
* @param array $aData Body Parameters
* @return object
*/
public function letter_edit($iLetterId, $aData)
{
return $this->execute("letter/edit/id/$iLetterId", $aData);
}
/**
* You can get letter preview
*
* See https://www.pingen.com/en/developer/endpoints-letters.html
*
* @param int $iLetterId The id of the letter
* @param int $iPage The page of the letter to grab as preview
* @param int $iSize The width of preview
* @return application/image
*/
public function letter_preview($iLetterId, $iPage = 1, $iSize = 595)
{
return $this->execute("letter/preview/id/$iLetterId/page/$iPage/size/$iSize");
}
/**
* You can get letter as pdf
*
* See https://www.pingen.com/en/developer/endpoints-letters.html
*
* @param int $iLetterId The id of the letter
* @return application/pdf
*/
public function letter_pdf($iLetterId)
{
return $this->execute("letter/pdf/id/$iLetterId");
}
/**
* You can send letter
*
* See https://www.pingen.com/en/developer/endpoints-letters.html
*
* @param int $iLetterId The id of the letter
* @param int $iSpeed
* @param int $iColor
* @return object
*/
public function letter_send($iLetterId, $iSpeed = self::SPEED_PRIORITY, $iColor = self::PRINT_COLOR)
{
$aData = array('speed' => $iSpeed, 'color' => $iColor);
return $this->execute("letter/send/id/$iLetterId", $aData);
}
/**
* You can delete letter
*
* See https://www.pingen.com/en/developer/endpoints-letters.html
*
* @param int $iLetterId The id of the letter
* @return object
*/
public function letter_delete($iLetterId)
{
return $this->execute("letter/delete/id/$iLetterId");
}
/**
* You can list your available post sends
*
* See https://www.pingen.com/en/developer/endpoints-send.html
*
* @param int $iLimit Limit the amount of results
* @param int $iPage When limiting the results, specifies page
* @param string $sSort Sorts the list by available values
* @param string $sSortType Defines the way of sorting
* @param string $aFilter Set of filters for list
* @return object
*/
public function send_list($iLimit = 0, $iPage = 1, $sSort = 'date', $sSortType = 'desc', $aFilter = array())
{
return $this->execute("send/list/limit/$iLimit/page/$iPage/sort/$sSort/sorttype/$sSortType" . $this->parse_filters($aFilter));
}
/**
* You can get your send object
*
* See https://www.pingen.com/en/developer/endpoints-send.html
*
* @param int $iSendId The Id of the post sending
* @return object
*/
public function send_get($iSendId)
{
return $this->execute("send/get/id/$iSendId");
}
/**
* Retreive your send confirmation document
*
* See https://www.pingen.com/en/developer/endpoints-send.html
*
* @param int $iSendId The Id of the post sending
* @return object
*/
public function send_confirmation($iSendId)
{
return $this->execute("send/confirmation/id/$iSendId");
}
/**
* Cancel your sending
*
* See https://www.pingen.com/en/developer/endpoints-send.html
*
* @param int $iSendId The Id of the post sending
* @return object
*/
public function send_cancel($iSendId)
{
return $this->execute("send/cancel/id/$iSendId");
}
/**
* Track your sending if possible
*
* See https://www.pingen.com/en/developer/endpoints-send.html
*
* @param int $iSendId The Id of the post sending
* @return object
*/
public function send_track($iSendId)
{
return $this->execute("send/track/id/$iSendId");
}
/**
* Get the available speeds for a country or list of countries
*
* See https://www.pingen.com/en/developer/endpoints-send.html
*
* @param mixed $mCountries The country (ISO2) or array of countries
* @return object
*/
public function send_speed($mCountries)
{
if (!is_array($mCountries))
{
$mCountries = array($mCountries);
}
return $this->execute("send/speed/countries/" . implode(',', $mCountries));
}
/**
* You can list your queue
*
* See https://www.pingen.com/en/developer/endpoints-queue.html
*
* @param int $iLimit Limit the amount of results
* @param int $iPage When limiting the results, specifies page
* @param string $sSort Sorts the list by available values
* @param string $sSortType Defines the way of sorting
* @param string $aFilter Set of filters for list
* @return object
*/
public function queue_list($iLimit = 0, $iPage = 1, $sSort = 'date', $sSortType = 'desc', $aFilter = array())
{
return $this->execute("queue/list/limit/$iLimit/page/$iPage/sort/$sSort/sorttype/$sSortType" . $this->parse_filters($aFilter));
}
/**
* You can get your queue
*
* See https://www.pingen.com/en/developer/endpoints-queue.html
*
* @param int $iQueueId The Id of the queue entry
* @return object
*/
public function queue_get($iQueueId)
{
return $this->execute("queue/get/id/$iQueueId");
}
/**
* You can cancel a pending queue entry
*
* See https://www.pingen.com/en/developer/endpoints-queue.html
*
* @param int $iQueueId The Id of the queue entry
* @param array $aData Body Parameters
* @return object
*/
public function queue_cancel($iQueueId, $aData = array())
{
return $this->execute("queue/cancel/id/$iQueueId", $aData);
}
/**
* You can list your available contacts
*
* See https://www.pingen.com/en/developer/endpoints-contacts.html
*
* @param int $iLimit Limit the amount of results
* @param int $iPage When limiting the results, specifies page
* @param string $sSort Sorts the list by available values
* @param string $sSortType Defines the way of sorting
* @param string $aFilter Set of filters for list
* @return object
*/
public function contact_list($iLimit = 0, $iPage = 1, $sSort = 'id', $sSortType = 'desc', $aFilter = array())
{
return $this->execute("contact/list/limit/$iLimit/page/$iPage/sort/$sSort/sorttype/$sSortType" . $this->parse_filters($aFilter));
}
/**
* You can get your document
*
* See https://www.pingen.com/en/developer/endpoints-contacts.html
*
* @param int $iContactId The Id of the contact
* @return object
*/
public function contact_get($iContactId)
{
return $this->execute("contact/get/id/$iContactId");
}
/**
* You can add new contact
*
* See https://www.pingen.com/en/developer/endpoints-contacts.html
*
* @param array $aData Body parameters
* @return object
*/
public function contact_add($aData)
{
return $this->execute("contact/add", $aData);
}
/**
* You can edit new contact
*
* See https://www.pingen.com/en/developer/endpoints-contacts.html
*
* @param int $iContactId The Id of the contact
* @param array $aData Body parameters
* @return object
*/
public function contact_edit($iContactId, $aData)
{
return $this->execute("contact/edit/id/$iContactId", $aData);
}
/**
* You can delete a contact
*
* See https://www.pingen.com/en/developer/endpoints-contacts.html
*
* @param int $iContactId The Id of the contact
* @return object
*/
public function contact_delete($iContactId)
{
return $this->execute("contact/delete/id/$iContactId");
}
/**
* You can calculate fax sending
*
* @param string $sNumber Fax number starting with country code and plus at beginning
* @param int $iPages Number of pages per document
* @param int $iDocuments Number of documents
* @param string $sCurrency Currency of calculation
* @return object
*/
public function calculator_fax($sNumber, $iPages = 1, $iDocuments = 1, $sCurrency = 'CHF')
{
return $this->execute("calculator/fax/number/" . urlencode($sNumber) . "/pages/$iPages/documents/$iDocuments/currency/$sCurrency");
}
/**
* You can calculate post sending
*
* @param string $sCountry Country code for sending
* @param int $iSpeed Speed option for normal/express
* @param int $iPrint Print option for black/color
* @param int $iDocuments Number of documents
* @param int $iPagesNormal Number of normal pages
* @param int $iPagesESR Number of ESR pages
* @param int $iPlan Your plan
* @param string $sCurrency Currency of payment
* @return object
*/
public function calculator_post($sCountry = 'CH', $iSpeed = self::SPEED_PRIORITY, $iPrint = self::PRINT_COLOR, $iDocuments = 1, $iPagesNormal = 1, $iPagesESR = 0, $iPlan = 1, $sCurrency = 'CHF')
{
return $this->execute("calculator/get/country/$sCountry/print/$iPrint/speed/$iSpeed/plan/$iPlan/documents/$iDocuments/currency/$sCurrency/pages_normal/$iPagesNormal/pages_esr/$iPagesESR");
}
/**
* Grabbing your current credit value
*
* @return object
*/
public function account_credit()
{
return $this->execute("account/credit");
}
/**
* Grabbing your actual plan
*
* @return object
*/
public function account_plan()
{
return $this->execute("account/plan");
}
/**
* @param string $sKeyword
* @param array $aBodyParameters
* @param string $sFile
*
* @return object
*/
private function execute($sKeyword, $aBodyParameters = array(), $sFile = false)
{
/* put together parameters */
$aData = array();
$aData['data'] = json_encode($aBodyParameters);
if ($sFile) $aData['file'] = '@' . $sFile;
/* prepare URL */
$aURLParts = array(
$this->sBaseURL,
$sKeyword,
'token',
$this->sToken
);
$sURL = implode('/', $aURLParts);
/* data may not be empty */
if (isset($aData['data']) && (count(json_decode($aData['data'])) == 0 || $aData['data'] == ''))
{
unset($aData['data']);
}
$objCurlConn = curl_init();
curl_setopt($objCurlConn, CURLOPT_URL, $sURL);
curl_setopt($objCurlConn, CURLOPT_POST, 1);
curl_setopt($objCurlConn, CURLOPT_POSTFIELDS, $aData);
curl_setopt($objCurlConn, CURLOPT_RETURNTRANSFER, 1);
/*
* If you are having issues with invalid certificate you could optionally uncomment
* these following two lines (not recommended)
* The alternative would be to update your CA Root Certificate Bundle.
*/
// curl_setopt($objCurlConn, CURLOPT_SSL_VERIFYHOST, 0);
// curl_setopt($objCurlConn, CURLOPT_SSL_VERIFYPEER, 0);
$mResponse = curl_exec($objCurlConn);
if ($mResponse===FALSE)
{
throw new Exception('An error occured with the curl connection: ' . curl_error($objCurlConn));
}
/* if PDF or Image, output plain result */
if (substr($mResponse, 0, 4)=='%PDF' || substr($mResponse, 1, 3)=='PNG')
{
return $mResponse;
}
$objResponse = json_decode($mResponse);
if ($objResponse->error)
{
throw new Exception($objResponse->errormessage, $objResponse->errorcode);
}
else
{
return $objResponse;
}
}
private function parse_filters($aFilters)
{
$aSets = array();
foreach ($aFilters as $sFilter => $sValue)
{
$aSets[] = "{$sFilter}:{$sValue}";
}
$sFilter = implode(';', $aSets);
if ($sFilter)
{
return "/filter/$sFilter";
}
else
{
return '';
}
}
}