d0416d23b70a701e7c12b884bd947d4c670cc50e
Bernd Wurst JSON-API-Routine für http.n...

Bernd Wurst authored 6 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
5) Written 2008-2018 by schokokeks.org Hosting, namely
6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst JSON-API-Routine für http.n...

Bernd Wurst authored 6 years ago

12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
16) 
17) require_once('inc/debug.php');
18) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

19) function api_request($method, $input_data)
Bernd Wurst JSON-API-Routine für http.n...

Bernd Wurst authored 6 years ago

20) {
21)     $url = config('http.net-apiurl').'domain/v1/json/'.$method;
22)     $input_data['authToken'] = config('http.net-apikey');
23)     DEBUG('======= API REQUEST ==========');
24)     DEBUG($url);
25)     DEBUG($input_data);
26)     $curl = curl_init($url);
27)     $json = json_encode($input_data);
28)     curl_setopt($curl, CURLOPT_POST, 1);
29)     curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
30)     curl_setopt($curl, CURLOPT_POSTFIELDS, $json);
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

31)     curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
Bernd Wurst JSON-API-Routine für http.n...

Bernd Wurst authored 6 years ago

32)     $result = curl_exec($curl);
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

33)     if ($result === false) {