ChartXML.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. /* GNU FM -- a free network service for sharing your music listening habits
  3. Copyright (C) 2009 Free Software Foundation, Inc
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU Affero General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Affero General Public License for more details.
  12. You should have received a copy of the GNU Affero General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. require_once($install_path . '/database.php');
  16. require_once($install_path . '/data/Chart.php');
  17. require_once($install_path . '/data/Server.php');
  18. require_once('xml.php');
  19. /**
  20. * Class with functions that returns XML-formatted data for charts.
  21. *
  22. * These functions are mainly used by web service methods.
  23. *
  24. * @package API
  25. */
  26. class ChartXML {
  27. public static function getTopArtists($limit, $page, $streamable, $cache) {
  28. $offset = ($page - 1) * $limit;
  29. try {
  30. $res = Chart::getTopArtists($limit, $offset, $streamable, $cache);
  31. } catch (Exception $e) {
  32. return XML::error('error', '7', 'Invalid resource specified');
  33. }
  34. $xml = new SimpleXMLElement('<lfm status="ok"></lfm>');
  35. $root = $xml->addChild('artists');
  36. $root->addAttribute('page', $page);
  37. $root->addAttribute('perPage', $limit);
  38. foreach($res as &$row) {
  39. $artist_node = $root->addChild('artist');
  40. $artist = new Artist($row['artist']);
  41. $artist_node->addChild('name', repamp($artist->name));
  42. $artist_node->addChild('mbid', $artist->mbid);
  43. $artist_node->addChild('url', $artist->getURL());
  44. $artist_node->addChild('streamable', $artist->streamable);
  45. $image_small = $artist_node->addChild('image', repamp($artist->image_small));
  46. $image_small->addAttribute('size', 'small');
  47. $image_medium = $artist_node->addChild('image', repamp($artist->image_medium));
  48. $image_medium->addAttribute('size', 'medium');
  49. $image_large = $artist_node->addChild('image', repamp($artist->image_large));
  50. $image_large->addAttribute('size', 'large');
  51. }
  52. return $xml;
  53. }
  54. }