API.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. require_once('../../database.php');
  3. require_once('xml.php');
  4. class API {
  5. function __construct() {
  6. $this->api_errors = array(
  7. 2 => 'Invalid Service - This service does not exist',
  8. 3 => 'Invalid Method - No method with that name in this package',
  9. 4 => 'Authentication Failed - You do not have permissions to access the service',
  10. 5 => 'Invalid format - This service doesn\'t exist in that format',
  11. 6 => 'Invalid parameters - Your request is missing a required parameter',
  12. 7 => 'Invalid resource especified',
  13. 8 => '',
  14. 9 => 'Invalid session key',
  15. 10 => 'Invalid API key - You must be granted a valid key by libre.fm',
  16. 11 => 'Service Offline - This Service is temporarily offline. Try again later.',
  17. 12 => 'Subscription Error - The user needs to be subscribed in order to do that',
  18. 13 => 'Invalid method signature supplied',
  19. 14 => '',
  20. 15 => '',
  21. 16 => '',
  22. 17 => '',
  23. 18 => 'This user has no free radio plays left. Subscription required.',
  24. 19 => '',
  25. 20 => '',
  26. );
  27. }
  28. static public function checkParams($params, $required, $optional = null) {
  29. /*
  30. * @param array $params parameters
  31. * @param array $required required params
  32. */
  33. if (empty($required) || empty($params)) {
  34. return false;
  35. }
  36. if (count(array_diff_key($params, $required) > 0)) {
  37. $this->giveError(6);
  38. }
  39. }
  40. static public function giveError($error) {
  41. /*
  42. * @param integer $error error key to give back
  43. */
  44. global $xml;
  45. return XML::error('failed', $error, $this->api_error[$error]);
  46. }
  47. }