-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonicliving.php
637 lines (582 loc) · 16.2 KB
/
sonicliving.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
<?php
/**
* The SonicLiving API PHP Library
* @author Butch Ewing - http://butchewing.com
* @version 0.02
*
* The SonicLiving API requires an API key and is available for both commercial and non-commercial use.
* V1 API Documentation can be found at http://sonicliving.com/apiv1
* V2 API Documentation, API Keys, and Usage Policies can be found at http://sonicliving.com/api_home
*
**/
if ( ! class_exists( 'SonicLiving' ) )
{
class SonicLiving
{
protected $api_key;
protected $v1_api_endpoint = "https://api.sonicliving.com/api/";
protected $v2_api_endpoint = "https://api.sonicliving.com/v2/";
protected $user_agent = "Sonic Living PHP Library v0.02";
/**
* Sets the API for the Instance of the Class
*
* @param apikey = required, string - Your SonicLiving API Key
*
* @return API Key
*
**/
public function setAPI( $apikey )
{
$this->api_key = $apikey;
}
/**
* Gets the API for the current instance of the Class. Good for debugging
*
* @return API Key
*
**/
public function getAPI()
{
return $this->api_key;
}
/**
* Basic Curl Method
*
* @param url = required, URL — The URL to call the API
*
* @return JSON Decoded String
*
**/
private function _curl( $url )
{
$ch = curl_init( $url );
$options = array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_USERAGENT => $this->user_agent
);
curl_setopt_array( $ch, $options );
ob_start();
$response = curl_exec( $ch );
$responseInfo = curl_getinfo( $ch );
ob_end_clean();
curl_close( $ch );
unset( $ch );
if ( $responseInfo['http_code'] == 200 )
{
$entries = json_decode( $response );
return $entries;
}
else
{
throw new Exception( "Request was returned with a failing httpCode: " . $responseInfo['http_code'] );
}
}
/**
* v2 API » event/get
* Retrieve details for a specific event
* Given an event ID, this call returns all the details it can (such as images, description, and related venues).
* For multiple events, a maximum of 100 records is returned.
* @example http://api.sonicliving.com/v2/event/get?key=mykey&event_id=100&host_info=foo&offset=10
*
* HTTP method: GET
* @param event_id = required, one or more integers — The event ID(s)
* @param host_info = optional, boolean — Whether to display host info (default false)
* @param offset = optional, integer — The number of rows to skip in the result set
*
* @return JSON Decoded String
*
**/
public function eventGet( $event_id, $host_info=NULL, $offset=NULL )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "event/get?key=" . $this->api_key . "&" . $event_id;
if ( $host_info )
{
$url .= "&host_info=" . $host_info;
}
if ( $offset )
{
$url .= "&offset=" . $offset;
}
return $this->_curl( $url );
}
}
/**
* v2 API » event/popular
* Return the most popular events
* @example http://api.sonicliving.com/v2/event/popular?key=mykey&sort=foo
*
* HTTP method: GET
* @param sort = optional, string — The list order valid values are 'date' or 'popular' (default 'popular')
*
* @return JSON Decoded String
*
**/
public function eventPopular( $sort=NULL )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "event/popular?key=" . $this->api_key;
if ( $sort )
{
$url .= "&sort=" . $sort;
}
return $this->_curl( $url );
}
}
/**
* v2 API » event/popular_by_ip
* Return the most popular events
* @example http://api.sonicliving.com/v2/event/popular_by_ip?key=mykey&ip_address=foo&latitude=foo&longitude=foo&sort=foo&limit=10
*
* HTTP method: GET
* @param ip_address = optional, ip — The IP Address
* @param latitude = optional, float — The Latitude
* @param longitude = optional, float — The Longitude
* @param sort = optional, string — The list order valid values are 'date' or 'popular' (default 'popular')
* @param limit = optional, integer — Limit the number of records returned (default / maximum: '25')
*
* @return JSON Decoded String
*
**/
public function eventPopularByIp( $ip_address=NULL, $latitude=NULL, $longitude=NULL, $sort=NULL, $limit=NULL )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "event/popular_by_ip?key=" . $this->api_key;
if ( $ip_address )
{
$url .= "&ip_address=" . $ip_address;
}
if ( $latitude )
{
$url .= "&sort=" . $sort;
}
if ( $longitude )
{
$url .= "&longitude=" . $longitude;
}
if ( $sort )
{
$url .= "&sort=" . $sort;
}
if ( $limit )
{
$url .= "&limit=" . $limit;
}
return $this->_curl( $url );
}
}
/**
* v2 API » event/ursvp
* Return the URSVP count for an event
* @example http://api.sonicliving.com/v2/event/ursvp?key=mykey&event_id=100
*
* HTTP method: GET
* @param event_id = required, integer — The event ID
*
* @return JSON Decoded String
*
**/
public function eventUrsvp( $event_id )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "event/ursvp?key=" . $this->api_key . "&" . $event_id;
return $this->_curl( $url );
}
}
/**
* v2 API » location/locate
* Given an IP address or postal code, return the nearest location
* @example http://api.sonicliving.com/v2/location/locate?key=mykey&postalcode=94103&ip_address=foo&latitude=foo&longitude=foo&radius=foo
*
* HTTP method: GET
* @param postalcode = one-of, string — The ZIP or postal code to match
* @param ip_address = one-of, ip — The IP address to match
* @param latitude = one-of, float — The latitude from HTML5
* @param longitude = one-of, float — the longitude from HTML5
* @param radius = optional, integer — The radius to match (in miles)
*
* @return JSON Decoded String
*
**/
public function locationLocate( $postalcode=NULL, $ip_address=NULL, $latitude=NULL, $longitude=NULL, $radius=NULL )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "location/locate?key=" . $this->api_key;
if ( $postalcode )
{
$url .= "&postalcode=" . $postalcode;
}
if ( $ip_address )
{
$url .= "&ip_address=" . $ip_address;
}
if ( $latitude )
{
$url .= "&sort=" . $sort;
}
if ( $longitude )
{
$url .= "&longitude=" . $longitude;
}
if ( $radius )
{
$url .= "&radius=" . $radius;
}
return $this->_curl( $url );
}
}
/**
* v2 API » location/recognize
* Return all matching locations based on name
* @example http://api.sonicliving.com/v2/location/recognize?key=mykey&search=foo
*
* HTTP method: GET
* @param search = required, string — The text to look for when performing a full or partial location-name search
*
* @return JSON Decoded String
*
**/
public function locationRecognize( $search )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "location/recognize?key=" . $this->api_key . "&search=" . $search;
return $this->_curl( $url );
}
}
/**
* v2 API » performer/get
* Fetch the details of a given performer
* @example http://api.sonicliving.com/v2/performer/get?key=mykey&performer_id=100&performer_guid=foo&host_id=100
*
* HTTP method: GET
* @param performer_id = one-of, one or more integers — The performer ID
* @param performer_guid = one-of, one or more strings — The performer GUID
* @param host_id = optional, integer — The host to restrict the results to (useful for GUID-based calls)
*
* @return JSON Decoded String
*
**/
public function performerGet( $performer_id=NULL, $performer_guid=NULL, $host_id=NULL )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "performer/get?key=" . $this->api_key;
if ( $performer_id )
{
$url .= "&performer_id=" . $performer_id;
}
if ( $performer_guid )
{
$url .= "&performer_guid=" . $performer_guid;
}
if ( $host_id )
{
$url .= "&host_id=" . $host_id;
}
return $this->_curl( $url );
}
}
/**
* v2 API » performer/recognize
* Return the best performer match based on name
* @example http://api.sonicliving.com/v2/performer/recognize?key=mykey&search=foo
*
* HTTP method: GET
* @param search = required, string — Return the best performer match based on name
*
* @return JSON Decoded String
*
**/
public function performerRecognize( $search )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$find = array( "'", " ", "/", "?", "&" );
$replace = array( "%27", "%20", "%252", "%252", "and" );
$search = str_replace( $find, $replace, $search );
$url = $this->v2_api_endpoint . "performer/recognize?key=" . $this->api_key . "&search=" . $search;
return $this->_curl( $url );
}
}
/**
* v2 API » performer/search
* Generate a list based on a search key
* @example http://api.sonicliving.com/v2/performer/search?key=mykey&search=foo&host_id=100
*
* HTTP method: GET
* @param search = required, string — Return any performers whose name matches this string
* @param host_id = optional, one or more integers — Restrict the results to specific host ID(s)
*
* @return JSON Decoded String
*
**/
public function performerSearch( $search, $host_id=NULL )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "performer/search?key=" . $this->api_key . "&search=" . $performer_id;
if ( $host_id )
{
$url .= "&host_id=" . $host_id;
}
return $this->_curl( $url );
}
}
/**
* v2 API » performer/upcoming
* Given a performer ID, return upcoming events
* @example http://api.sonicliving.com/v2/performer/upcoming?key=mykey&performer_id=100
*
* HTTP method: GET
* @param performer_id = required, one or more integers — The performer ID(s)
*
* @return JSON Decoded String
*
**/
public function performerUpcoming( $performer_id )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "performer/upcoming?key=" . $this->api_key . "&performer_id=" . $performer_id;
return $this->_curl( $url );
}
}
/**
* v2 API » reflection/methods
* Show all available methods for the given API key
* @example http://api.sonicliving.com/v2/reflection/methods?key=mykey
*
* HTTP method: GET
*
* @return JSON Decoded String
*
**/
public function reflectionMethods()
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "reflection/methods?key=" . $this->api_key;
return $this->_curl( $url );
}
}
/**
* v2 API » venue/get
* Find the details of a given venue.
* @example http://api.sonicliving.com/v2/venue/get?key=mykey&venue_id=100
*
* HTTP method: GET
* @param venue_id = required, integer — The venue ID
*
* @return JSON Decoded String
*
**/
public function venueGet( $venue_id )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "venue/get?key=" . $this->api_key . "&venue_id=" . $venue_id;
return $this->_curl( $url );
}
}
/**
* v2 API » venue/lookup
* Find the details of a given venue.
* @example http://api.sonicliving.com/v2/venue/lookup?key=mykey&name=foo&city_id=100
*
* HTTP method: GET
* @param name = one-of, string — The venue name
* @param city_id = one-of, integer — The SL city_id
*
* @return JSON Decoded String
*
**/
public function venueLookup( $venue_id )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "venue/lookup?key=" . $this->api_key;
if ( $name )
{
$url .= "&name=" . $name;
}
if ( $city_id )
{
$url .= "&city_id=" . $city_id;
}
return $this->_curl( $url );
}
}
/**
* v2 API » venue/recognize
* Return all matching venues based on name
* @example http://api.sonicliving.com/v2/venue/recognize?key=mykey&search=foo
*
* HTTP method: GET
* @param search = required, string — The text to use when performing a full or partial location-name search
*
* @return JSON Decoded String
*
**/
public function venueRecognize( $search )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "venue/recognize?key=" . $this->api_key . "&search=" . $search;
return $this->_curl( $url );
}
}
/**
* v2 API » venue/upcoming
* Given a venue ID, return upcoming events
* @example http://api.sonicliving.com/v2/venue/upcoming?key=mykey&venue_id=100
*
* HTTP method: GET
* @param venue_id = required, one or more integers — The venue ID(s)
*
* @return JSON Decoded String
*
**/
public function venueUpcoming( $venue_id )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v2_api_endpoint . "venue/upcoming?key=" . $this->api_key . "&venue_id=" . $venue_id;
return $this->_curl( $url );
}
}
/**
* v1 API » artists
* Given a performer ID, return upcoming events
* @example http://api.sonicliving.com/api/?artists[]=wilco&artists[]=bikini%20kill&zips[]=94110&key=mykey
*
* HTTP method: GET
* @param artists[] = required, array of artist names
* @param current_ip_loc = optional, restrict search to a geo location based on the requesting current ip address
* @param zips[] = optional, restrict search to a zip code
* @param radius = optional, specify the radius around zip codes to look for shows (140 mile radius limit)
* @param limit = optional, limit number of results
*
* @return JSON Decoded String
*
**/
public function v1getArtistsConcerts( $artists=NULL, $current_ip_loc=TRUE, $zips=NULL, $radius=NULL, $limit=1 )
{
if ( $this->api_key == null || $this->api_key == "" )
{
throw new Exception( "No API Key is set." );
}
else
{
$url = $this->v1_api_endpoint. "?key=" . $this->api_key;
if ( $current_ip_loc == "TRUE" )
{
$url .= "¤t_ip_loc=true";
}
if ( $artists )
{
if ( is_array( $artists ) )
{
foreach ( $artists as $artist )
{
$url .= "&artists[]=" . $artist;
}
}
else
{
$url .= "&artists[]=" . $artists;
}
}
else
{
$url .= "&artists[]=" . basename( CLEANURL );
}
if ( $zips != NULL )
{
if ( is_array( $zips ) )
{
foreach ( $artists as $artist )
{
$url .= "&zips[]=" . $zips;
}
}
else
{
$url .= "&zips[]=" . $zips;
}
}
if ( $radius != NULL )
{
$url .= "&radius=" . $radius;
}
$url .= "&limit=" . $limit;
return $this->_curl( $url );
}
}
}// END class
}