-
Notifications
You must be signed in to change notification settings - Fork 10
/
firebaseLib.php
executable file
·214 lines (197 loc) · 4.74 KB
/
firebaseLib.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
<?php
/**
* Firebase PHP Client Library
*
* @author Tamas Kalman <ktamas77@gmail.com>
* @link https://www.firebase.com/docs/rest-api.html
*
*/
/**
* Firebase PHP Class
*
* @author Tamas Kalman <ktamas77@gmail.com>
* @link https://www.firebase.com/docs/rest-api.html
*
*/
class Firebase
{
private $_baseURI;
private $_timeout;
private $_token;
/**
* Constructor
*
* @param String $baseURI Base URI
*
* @return void
*/
function __construct($baseURI = '', $token = '')
{
if (!extension_loaded('curl')) {
trigger_error('Extension CURL is not loaded.', E_USER_ERROR);
}
$this->setBaseURI($baseURI);
$this->setTimeOut(10);
$this->setToken($token);
}
/**
* Sets Token
*
* @param String $token Token
*
* @return void
*/
public function setToken($token)
{
$this->_token = $token;
}
/**
* Sets Base URI, ex: http://yourcompany.firebase.com/youruser
*
* @param String $baseURI Base URI
*
* @return void
*/
public function setBaseURI($baseURI)
{
$baseURI .= (substr($baseURI, -1) == '/' ? '' : '/');
$this->_baseURI = $baseURI;
}
/**
* Returns with the normalized JSON absolute path
*
* @param String $path to data
*/
private function _getJsonPath($path)
{
$url = $this->_baseURI;
$path = ltrim($path, '/');
$auth = ($this->_token == '') ? '' : '?auth=' . $this->_token;
return $url . $path . '.json' . $auth;
}
/**
* Sets REST call timeout in seconds
*
* @param Integer $seconds Seconds to timeout
*
* @return void
*/
public function setTimeOut($seconds)
{
$this->_timeout = $seconds;
}
/**
* Writing data into Firebase with a PUT request
* HTTP 200: Ok
*
* @param String $path Path
* @param Mixed $data Data
*
* @return Array Response
*/
public function set($path, $data)
{
return $this->_writeData($path, $data, 'PUT');
}
/**
* Pushing data into Firebase with a POST request
* HTTP 200: Ok
*
* @param String $path Path
* @param Mixed $data Data
*
* @return Array Response
*/
public function push($path, $data)
{
return $this->_writeData($path, $data, 'POST');
}
/**
* Updating data into Firebase with a PATH request
* HTTP 200: Ok
*
* @param String $path Path
* @param Mixed $data Data
*
* @return Array Response
*/
public function update($path, $data)
{
return $this->_writeData($path, $data, 'PATCH');
}
/**
* Reading data from Firebase
* HTTP 200: Ok
*
* @param String $path Path
*
* @return Array Response
*/
public function get($path)
{
try {
$ch = $this->_getCurlHandler($path, 'GET');
$return = curl_exec($ch);
curl_close($ch);
} catch (Exception $e) {
$return = null;
}
return $return;
}
/**
* Deletes data from Firebase
* HTTP 204: Ok
*
* @param type $path Path
*
* @return Array Response
*/
public function delete($path)
{
try {
$ch = $this->_getCurlHandler($path, 'DELETE');
$return = curl_exec($ch);
curl_close($ch);
} catch (Exception $e) {
$return = null;
}
return $return;
}
/**
* Returns with Initialized CURL Handler
*
* @param String $mode Mode
*
* @return CURL Curl Handler
*/
private function _getCurlHandler($path, $mode)
{
$url = $this->_getJsonPath($path);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_TIMEOUT, $this->_timeout);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $this->_timeout);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $mode);
return $ch;
}
private function _writeData($path, $data, $method = 'PUT')
{
$jsonData = json_encode($data);
$header = array(
'Content-Type: application/json',
'Content-Length: ' . strlen($jsonData)
);
try {
$ch = $this->_getCurlHandler($path, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonData);
$return = curl_exec($ch);
curl_close($ch);
} catch (Exception $e) {
$return = null;
}
return $return;
}
}