forked from glamorous/TMDb-PHP-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTMDb.php
966 lines (875 loc) · 25.9 KB
/
TMDb.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
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
<?php
/**
* TMDb PHP API class - API 'themoviedb.org'
* API Documentation: http://help.themoviedb.org/kb/api/
* Documentation and usage in README file
*
* @author Jonas De Smet - Glamorous
* @since 09.11.2009
* @date 16.11.2012
* @copyright Jonas De Smet - Glamorous
* @version 1.5.1
* @license BSD http://www.opensource.org/licenses/bsd-license.php
*/
class TMDb
{
const POST = 'post';
const GET = 'get';
const HEAD = 'head';
const IMAGE_BACKDROP = 'backdrop';
const IMAGE_POSTER = 'poster';
const IMAGE_PROFILE = 'profile';
const API_VERSION = '3';
const API_URL = 'api.themoviedb.org';
const API_SCHEME = 'http://';
const API_SCHEME_SSL = 'https://';
const VERSION = '1.5.0';
/**
* The API-key
*
* @var string
*/
protected $_apikey;
/**
* The default language
*
* @var string
*/
protected $_lang;
/**
* The TMDb-config
*
* @var object
*/
protected $_config;
/**
* Stored Session Id
*
* @var string
*/
protected $_session_id;
/**
* API Scheme
*
* @var string
*/
protected $_apischeme;
/**
* Default constructor
*
* @param string $apikey API-key recieved from TMDb
* @param string $defaultLang Default language (ISO 3166-1)
* @param boolean $config Load the TMDb-config
* @return void
*/
public function __construct($apikey, $default_lang = 'en', $config = FALSE, $scheme = TMDb::API_SCHEME)
{
$this->_apikey = (string) $apikey;
$this->_apischeme = ($scheme == TMDb::API_SCHEME) ? TMDb::API_SCHEME : TMDb::API_SCHEME_SSL;
$this->setLang($default_lang);
if($config === TRUE)
{
$this->getConfiguration();
}
}
/**
* Search a movie by querystring
*
* @param string $text Query to search after in the TMDb database
* @param int $page Number of the page with results (default first page)
* @param bool $adult Whether of not to include adult movies in the results (default FALSE)
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function searchMovie($query, $page = 1, $adult = FALSE, $year = NULL, $lang = NULL)
{
$params = array(
'query' => $query,
'page' => (int) $page,
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
'include_adult' => (bool) $adult,
'year' => $year,
);
return $this->_makeCall('search/movie', $params);
}
/**
* Search a person by querystring
*
* @param string $text Query to search after in the TMDb database
* @param int $page Number of the page with results (default first page)
* @param bool $adult Whether of not to include adult movies in the results (default FALSE)
* @return TMDb result array
*/
public function searchPerson($query, $page = 1, $adult = FALSE)
{
$params = array(
'query' => $query,
'page' => (int) $page,
'include_adult' => (bool) $adult,
);
return $this->_makeCall('search/person', $params);
}
/**
* Search a company by querystring
*
* @param string $text Query to search after in the TMDb database
* @param int $page Number of the page with results (default first page)
* @return TMDb result array
*/
public function searchCompany($query, $page = 1)
{
$params = array(
'query' => $query,
'page' => $page,
);
return $this->_makeCall('search/company', $params);
}
/**
* Retrieve information about a collection
*
* @param int $id Id from a collection (retrieved with getMovie)
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getCollection($id, $lang = NULL)
{
$params = array(
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('collection/'.$id, $params);
}
/**
* Retrieve all basic information for a particular movie
*
* @param mixed $id TMDb-id or IMDB-id
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getMovie($id, $lang = NULL)
{
$params = array(
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('movie/'.$id, $params);
}
/**
* Retrieve alternative titles for a particular movie
*
* @param mixed $id TMDb-id or IMDB-id
* @params string $country Only include titles for a particular country (ISO 3166-1)
* @return TMDb result array
*/
public function getMovieTitles($id, $country = NULL)
{
$params = array(
'country' => $country,
);
return $this->_makeCall('movie/'.$id.'/alternative_titles', $params);
}
/**
* Retrieve all of the movie cast information for a particular movie
*
* @param mixed $id TMDb-id or IMDB-id
* @return TMDb result array
*/
public function getMovieCast($id)
{
return $this->_makeCall('movie/'.$id.'/credits');
}
/**
* Retrieve all of the keywords for a particular movie
*
* @param mixed $id TMDb-id or IMDB-id
* @return TMDb result array
*/
public function getMovieKeywords($id)
{
return $this->_makeCall('movie/'.$id.'/keywords');
}
/**
* Retrieve all the release and certification data for a particular movie
*
* @param mixed $id TMDb-id or IMDB-id
* @return TMDb result array
*/
public function getMovieReleases($id)
{
return $this->_makeCall('movie/'.$id.'/releases');
}
/**
* Retrieve available translations for a particular movie
*
* @param mixed $id TMDb-id or IMDB-id
* @return TMDb result array
*/
public function getMovieTranslations($id)
{
return $this->_makeCall('movie/'.$id.'/translations');
}
/**
* Retrieve available trailers for a particular movie
*
* @param mixed $id TMDb-id or IMDB-id
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getMovieTrailers($id, $lang = NULL)
{
$params = array(
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('movie/'.$id.'/trailers', $params);
}
/**
* Retrieve all images for a particular movie
*
* @param mixed $id TMDb-id or IMDB-id
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getMovieImages($id, $lang = NULL)
{
$params = array(
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('movie/'.$id.'/images', $params);
}
/**
* Retrieve similar movies for a particular movie
*
* @param mixed $id TMDb-id or IMDB-id
* @param int $page Number of the page with results (default first page)
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getSimilarMovies($id, $page = 1, $lang = NULL)
{
$params = array(
'page' => (int) $page,
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('movie/'.$id.'/similar_movies', $params);
}
/**
* Retrieve newest movie added to TMDb
*
* @return TMDb result array
*/
public function getLatestMovie()
{
return $this->_makeCall('movie/latest');
}
/**
* Retrieve newest person added to TMDb
*
* @return TMDb result array
*/
public function getLatestPerson()
{
return $this->_makeCall('person/latest');
}
/**
* Retrieve movies arriving to theatres within the next few weeks
*
* @param int $page Number of the page with results (default first page)
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getUpcomingMovies($page = 1, $lang = NULL)
{
$params = array(
'page' => (int) $page,
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('movie/upcoming', $params);
}
/**
* Retrieve movies currently in theatres
*
* @param int $page Number of the page with results (default first page)
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getNowPlayingMovies($page = 1, $lang = NULL)
{
$params = array(
'page' => (int) $page,
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('movie/now_playing', $params);
}
/**
* Retrieve popular movies (list is updated daily)
*
* @param int $page Number of the page with results (default first page)
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getPopularMovies($page = 1, $lang = NULL)
{
$params = array(
'page' => (int) $page,
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('movie/popular', $params);
}
/**
* Retrieve top-rated movies
*
* @param int $page Number of the page with results (default first page)
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getTopRatedMovies($page = 1, $lang = NULL)
{
$params = array(
'page' => (int) $page,
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('movie/top_rated', $params);
}
/**
* Retrieve changes for a particular movie
*
* @param mixed $id TMDb-id or IMDB-id
* @return TMDb result array
*/
public function getMovieChanges($id)
{
return $this->_makeCall('movie/'.$id.'/changes');
}
/**
* Retrieve all id's from changed movies
*
* @param int $page Number of the page with results (default first page)
* @param string $start_date String start date as YYYY-MM-DD
* @param string $end_date String end date as YYYY-MM-DD (not inclusive)
* @return TMDb result array
*/
public function getChangedMovies($page = 1, $start_date = NULL, $end_date = NULL)
{
$params = array(
'page' => (int) $page,
'start_date' => $start_date,
'end_date' => $end_date,
);
return $this->_makeCall('movie/changes', $params);
}
/**
* Retrieve all basic information for a particular person
*
* @param int $id TMDb person-id
* @return TMDb result array
*/
public function getPerson($id)
{
return $this->_makeCall('person/'.$id);
}
/**
* Retrieve all cast and crew information for a particular person
*
* @param int $id TMDb person-id
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getPersonCredits($id, $lang = NULL)
{
$params = array(
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('person/'.$id.'/credits', $params);
}
/**
* Retrieve all images for a particular person
*
* @param mixed $id TMDb person-id
* @return TMDb result array
*/
public function getPersonImages($id)
{
return $this->_makeCall('person/'.$id.'/images');
}
/**
* Retrieve changes for a particular person
*
* @param mixed $id TMDb person-id
* @return TMDb result array
*/
public function getPersonChanges($id)
{
return $this->_makeCall('person/'.$id.'/changes');
}
/**
* Retrieve all id's from changed persons
*
* @param int $page Number of the page with results (default first page)
* @param string $start_date String start date as YYYY-MM-DD
* @param string $end_date String end date as YYYY-MM-DD (not inclusive)
* @return TMDb result array
*/
public function getChangedPersons($page = 1, $start_date = NULL, $end_date = NULL)
{
$params = array(
'page' => (int) $page,
'start_date' => $start_date,
'start_date' => $end_date,
);
return $this->_makeCall('person/changes', $params);
}
/**
* Retrieve all basic information for a particular production company
*
* @param int $id TMDb company-id
* @return TMDb result array
*/
public function getCompany($id)
{
return $this->_makeCall('company/'.$id);
}
/**
* Retrieve movies for a particular production company
*
* @param int $id TMDb company-id
* @param int $page Number of the page with results (default first page)
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getMoviesByCompany($id, $page = 1, $lang = NULL)
{
$params = array(
'page' => (int) $page,
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('company/'.$id.'/movies', $params);
}
/**
* Retrieve a list of genres used on TMDb
*
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getGenres($lang = NULL)
{
$params = array(
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('genre/list', $params);
}
/**
* Retrieve movies for a particular genre
*
* @param int $id TMDb genre-id
* @param int $page Number of the page with results (default first page)
* @param mixed $lang Filter the result with a language (ISO 3166-1) other then default, use FALSE to retrieve results from all languages
* @return TMDb result array
*/
public function getMoviesByGenre($id, $page = 1, $lang = NULL)
{
$params = array(
'page' => (int) $page,
'language' => ($lang !== NULL) ? $lang : $this->getLang(),
);
return $this->_makeCall('genre/'.$id.'/movies', $params);
}
/**
* Authentication: retrieve authentication token
* More information about the authentication process: http://help.themoviedb.org/kb/api/user-authentication
*
* @return TMDb result array
*/
public function getAuthToken()
{
$result = $this->_makeCall('authentication/token/new');
if( ! isset($result['request_token']))
{
if($this->getDebugMode())
{
throw new TMDbException('No valid request token from TMDb');
}
else
{
return FALSE;
}
}
return $result;
}
/**
* Authentication: retrieve authentication session and set it to the class
* More information about the authentication process: http://help.themoviedb.org/kb/api/user-authentication
*
* @param string $token
* @return TMDb result array
*/
public function getAuthSession($token)
{
$params = array(
'request_token' => $token,
);
$result = $this->_makeCall('authentication/session/new', $params);
if(isset($result['session_id']))
{
$this->setAuthSession($result['session_id']);
}
return $result;
}
/**
* Authentication: set retrieved session id in the class for authenticated requests
* More information about the authentication process: http://help.themoviedb.org/kb/api/user-authentication
*
* @param string $session_id
*/
public function setAuthSession($session_id)
{
$this->_session_id = $session_id;
}
/**
* Retrieve basic account information
*
* @param string $session_id Set session_id for the account you want to retrieve information from
* @return TMDb result array
*/
public function getAccount($session_id = NULL)
{
$session_id = ($session_id === NULL) ? $this->_session_id : $session_id;
return $this->_makeCall('account', NULL, $session_id);
}
/**
* Retrieve favorite movies for a particular account
*
* @param int $account_id TMDb account-id
* @param string $session_id Set session_id for the account you want to retrieve information from
* @param int $page Number of the page with results (default first page)
* @param mixed $lang Get result in other language then default for this user account (ISO 3166-1)
* @return TMDb result array
*/
public function getAccountFavoriteMovies($account_id, $session_id = NULL, $page = 1, $lang = FALSE)
{
$session_id = ($session_id === NULL) ? $this->_session_id : $session_id;
$params = array(
'page' => (int) $page,
'language' => ($lang !== NULL) ? $lang : '',
);
return $this->_makeCall('account/'.$account_id.'/favorite_movies', $params, $session_id);
}
/**
* Retrieve rated movies for a particular account
*
* @param int $account_id TMDb account-id
* @param string $session_id Set session_id for the account you want to retrieve information from
* @param int $page Number of the page with results (default first page)
* @param mixed $lang Get result in other language then default for this user account (ISO 3166-1)
* @return TMDb result array
*/
public function getAccountRatedMovies($account_id, $session_id = NULL, $page = 1, $lang = FALSE)
{
$session_id = ($session_id === NULL) ? $this->_session_id : $session_id;
$params = array(
'page' => (int) $page,
'language' => ($lang !== NULL) ? $lang : '',
);
return $this->_makeCall('account/'.$account_id.'/rated_movies', $params, $session_id);
}
/**
* Retrieve movies that have been marked in a particular account watchlist
*
* @param int $account_id TMDb account-id
* @param string $session_id Set session_id for the account you want to retrieve information from
* @param int $page Number of the page with results (default first page)
* @param mixed $lang Get result in other language then default for this user account (ISO 3166-1)
* @return TMDb result array
*/
public function getAccountWatchlistMovies($account_id, $session_id = NULL, $page = 1, $lang = FALSE)
{
$session_id = ($session_id === NULL) ? $this->_session_id : $session_id;
$params = array(
'page' => (int) $page,
'language' => ($lang !== NULL) ? $lang : '',
);
return $this->_makeCall('account/'.$account_id.'/movie_watchlist', $params, $session_id);
}
/**
* Add a movie to the account favorite movies
*
* @param int $account_id TMDb account-id
* @param string $session_id Set session_id for the account you want to retrieve information from
* @param int $movie_id TMDb movie-id
* @param bool $favorite Add to favorites or remove from favorites (default TRUE)
* @return TMDb result array
*/
public function addFavoriteMovie($account_id, $session_id = NULL, $movie_id = 0, $favorite = TRUE)
{
$session_id = ($session_id === NULL) ? $this->_session_id : $session_id;
$params = array(
'movie_id' => (int) $movie_id,
'favorite' => (bool) $favorite,
);
return $this->_makeCall('account/'.$account_id.'/favorite', $params, $session_id, TMDb::POST);
}
/**
* Add a movie to the account watchlist
*
* @param int $account_id TMDb account-id
* @param string $session_id Set session_id for the account you want to retrieve information from
* @param int $movie_id TMDb movie-id
* @param bool $watchlist Add to watchlist or remove from watchlist (default TRUE)
* @return TMDb result array
*/
public function addMovieToWatchlist($account_id, $session_id = NULL, $movie_id = 0, $watchlist = TRUE)
{
$session_id = ($session_id === NULL) ? $this->_session_id : $session_id;
$params = array(
'movie_id' => (int) $movie_id,
'movie_watchlist' => (bool) $watchlist,
);
return $this->_makeCall('account/'.$account_id.'/movie_watchlist', $params, $session_id, TMDb::POST);
}
/**
* Add a rating to a movie
*
* @param string $session_id Set session_id for the account you want to retrieve information from
* @param int $movie_id TMDb movie-id
* @param float $value Value between 1 and 10
* @return TMDb result array
*/
public function addMovieRating($session_id = NULL, $movie_id = 0, $value = 0)
{
$session_id = ($session_id === NULL) ? $this->_session_id : $session_id;
$params = array(
'value' => is_numeric($value) ? floatval($value) : 0,
);
return $this->_makeCall('movie/'.$movie_id.'/rating', $params, $session_id, TMDb::POST);
}
/**
* Get configuration from TMDb
*
* @return TMDb result array
*/
public function getConfiguration()
{
$config = $this->_makeCall('configuration');
if( ! empty($config))
{
$this->setConfig($config);
}
return $config;
}
/**
* Get Image URL
*
* @param string $filepath Filepath to image
* @param const $imagetype Image type: TMDb::IMAGE_BACKDROP, TMDb::IMAGE_POSTER, TMDb::IMAGE_PROFILE
* @param string $size Valid size for the image
* @return string
*/
public function getImageUrl($filepath, $imagetype, $size)
{
$config = $this->getConfig();
if(isset($config['images']))
{
$base_url = $config['images']['base_url'];
$available_sizes = $this->getAvailableImageSizes($imagetype);
if(in_array($size, $available_sizes))
{
return $base_url.$size.$filepath;
}
else
{
throw new TMDbException('The size "'.$size.'" is not supported by TMDb');
}
}
else
{
throw new TMDbException('No configuration available for image URL generation');
}
}
/**
* Get available image sizes for a particular image type
*
* @param const $imagetype Image type: TMDb::IMAGE_BACKDROP, TMDb::IMAGE_POSTER, TMDb::IMAGE_PROFILE
* @return array
*/
public function getAvailableImageSizes($imagetype)
{
$config = $this->getConfig();
if(isset($config['images'][$imagetype.'_sizes']))
{
return $config['images'][$imagetype.'_sizes'];
}
else
{
throw new TMDbException('No configuration available to retrieve available image sizes');
}
}
/**
* Get ETag to keep track of state of the content
*
* @param string $uri Use an URI to know the version of it. For example: 'movie/550'
* @return string
*/
public function getVersion($uri)
{
$headers = $this->_makeCall($uri, NULL, NULL, TMDb::HEAD);
return isset($headers['Etag']) ? $headers['Etag'] : '';
}
/**
* Makes the call to the API
*
* @param string $function API specific function name for in the URL
* @param array $params Unencoded parameters for in the URL
* @param string $session_id Session_id for authentication to the API for specific API methods
* @param const $method TMDb::GET or TMDb:POST (default TMDb::GET)
* @return TMDb result array
*/
private function _makeCall($function, $params = NULL, $session_id = NULL, $method = TMDb::GET)
{
$params = ( ! is_array($params)) ? array() : $params;
$auth_array = array('api_key' => $this->_apikey);
if($session_id !== NULL)
{
$auth_array['session_id'] = $session_id;
}
$url = $this->_apischeme.TMDb::API_URL.'/'.TMDb::API_VERSION.'/'.$function.'?'.http_build_query($auth_array, '', '&');
if($method === TMDb::GET)
{
if(isset($params['language']) AND $params['language'] === FALSE)
{
unset($params['language']);
}
$url .= ( ! empty($params)) ? '&'.http_build_query($params, '', '&') : '';
}
$results = '{}';
if (extension_loaded('curl'))
{
$headers = array(
'Accept: application/json',
);
$ch = curl_init();
if($method == TMDB::POST)
{
$json_string = json_encode($params);
curl_setopt($ch,CURLOPT_POST, 1);
curl_setopt($ch,CURLOPT_POSTFIELDS, $json_string);
$headers[] = 'Content-Type: application/json';
$headers[] = 'Content-Length: '.strlen($json_string);
}
elseif($method == TMDb::HEAD)
{
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'HEAD');
curl_setopt($ch, CURLOPT_NOBODY, 1);
}
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
$header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
$header = substr($response, 0, $header_size);
$body = substr($response, $header_size);
$error_number = curl_errno($ch);
$error_message = curl_error($ch);
if($error_number > 0)
{
throw new TMDbException('Method failed: '.$function.' - '.$error_message);
}
curl_close($ch);
}
else
{
throw new TMDbException('CURL-extension not loaded');
}
$results = json_decode($body, TRUE);
if(strpos($function, 'authentication/token/new') !== FALSE)
{
$parsed_headers = $this->_http_parse_headers($header);
$results['Authentication-Callback'] = $parsed_headers['Authentication-Callback'];
}
if($results !== NULL)
{
return $results;
}
elseif($method == TMDb::HEAD)
{
return $this->_http_parse_headers($header);
}
else
{
throw new TMDbException('Server error on "'.$url.'": '.$response);
}
}
/**
* Setter for the default language
*
* @param string $lang (ISO 3166-1)
* @return void
*/
public function setLang($lang)
{
$this->_lang = $lang;
}
/**
* Setter for the TMDB-config
*
* $param array $config
* @return void
*/
public function setConfig($config)
{
$this->_config = $config;
}
/**
* Getter for the default language
*
* @return string
*/
public function getLang()
{
return $this->_lang;
}
/**
* Getter for the TMDB-config
*
* @return array
*/
public function getConfig()
{
if(empty($this->_config))
{
$this->_config = $this->getConfiguration();
}
return $this->_config;
}
/*
* Internal function to parse HTTP headers because of lack of PECL extension installed by many
*
* @param string $header
* @return array
*/
protected function _http_parse_headers($header)
{
$return = array();
$fields = explode("\r\n", preg_replace('/\x0D\x0A[\x09\x20]+/', ' ', $header));
foreach($fields as $field)
{
if(preg_match('/([^:]+): (.+)/m', $field, $match))
{
$match[1] = preg_replace('/(?<=^|[\x09\x20\x2D])./e', 'strtoupper("\0")', strtolower(trim($match[1])));
if( isset($return[$match[1]]) )
{
$return[$match[1]] = array($return[$match[1]], $match[2]);
}
else
{
$return[$match[1]] = trim($match[2]);
}
}
}
return $return;
}
}
/**
* TMDb Exception class
*
* @author Jonas De Smet - Glamorous
*/
class TMDbException extends Exception{}
?>