This repository has been archived by the owner on Dec 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
EpiFoursquare.php
261 lines (229 loc) · 7.65 KB
/
EpiFoursquare.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
<?php
/*
* Class to integrate with Foursquare's API.
* Authenticated calls are done using OAuth and require access tokens for a user.
* API calls which do not require authentication do not require tokens
*
* Full documentation available on github
* http://wiki.github.com/jmathai/foursquare-async
*
* @author Jaisen Mathai <jaisen@jmathai.com>
*/
class EpiFoursquare
{
protected $clientId, $clientSecret, $accessToken;
protected $requestTokenUrl= 'https://foursquare.com/oauth2/authenticate';
protected $accessTokenUrl = 'https://foursquare.com/oauth2/access_token';
protected $authorizeUrl = 'https://foursquare.com/oauth2/authorize';
protected $apiUrl = 'https://api.foursquare.com';
protected $userAgent = 'EpiFoursquare (http://github.com/jmathai/foursquare-async/tree/)';
protected $apiVersion = 'v2';
protected $apiParams = array('v' => '20131016');
protected $isAsynchronous = false;
protected $followLocation = false;
protected $connectionTimeout = 5;
protected $requestTimeout = 30;
protected $debug = false;
public function getAccessToken($code, $redirectUri)
{
$params = array('client_id' => $this->clientId, 'client_secret' => $this->clientSecret, 'grant_type' => 'authorization_code', 'redirect_uri' => $redirectUri, 'code' => $code);
$qs = http_build_query($params);
return $this->request('GET', "{$this->accessTokenUrl}", $params);
}
public function getAuthorizeUrl($redirectUri)
{
$params = array('client_id' => $this->clientId, 'response_type' => 'code', 'redirect_uri' => $redirectUri);
$qs = http_build_query($params);
return "{$this->requestTokenUrl}?{$qs}";
}
public function setAccessToken($accessToken)
{
$this->accessToken = $accessToken;
}
public function setTimeout($requestTimeout = null, $connectionTimeout = null)
{
if($requestTimeout !== null)
$this->requestTimeout = floatval($requestTimeout);
if($connectionTimeout !== null)
$this->connectionTimeout = floatval($connectionTimeout);
}
public function setUserAgent($agent)
{
$this->userAgent = $agent;
}
public function useApiVersion($version = null)
{
$this->apiVersion = $version;
}
public function useAsynchronous($async = true)
{
$this->isAsynchronous = (bool)$async;
}
// Public api interface for most calls GET/POST/DELETE
public function delete($endpoint, $params = null)
{
return $this->request('DELETE', $endpoint, $params);
}
public function get($endpoint, $params = null)
{
return $this->request('GET', $endpoint, $params);
}
public function post($endpoint, $params = null)
{
return $this->request('POST', $endpoint, $params);
}
public function __construct($clientId = null, $clientSecret = null, $accessToken = null)
{
$this->clientId = $clientId;
$this->clientSecret = $clientSecret;
$this->accessToken = $accessToken;
}
private function getApiUrl($endpoint)
{
if(!empty($this->apiVersion))
return "{$this->apiUrl}/{$this->apiVersion}{$endpoint}";
else
return "{$this->apiUrl}{$endpoint}";
}
private function request($method, $endpoint, $params = null)
{
$params = array_merge((array)$params, $this->apiParams);
if(preg_match('#^https?://#', $endpoint))
$url = $endpoint;
else
$url = $this->getApiUrl($endpoint);
if($this->accessToken)
{
$params['oauth_token'] = $this->accessToken;
}
else
{
$params['client_id'] = $this->clientId;
$params['client_secret'] = $this->clientSecret;
}
if($method === 'GET')
$url .= is_null($params) ? '' : '?'.http_build_query($params, '', '&');
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_USERAGENT, $this->userAgent);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, $this->requestTimeout);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
if(isset($_SERVER ['SERVER_ADDR']) && !empty($_SERVER['SERVER_ADDR']) && $_SERVER['SERVER_ADDR'] != '127.0.0.1')
curl_setopt($ch, CURLOPT_INTERFACE, $_SERVER ['SERVER_ADDR']);
if($method === 'POST' && $params !== null)
{
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
}
$resp = new EpiFoursquareJson(EpiCurl::getInstance()->addCurl($ch), $this->debug);
if(!$this->isAsynchronous)
$resp->responseText;
return $resp;
}
}
class EpiFoursquareJson implements ArrayAccess, Countable, IteratorAggregate
{
private $debug;
private $__resp;
public function __construct($response, $debug = false)
{
$this->__resp = $response;
$this->debug = $debug;
}
// ensure that calls complete by blocking for results, NOOP if already returned
public function __destruct()
{
$this->responseText;
}
// Implementation of the IteratorAggregate::getIterator() to support foreach ($this as $...)
public function getIterator ()
{
if ($this->__obj) {
return new ArrayIterator($this->__obj);
} else {
return new ArrayIterator($this->response);
}
}
// Implementation of Countable::count() to support count($this)
public function count ()
{
return count($this->response);
}
// Next four functions are to support ArrayAccess interface
// 1
public function offsetSet($offset, $value)
{
$this->response[$offset] = $value;
}
// 2
public function offsetExists($offset)
{
return isset($this->response[$offset]);
}
// 3
public function offsetUnset($offset)
{
unset($this->response[$offset]);
}
// 4
public function offsetGet($offset)
{
return isset($this->response[$offset]) ? $this->response[$offset] : null;
}
public function __get($name)
{
$accessible = array('responseText'=>1,'headers'=>1,'code'=>1);
$this->responseText = $this->__resp->data;
$this->headers = $this->__resp->headers;
$this->code = $this->__resp->code;
if(isset($accessible[$name]) && $accessible[$name])
return $this->$name;
elseif(($this->code < 200 || $this->code >= 400) && !isset($accessible[$name]))
EpiFoursquareException::raise($this->__resp, $this->debug);
// Call appears ok so we can fill in the response
$this->response = json_decode($this->responseText, 1);
$this->__obj = json_decode($this->responseText);
if(gettype($this->__obj) === 'object')
{
foreach($this->__obj as $k => $v)
{
$this->$k = $v;
}
}
if (property_exists($this, $name)) {
return $this->$name;
}
return null;
}
public function __isset($name)
{
$value = self::__get($name);
return !empty($name);
}
}
class EpiFoursquareException extends Exception
{
public static function raise($response, $debug)
{
$message = $response->data;
switch($response->code)
{
case 400:
throw new EpiFoursquareBadRequestException($message, $response->code);
case 401:
throw new EpiFoursquareNotAuthorizedException($message, $response->code);
case 403:
throw new EpiFoursquareForbiddenException($message, $response->code);
case 404:
throw new EpiFoursquareNotFoundException($message, $response->code);
default:
throw new EpiFoursquareException($message, $response->code);
}
}
}
class EpiFoursquareBadRequestException extends EpiFoursquareException{}
class EpiFoursquareNotAuthorizedException extends EpiFoursquareException{}
class EpiFoursquareForbiddenException extends EpiFoursquareException{}
class EpiFoursquareNotFoundException extends EpiFoursquareException{}