-
Notifications
You must be signed in to change notification settings - Fork 1
/
instagram.class.php
executable file
·608 lines (537 loc) · 16.7 KB
/
instagram.class.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
<?php
/**
* Instagram API class
* API Documentation: http://instagram.com/developer/
* Class Documentation: https://github.com/cosenary/Instagram-PHP-API/tree/dev
*
* @author Christian Metz
* @since 30.10.2011
* @copyright Christian Metz - MetzWeb Networks 2011-2014
* @version 2.1
* @license BSD http://www.opensource.org/licenses/bsd-license.php
*
* 7 Feb 2014 edited by declan maher - added ability to set Tag to search for in config file. Added to constructor and setTagtoSearchFor and getTagtoSearchFor functions.
*
*/
class Instagram {
/**
* The API base URL
*/
const API_URL = 'https://api.instagram.com/v1/';
/**
* The API OAuth URL
*/
const API_OAUTH_URL = 'https://api.instagram.com/oauth/authorize';
/**
* The OAuth token URL
*/
const API_OAUTH_TOKEN_URL = 'https://api.instagram.com/oauth/access_token';
/**
* The Instagram API Key
*
* @var string
*/
private $_apikey;
/**
* The Instagram OAuth API secret
*
* @var string
*/
private $_apisecret;
/**
* The callback URL
*
* @var string
*/
private $_callbackurl;
/**
* The user access token
*
* @var string
*/
private $_accesstoken;
/**
* Available scopes
*
* @var array
*/
private $_scopes = array('basic', 'likes', 'comments', 'relationships');
/**
* The tag to search for (taken from config file)
*
* @var string
*/
private $_tagToSearchFor;
/**
* Available actions
*
* @var array
*/
private $_actions = array('follow', 'unfollow', 'block', 'unblock', 'approve', 'deny');
/**
* Default constructor
*
* @param array|string $config Instagram configuration data
* @return void
*/
public function __construct($config) {
if (true === is_array($config)) {
// if you want to access user data
$this->setApiKey($config['apiKey']);
$this->setApiSecret($config['apiSecret']);
$this->setApiCallback($config['apiCallback']);
$this->setTagtoSearchFor($config['tagtoSearchFor']);
} else if (true === is_string($config)) {
// if you only want to access public data
$this->setApiKey($config);
} else {
throw new Exception("Error: __construct() - Configuration data is missing.");
}
}
/**
* Generates the OAuth login URL
*
* @param array [optional] $scope Requesting additional permissions
* @return string Instagram OAuth login URL
*/
public function getLoginUrl($scope = array('basic')) {
if (is_array($scope) && count(array_intersect($scope, $this->_scopes)) === count($scope)) {
return self::API_OAUTH_URL . '?client_id=' . $this->getApiKey() . '&redirect_uri=' . $this->getApiCallback() . '&scope=' . implode('+', $scope) . '&response_type=code';
} else {
throw new Exception("Error: getLoginUrl() - The parameter isn't an array or invalid scope permissions used.");
}
}
/**
* Search for a user
*
* @param string $name Instagram username
* @param integer [optional] $limit Limit of returned results
* @return mixed
*/
public function searchUser($name, $limit = 0) {
return $this->_makeCall('users/search', false, array('q' => $name, 'count' => $limit));
}
/**
* Get user info
*
* @param integer [optional] $id Instagram user ID
* @return mixed
*/
public function getUser($id = 0) {
$auth = false;
if ($id === 0 && isset($this->_accesstoken)) { $id = 'self'; $auth = true; }
return $this->_makeCall('users/' . $id, $auth);
}
/**
* Get user activity feed
*
* @param integer [optional] $limit Limit of returned results
* @return mixed
*/
public function getUserFeed($limit = 0) {
return $this->_makeCall('users/self/feed', true, array('count' => $limit));
}
/**
* Get user recent media
*
* @param integer [optional] $id Instagram user ID
* @param integer [optional] $limit Limit of returned results
* @return mixed
*/
public function getUserMedia($id = 'self', $limit = 0) {
return $this->_makeCall('users/' . $id . '/media/recent', ($id === 'self'), array('count' => $limit));
}
/**
* Get the liked photos of a user
*
* @param integer [optional] $limit Limit of returned results
* @return mixed
*/
public function getUserLikes($limit = 0) {
return $this->_makeCall('users/self/media/liked', true, array('count' => $limit));
}
/**
* Get the list of users this user follows
*
* @param integer [optional] $id Instagram user ID
* @param integer [optional] $limit Limit of returned results
* @return mixed
*/
public function getUserFollows($id = 'self', $limit = 0) {
return $this->_makeCall('users/' . $id . '/follows', true, array('count' => $limit));
}
/**
* Get the list of users this user is followed by
*
* @param integer [optional] $id Instagram user ID
* @param integer [optional] $limit Limit of returned results
* @return mixed
*/
public function getUserFollower($id = 'self', $limit = 0) {
return $this->_makeCall('users/' . $id . '/followed-by', true, array('count' => $limit));
}
/**
* Get information about a relationship to another user
*
* @param integer $id Instagram user ID
* @return mixed
*/
public function getUserRelationship($id) {
return $this->_makeCall('users/' . $id . '/relationship', true);
}
/**
* Modify the relationship between the current user and the target user
*
* @param string $action Action command (follow/unfollow/block/unblock/approve/deny)
* @param integer $user Target user ID
* @return mixed
*/
public function modifyRelationship($action, $user) {
if (true === in_array($action, $this->_actions) && isset($user)) {
return $this->_makeCall('users/' . $user . '/relationship', true, array('action' => $action), 'POST');
}
throw new Exception("Error: modifyRelationship() | This method requires an action command and the target user id.");
}
/**
* Search media by its location
*
* @param float $lat Latitude of the center search coordinate
* @param float $lng Longitude of the center search coordinate
* @param integer [optional] $distance Distance in metres (default is 1km (distance=1000), max. is 5km)
* @param long [optional] $minTimestamp Media taken later than this timestamp (default: 5 days ago)
* @param long [optional] $maxTimestamp Media taken earlier than this timestamp (default: now)
* @return mixed
*/
public function searchMedia($lat, $lng, $distance = 1000, $minTimestamp = NULL, $maxTimestamp = NULL) {
return $this->_makeCall('media/search', false, array('lat' => $lat, 'lng' => $lng, 'distance' => $distance, 'min_timestamp' => $minTimestamp, 'max_timestamp' => $maxTimestamp));
}
/**
* Get media by its id
*
* @param integer $id Instagram media ID
* @return mixed
*/
public function getMedia($id) {
return $this->_makeCall('media/' . $id);
}
/**
* Get the most popular media
*
* @return mixed
*/
public function getPopularMedia() {
return $this->_makeCall('media/popular');
}
/**
* Search for tags by name
*
* @param string $name Valid tag name
* @return mixed
*/
public function searchTags($name) {
return $this->_makeCall('tags/search', false, array('q' => $name));
}
/**
* Get info about a tag
*
* @param string $name Valid tag name
* @return mixed
*/
public function getTag($name) {
return $this->_makeCall('tags/' . $name);
}
/**
* Get a recently tagged media
*
* @param string $name Valid tag name
* @param integer [optional] $limit Limit of returned results
* @return mixed
*/
public function getTagMedia($name, $auth=false, $params=null) {
return $this->_makeCall('tags/' . $name . '/media/recent', $auth, $params);
}
/**
* Get a list of users who have liked this media
*
* @param integer $id Instagram media ID
* @return mixed
*/
public function getMediaLikes($id) {
return $this->_makeCall('media/' . $id . '/likes', true);
}
/**
* Get a list of comments for this media
*
* @param integer $id Instagram media ID
* @return mixed
*/
public function getMediaComments($id) {
return $this->_makeCall('media/' . $id . '/comments', false);
}
/**
* Add a comment on a media
*
* @param integer $id Instagram media ID
* @param string $text Comment content
* @return mixed
*/
public function addMediaComment($id, $text) {
return $this->_makeCall('media/' . $id . '/comments', true, array('text' => $text), 'POST');
}
/**
* Remove user comment on a media
*
* @param integer $id Instagram media ID
* @param string $commentID User comment ID
* @return mixed
*/
public function deleteMediaComment($id, $commentID) {
return $this->_makeCall('media/' . $id . '/comments/' . $commentID, true, null, 'DELETE');
}
/**
* Set user like on a media
*
* @param integer $id Instagram media ID
* @return mixed
*/
public function likeMedia($id) {
return $this->_makeCall('media/' . $id . '/likes', true, null, 'POST');
}
/**
* Remove user like on a media
*
* @param integer $id Instagram media ID
* @return mixed
*/
public function deleteLikedMedia($id) {
return $this->_makeCall('media/' . $id . '/likes', true, null, 'DELETE');
}
/**
* Get information about a location
*
* @param integer $id Instagram location ID
* @return mixed
*/
public function getLocation($id) {
return $this->_makeCall('locations/' . $id, false);
}
/**
* Get recent media from a given location
*
* @param integer $id Instagram location ID
* @return mixed
*/
public function getLocationMedia($id) {
return $this->_makeCall('locations/' . $id . '/media/recent', false);
}
/**
* Get recent media from a given location
*
* @param float $lat Latitude of the center search coordinate
* @param float $lng Longitude of the center search coordinate
* @param integer [optional] $distance Distance in meter (max. distance: 5km = 5000)
* @return mixed
*/
public function searchLocation($lat, $lng, $distance = 1000) {
return $this->_makeCall('locations/search', false, array('lat' => $lat, 'lng' => $lng, 'distance' => $distance));
}
/**
* Pagination feature
*
* @param object $obj Instagram object returned by a method
* @param integer $limit Limit of returned results
* @return mixed
*/
public function pagination($obj, $limit = 0) {
if (true === is_object($obj) && !is_null($obj->pagination)) {
if (!isset($obj->pagination->next_url)) {
return;
}
$apiCall = explode('?', $obj->pagination->next_url);
if (count($apiCall) < 2) {
return;
}
$function = str_replace(self::API_URL, '', $apiCall[0]);
$auth = (strpos($apiCall[1], 'access_token') !== false);
if (isset($obj->pagination->next_max_id)) {
return $this->_makeCall($function, $auth, array('max_id' => $obj->pagination->next_max_id, 'count' => $limit));
} else {
return $this->_makeCall($function, $auth, array('cursor' => $obj->pagination->next_cursor, 'count' => $limit));
}
} else {
throw new Exception("Error: pagination() | This method doesn't support pagination.");
}
}
/**
* Get the OAuth data of a user by the returned callback code
*
* @param string $code OAuth2 code variable (after a successful login)
* @param boolean [optional] $token If it's true, only the access token will be returned
* @return mixed
*/
public function getOAuthToken($code, $token = false) {
$apiData = array(
'grant_type' => 'authorization_code',
'client_id' => $this->getApiKey(),
'client_secret' => $this->getApiSecret(),
'redirect_uri' => $this->getApiCallback(),
'code' => $code
);
$result = $this->_makeOAuthCall($apiData);
return (false === $token) ? $result : $result->access_token;
}
/**
* The call operator
*
* @param string $function API resource path
* @param array [optional] $params Additional request parameters
* @param boolean [optional] $auth Whether the function requires an access token
* @param string [optional] $method Request type GET|POST
* @return mixed
*/
protected function _makeCall($function, $auth = false, $params = null, $method = 'GET') {
if (false === $auth) {
// if the call doesn't requires authentication
$authMethod = '?client_id=' . $this->getApiKey();
} else {
// if the call needs an authenticated user
if (true === isset($this->_accesstoken)) {
$authMethod = '?access_token=' . $this->getAccessToken();
} else {
throw new Exception("Error: _makeCall() | $function - This method requires an authenticated users access token.");
}
}
if (isset($params) && is_array($params)) {
$paramString = '&' . http_build_query($params);
} else {
$paramString = null;
}
$apiCall = self::API_URL . $function . $authMethod . (('GET' === $method) ? $paramString : null);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $apiCall);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept: application/json'));
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
if ('POST' === $method) {
curl_setopt($ch, CURLOPT_POST, count($params));
curl_setopt($ch, CURLOPT_POSTFIELDS, ltrim($paramString, '&'));
} else if ('DELETE' === $method) {
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
}
$jsonData = curl_exec($ch);
if (false === $jsonData) {
throw new Exception("Error: _makeCall() - cURL error: " . curl_error($ch));
}
curl_close($ch);
return json_decode($jsonData);
}
/**
* The OAuth call operator
*
* @param array $apiData The post API data
* @return mixed
*/
private function _makeOAuthCall($apiData) {
$apiHost = self::API_OAUTH_TOKEN_URL;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $apiHost);
curl_setopt($ch, CURLOPT_POST, count($apiData));
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($apiData));
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept: application/json'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$jsonData = curl_exec($ch);
if (false === $jsonData) {
throw new Exception("Error: _makeOAuthCall() - cURL error: " . curl_error($ch));
}
curl_close($ch);
return json_decode($jsonData);
}
/**
* Access Token Setter
*
* @param object|string $data
* @return void
*/
public function setAccessToken($data) {
(true === is_object($data)) ? $token = $data->access_token : $token = $data;
$this->_accesstoken = $token;
}
/**
* Access Token Getter
*
* @return string
*/
public function getAccessToken() {
return $this->_accesstoken;
}
/**
* API-key Setter
*
* @param string $apiKey
* @return void
*/
public function setApiKey($apiKey) {
$this->_apikey = $apiKey;
}
/**
* API Key Getter
*
* @return string
*/
public function getApiKey() {
return $this->_apikey;
}
/**
* API Secret Setter
*
* @param string $apiSecret
* @return void
*/
public function setApiSecret($apiSecret) {
$this->_apisecret = $apiSecret;
}
/**
* API Secret Getter
*
* @return string
*/
public function getApiSecret() {
return $this->_apisecret;
}
/**
* Tag to Search For Setter
*
* @param string $apiKey
* @return void
*/
public function setTagtoSearchFor($tag) {
$this->_tagToSearchFor = $tag;
}
/**
* Tag to Search For Getter
*
* @return string
*/
public function getTagtoSearchFor() {
return $this->_tagToSearchFor;
}
/**
* API Callback URL Setter
*
* @param string $apiCallback
* @return void
*/
public function setApiCallback($apiCallback) {
$this->_callbackurl = $apiCallback;
}
/**
* API Callback URL Getter
*
* @return string
*/
public function getApiCallback() {
return $this->_callbackurl;
}
}