-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathJotForm.php
709 lines (628 loc) · 28 KB
/
JotForm.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
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
<?php
/**
* JotForm API - PHP Client
*
* @copyright 2013 Interlogy, LLC.
* @link http://www.jotform.com
* @version 1.0
* @package JotFormAPI
*/
class JotForm {
public $baseURL = 'https://api.jotform.com';
private $apiKey;
private $debugMode;
private $outputType;
private $apiVersion = 'v1';
public function __construct($apiKey = '', $outputType = 'json', $debugMode = false) {
$this->apiKey = $apiKey;
$this->debugMode = $debugMode;
$this->outputType = strtolower($outputType);
$user = $this->getUser();
# set base url for EU users
if (isset($user['euOnly'])) {
$this->baseURL = 'https://eu-api.jotform.com';
}
}
public function __get($property) {
if (property_exists($this, $property)) {
return $this->$property;
}
}
public function __set($property, $value) {
if (property_exists($this, $property)) {
$this->$property = $value;
}
}
private function debugLog($str) {
if ($this->debugMode) {
print_r(PHP_EOL);
print_r($str);
}
}
private function debugDump($obj) {
if ($this->debugMode) {
print_r(PHP_EOL);
var_dump($obj);
}
}
private function executeHttpRequest($path, $method, $params = []) {
if ($this->outputType != 'json') {
$path = "{$path}.xml";
}
$url = implode('/', [$this->baseURL, $this->apiVersion, $path]);
$this->debugDump($params);
if ($method == 'GET' && $params != null) {
$params_array = [];
foreach ($params as $key => $value) {
$params_array[] = "{$key}={$value}";
}
$params_string = '?' . implode('&', $params_array);
unset($params_array);
$url = $url . $params_string;
$this->debugLog('params string: ' . $params_string);
}
$this->debugLog('fetching url: ' . $url);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, 'JOTFORM_PHP_WRAPPER');
curl_setopt($ch, CURLOPT_HTTPHEADER, ['APIKEY: ' . $this->apiKey]);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
switch ($method) {
case 'POST':
$this->debugLog('posting');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
break;
case 'PUT':
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
break;
case 'DELETE':
$this->debugLog('delete');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
break;
}
$result = curl_exec($ch);
if ($result == false) {
throw new Exception(curl_error($ch), 400);
}
$http_status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$this->debugLog('http code is: ' . $http_status);
if ($this->outputType == 'json') {
$result_obj = json_decode($result, true);
} else {
$result_obj = utf8_decode($result);
}
if ($http_status != 200) {
switch ($http_status) {
case 400:
case 403:
case 404:
throw new JotFormException($result_obj["message"], $http_status);
break;
case 401:
throw new JotFormException("Invalid API key or Unauthorized API call", $http_status);
break;
case 503:
throw new JotFormException("Service is unavailable, rate limits etc exceeded!", $http_status);
break;
default:
throw new JotFormException($result_obj["info"], $http_status);
break;
}
}
curl_close($ch);
if ($this->outputType == 'json') {
if (isset($result_obj['content'])) {
return $result_obj['content'];
} else {
return $result_obj;
}
} else {
return $result_obj;
}
}
private function executeGetRequest($url, $params = []) {
return $this->executeHttpRequest($url, 'GET', $params);
}
private function executePostRequest($url, $params) {
return $this->executeHttpRequest($url, 'POST', $params);
}
private function executePutRequest($url, $params) {
return $this->executeHttpRequest($url, 'PUT', $params);
}
private function executeDeleteRequest($url, $params = []) {
return $this->executeHttpRequest($url, 'DELETE', $params);
}
private function createConditions($offset, $limit, $filter, $orderby) {
$params = [];
foreach (['offset', 'limit', 'filter', 'orderby'] as $arg) {
if (${$arg}) {
$params[strtolower($arg)] = ${$arg};
if ($arg == "filter") {
$params[$arg] = urlencode(json_encode($params[$arg]));
}
}
}
return $params;
}
private function createHistoryQuery($action, $date, $sortBy, $startDate, $endDate) {
foreach (['action', 'date', 'sortBy', 'startDate', 'endDate'] as $arg) {
if (${$arg}) {
$params[$arg] = ${$arg};
}
}
return $params;
}
/**
* [getUser Get user account details for a JotForm user]
* @return [array] [Returns user account type, avatar URL, name, email, website URL and account limits.]
*/
public function getUser() {
$res = $this->executeGetRequest('user');
return $res;
}
/**
* [getUserUsage Get number of form submissions received this month]
* @return [array] [Returns number of submissions, number of SSL form submissions, payment form submissions and upload space used by user.]
*/
public function getUsage(){
return $this->executeGetRequest('user/usage');
}
/**
* [getForms Get a list of forms for this account]
* @param [integer] $offset [Start of each result set for form list. (optional)]
* @param [integer] $limit [Number of results in each result set for form list. (optional)]
* @param [array] $filter [Filters the query results to fetch a specific form range.(optional)]
* @param [string] $orderBy [Order results by a form field name. (optional)]
* @return [array] [Returns basic details such as title of the form, when it was created, number of new and total submissions.]
*/
public function getForms($offset = 0, $limit = 0, $filter = null, $orderby = null) {
$params = $this->createConditions($offset, $limit, $filter, $orderby);
return $this->executeGetRequest('user/forms', $params);
}
/**
* [getSubmissions Get a list of submissions for this account]
* @param [int] $offset [Start of each result set for form list. (optional)]
* @param [int] $limit [Number of results in each result set for form list. (optional)]
* @param [array] $filter [Filters the query results to fetch a specific form range.(optional)]
* @param [string] $orderBy [Order results by a form field name. (optional)]
* @return [array] [Returns basic details such as title of the form, when it was created, number of new and total submissions.]
*/
public function getSubmissions($offset = 0, $limit = 0, $filter = null, $orderby = null) {
$params = $this->createConditions($offset, $limit, $filter, $orderby);
return $this->executeGetRequest('user/submissions', $params);
}
/**
* [getUserSubusers Get a list of sub users for this account]
* @return [array] [Returns list of forms and form folders with access privileges.]
*/
public function getSubusers() {
return $this->executeGetRequest('user/subusers');
}
/**
* [getUserFolders Get a list of form folders for this account]
* @return [array] [Returns name of the folder and owner of the folder for shared folders.]
*/
public function getFolders() {
return $this->executeGetRequest('user/folders');
}
/**
* [getReports List of URLS for reports in this account]
* @return [array] [Returns reports for all of the forms. ie. Excel, CSV, printable charts, embeddable HTML tables.]
*/
public function getReports() {
return $this->executeGetRequest('user/reports');
}
/**
* [getSettings Get user's settings for this account]
* @return [array] [Returns user's time zone and language.]
*/
public function getSettings() {
return $this->executeGetRequest('user/settings');
}
/**
* [updateSettings Update user's settings]
* @param [array] $settings [New user setting values with setting keys]
* @return [array] [Returns changes on user settings]
*/
public function updateSettings($settings) {
return $this->executePostRequest('user/settings', $settings);
}
/**
* [getHistory Get user activity log]
* @param [enum] $action [Filter results by activity performed. Default is 'all'.]
* @param [enum] $date [Limit results by a date range. If you'd like to limit results by specific dates you can use startDate and endDate fields instead.]
* @param [enum] $sortBy [Lists results by ascending and descending order.]
* @param [string] $startDate [Limit results to only after a specific date. Format: MM/DD/YYYY.]
* @param [string] $endDate [Limit results to only before a specific date. Format: MM/DD/YYYY.]
* @return [array] [Returns activity log about things like forms created/modified/deleted, account logins and other operations.]
*/
public function getHistory($action = null, $date = null, $sortBy = null, $startDate = null, $endDate = null) {
$params = $this->createHistoryQuery($action, $date, $sortBy, $startDate, $endDate);
return $this->executeGetRequest('user/history', $params);
}
/**
* [getForm Get basic information about a form.]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @return [array] [Returns form ID, status, update and creation dates, submission count etc.]
*/
public function getForm($formID) {
return $this->executeGetRequest('form/' . $formID);
}
/**
* [getFormQuestions Get a list of all questions on a form.]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @return [array] [Returns question properties of a form.]
*/
public function getFormQuestions($formID) {
return $this->executeGetRequest("form/{$formID}/questions");
}
/**
*[getFormQuestion Get details about a question]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [integer] $qid [Identifier for each question on a form. You can get a list of question IDs from /form/{id}/questions.]
* @return [array] [Returns question properties like required and validation.]
*/
public function getFormQuestion($formID, $qid) {
return $this->executeGetRequest("form/{$formID}/question/{$qid}");
}
/**
* [getFormSubmissions List of a form submissions]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [int] $offset [Start of each result set for form list. (optional)]
* @param [int] $limit [Number of results in each result set for form list. (optional)]
* @param [array] $filter [Filters the query results to fetch a specific form range.(optional)]
* @param [string] $orderBy [Order results by a form field name. (optional)]
* @return [array] [Returns submissions of a specific form.]
*/
public function getFormSubmissions($formID, $offset = 0, $limit = 0, $filter = null, $orderby = null) {
$params = $this->createConditions($offset, $limit, $filter, $orderby);
return $this->executeGetRequest("form/{$formID}/submissions", $params);
}
/**
* [createFormSubmissions Submit data to this form using the API]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [array] $submission [Submission data with question IDs.]
* @return [array] [Returns posted submission ID and URL.]
*/
public function createFormSubmission($formID, $submission) {
$sub = [];
foreach ($submission as $key => $value) {
if (strpos($key, '_')) {
$qid = substr($key, 0, strpos($key, '_'));
$type = substr($key, strpos($key, '_') + 1);
$sub["submission[{$qid}][{$type}]"] = $value;
} else {
$sub["submission[{$key}]"] = $value;
}
}
return $this->executePostRequest("form/{$formID}/submissions", $sub);
}
/**
* [createFormSubmissions Submit data to this form using the API]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [json] $submissions [Submission data with question IDs.]
* @return [array]
*/
public function createFormSubmissions($formID, $submissions) {
return $this->executePutRequest("form/" . $formID . "/submissions", $submissions);
}
/**
* [getFormFiles List of files uploaded on a form]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @return [array] [Returns uploaded file information and URLs on a specific form.]
*/
public function getFormFiles($formID) {
return $this->executeGetRequest("form/{$formID}/files");
}
/**
* [getFormWebhooks Get list of webhooks for a form]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @return [array] [Returns list of webhooks for a specific form.]
*/
public function getFormWebhooks($formID) {
return $this->executeGetRequest("form/{$formID}/webhooks");
}
/**
* [createFormWebhook Add a new webhook]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [string] $webhookURL [Webhook URL is where form data will be posted when form is submitted.]
* @return [array] [Returns list of webhooks for a specific form.]
*/
public function createFormWebhook($formID, $webhookURL) {
return $this->executePostRequest("form/{$formID}/webhooks", ['webhookURL' => $webhookURL]);
}
/**
* [deleteFormWebhook] [Delete a specific webhook of a form.]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [integer] $webhookID [You can get webhook IDs when you call /form/{formID}/webhooks.]
* @return [array] [Returns remaining webhook URLs of form.]
*/
public function deleteFormWebhook($formID, $webhookID) {
return $this->executeDeleteRequest("form/{$formID}/webhooks/{$webhookID}", null);
}
/**
* [getSubmission Get submission data]
* @param [integer] $sid [You can get submission IDs when you call /form/{id}/submissions.]
* @return [array] [Returns information and answers of a specific submission.]
*/
public function getSubmission($sid) {
return $this->executeGetRequest("submission/{$sid}");
}
/**
* [getReport Get report details]
* @param [integer] $reportID [You can get a list of reports from /user/reports.]
* @return [array] [Returns properties of a speceific report like fields and status.]
*/
public function getReport($reportID) {
return $this->executeGetRequest("report/{$reportID}");
}
/**
* [getFolder Get folder details]
* @param [integer] $folderID [You can get a list of folders from /user/folders.]
* @return [array] [Returns a list of forms in a folder, and other details about the form such as folder color.]
*/
public function getFolder($folderID) {
return $this->executeGetRequest("folder/{$folderID}");
}
/**
* [createFolder Create a folder]
* @param [array] $folderProperties [Properties of new folder.]
* @return [array] [New folder.]
*/
public function createFolder($folderProperties) {
return $this->executePostRequest('folder', $folderProperties);
}
/**
* [deleteFolder Delete a specific folder and its subfolders]
* @param [string] $folderID [You can get a list of folders from /user/folders.]
* @return [array] [Returns status of request.]
*/
public function deleteFolder($folderID) {
return $this->executeDeleteRequest("folder/{$folderID}", null);
}
/**
* [updateFolder Update a specific folder]
* @param [string] $folderID [You can get a list of folders from /user/folders.]
* @param [json] $folderProperties [New properties of the specified folder.]
* @return [array] [Returns status of request.]
*/
public function updateFolder($folderID, $folderProperties) {
return $this->executePutRequest("folder/{$folderID}", $folderProperties);
}
/**
* [addFormsToFolder Add forms to the specified folder]
* @param [string] $folderID [You can get the list of folders from /user/folders.]
* @param [array] $formIDs [You can get the list of forms from /user/forms.]
* @return [array] [Returns status of request.]
*/
public function addFormsToFolder($folderID, $formIDs) {
$formattedFormIDs = json_encode(["forms" => $formIDs]);
return $this->updateFolder($folderID, $formattedFormIDs);
}
/**
* [addFormToFolder Add a form to the specified folder]
* @param [string] $folderID [You can get the list of folders from /user/folders.]
* @param [string] $formID [You can get the list of forms from /user/forms.]
* @return [array] [Returns status of request.]
*/
public function addFormToFolder($folderID, $formID) {
$formattedFormID = json_encode(["forms" => [$formID]]);
return $this->updateFolder($folderID, $formattedFormID);
}
/**
* [getFormProperties Get a list of all properties on a form]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @return [array] [Returns form properties like width, expiration date, style etc.]
*/
public function getFormProperties($formID) {
return $this->executeGetRequest("form/{$formID}/properties");
}
/**
* [getFormProperty Get a specific property of the form]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [string] $propertyKey [You can get property keys when you call /form/{id}/properties.]
* @return [array] [Returns given property key value.]
*/
public function getFormProperty($formID, $propertyKey) {
return $this->executeGetRequest("form/{$formID}/properties/{$propertyKey}");
}
/**
* [getFormReports Get all the reports of a form, such as excel, csv, grid, html, etc.]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @return [array] [Returns a list of reports in a form, and other details about the reports such as title.]
*/
public function getFormReports($formID) {
return $this->executeGetRequest("form/{$formID}/reports");
}
/**
* [createReport Create new report of a form]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [array] $report [Report details. List type, title etc.]
* @return [array] [Returns report details and URL.]
*/
public function createReport($formID, $report) {
return $this->executePostRequest("form/{$formID}/reports", $report);
}
/**
* [deleteSubmission Delete a single submission]
* @param [integer] $sid [You can get submission IDs when you call /user/submissions.]
* @return [array] [Returns status of request.]
*/
public function deleteSubmission($sid) {
return $this->executeDeleteRequest("submission/{$sid}");
}
/**
* [editSubmission Edit a single submission]
* @param [integer] $sid [You can get submission IDs when you call /form/{id}/submissions.]
* @param [array] $submission [New submission data with question IDs.]
* @return [array] [Returns status of request.]
*/
public function editSubmission($sid, $submission) {
$sub = [];
foreach ($submission as $key => $value) {
if (strpos($key, '_') && $key != 'created_at') {
$qid = substr($key, 0, strpos($key, '_'));
$type = substr($key, strpos($key, '_') + 1);
$sub["submission[{$qid}][{$type}]"] = $value;
} else {
$sub["submission[{$key}]"] = $value;
}
}
return $this->executePostRequest("submission/" . $sid, $sub);
}
/**
* [cloneForm Clone a single form]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @return [array] [Returns status of request.]
*/
public function cloneForm($formID) {
return $this->executePostRequest("form/{$formID}/clone", null);
}
/**
* [deleteFormQuestion Delete a single form question]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [integer] $qid [Identifier for each question on a form. You can get a list of question IDs from /form/{id}/questions.]
* @return [array] [Returns status of request.]
*/
public function deleteFormQuestion($formID, $qid) {
return $this->executeDeleteRequest("form/{$formID}/question/{$qid}", null);
}
/**
* [createFormQuestion Add new question to specified form]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [array] $question [New question properties like type and text.]
* @return [array] [Returns properties of new question.]
*/
public function createFormQuestion($formID, $question) {
$params = [];
foreach ($question as $key => $value) {
$params["question[{$key}]"] = $value;
}
return $this->executePostRequest("form/{$formID}/questions", $params);
}
/**
* [createFormQuestions Add new questions to specified form]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [json] $questions [New question properties like type and text.]
* @return [array] [Returns properties of new questions.]
*/
public function createFormQuestions($formID, $questions) {
return $this->executePutRequest("form/{$formID}/questions", $questions);
}
/**
* [editFormQuestion Add or edit a single question properties]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [integer] $qid [Identifier for each question on a form. You can get a list of question IDs from /form/{id}/questions.]
* @param [array] $questionProperties [New question properties like text and order.]
* @return [array] [Returns edited property and type of question.]
*/
public function editFormQuestion($formID, $qid, $questionProperties) {
$question = [];
foreach ($questionProperties as $key => $value) {
$question["question[{$key}]"] = $value;
}
return $this->executePostRequest("form/{$formID}/question/{$qid}", $question);
}
/**
* [setFormProperties Add or edit properties of a specific form]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [array] $formProperties [New properties like label width.]
* @return [array] [Returns edited properties.]
*/
public function setFormProperties($formID, $formProperties) {
$properties = [];
foreach ($formProperties as $key => $value) {
$properties["properties[{$key}]"] = $value;
}
return $this->executePostRequest("form/{$formID}/properties", $properties);
}
/**
*[setMultipleFormProperties Add or edit properties of a specific form]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @param [json] $formProperties [New properties like label width.]
* @return [array] [Returns edited properties.]
*/
public function setMultipleFormProperties($formID, $formProperties) {
return $this->executePutRequest("form/{$formID}/properties", $formProperties);
}
/**
* [createForm Create a new form]
* @param [array] $form [Questions, properties and emails of new form.]
* @return [array] [Returns new form.]
*/
public function createForm($form) {
$params = [];
foreach ($form as $key => $value) {
foreach ($value as $k => $v) {
if ($key == "properties") {
$params["{$key}[{$k}]"] = $v;
} else {
foreach ($v as $a => $b) {
$params["{$key}[{$k}][{$a}]"] = $b;
}
}
}
}
return $this->executePostRequest('user/forms', $params);
}
/**
* [createForm Create new forms]
* @param [json] $form [Questions, properties and emails of forms.]
* @return [array] [Returns new forms.]
*/
public function createForms($forms) {
return $this->executePutRequest('user/forms', $forms);
}
/**
* [deleteForm Delete a specific form]
* @param [integer] $formID [Form ID is the numbers you see on a form URL. You can get form IDs when you call /user/forms.]
* @return [array] [Returns roperties of deleted form.]
*/
public function deleteForm($formID) {
return $this->executeDeleteRequest("form/{$formID}", null);
}
/**
* [registerUser Register with username, password and email]
* @param [array] $userDetails [username, password and email to register a new user]
* @return [array] [Returns new user's details]
*/
public function registerUser($userDetails) {
return $this->executePostRequest('user/register', $userDetails);
}
/**
* [loginUser Login user with given credentials]
* @param [array] $credentials [Username, password, application name and access type of user]
* @return [array] [Returns logged in user's settings and app key.]
*/
public function loginUser($credentials) {
return $this->executePostRequest('user/login', $credentials);
}
/**
* [logoutUser Logout User]
* @return [array] [Status of request]
*/
public function logoutUser() {
return $this->executeGetRequest('user/logout');
}
/**
* [getPlan Get details of a plan]
* @param [string] $planName [Name of the requested plan. FREE, PREMIUM etc.]
* @return [array] [Returns details of a plan]
*/
public function getPlan($planName) {
return $this->executeGetRequest("system/plan/{$planName}");
}
/**
* [deleteReport Delete a specific report]
* @param [integer] $reportID [You can get a list of reports from /user/reports.]
* @return [array] [Returns status of request.]
*/
public function deleteReport($reportID) {
return $this->executeDeleteRequest("report/{$reportID}", null);
}
}
class JotFormException extends Exception {
}