/src/com/andrew/apollo/lastfm/api/Album.java

https://bitbucket.org/cyanogenmod/android_packages_apps_apollo · Java · 114 lines · 50 code · 13 blank · 51 comment · 5 complexity · 9c197865b0293ee1ec37cc6bba3015e9 MD5 · raw file

  1. /*
  2. * Copyright (c) 2012, the Last.fm Java Project and Committers
  3. * All rights reserved.
  4. *
  5. * Redistribution and use of this software in source and binary forms, with or without modification, are
  6. * permitted provided that the following conditions are met:
  7. *
  8. * - Redistributions of source code must retain the above
  9. * copyright notice, this list of conditions and the
  10. * following disclaimer.
  11. *
  12. * - Redistributions in binary form must reproduce the above
  13. * copyright notice, this list of conditions and the
  14. * following disclaimer in the documentation and/or other
  15. * materials provided with the distribution.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
  18. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  19. * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  20. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  21. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  23. * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  24. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. package com.andrew.apollo.lastfm.api;
  27. import java.util.HashMap;
  28. import java.util.Map;
  29. import com.andrew.apollo.utils.DomElement;
  30. import com.andrew.apollo.utils.MapUtilities;
  31. import com.andrew.apollo.utils.StringUtilities;
  32. /**
  33. * Wrapper class for Album related API calls and Album Bean.
  34. *
  35. * @author Janni Kovacs
  36. */
  37. public class Album extends MusicEntry {
  38. static final ItemFactory<Album> FACTORY = new AlbumFactory();
  39. private String artist;
  40. private Album(String name, String url, String artist) {
  41. super(name, url);
  42. this.artist = artist;
  43. }
  44. private Album(String name, String url, String mbid, int playcount, int listeners,
  45. boolean streamable, String artist) {
  46. super(name, url, mbid, playcount, listeners, streamable);
  47. this.artist = artist;
  48. }
  49. public String getArtist() {
  50. return artist;
  51. }
  52. /**
  53. * Get the metadata for an album on Last.fm using the album name or a
  54. * musicbrainz id. See playlist.fetch on how to get the album playlist.
  55. *
  56. * @param artist Artist's name
  57. * @param albumOrMbid Album name or MBID
  58. * @param apiKey The API key
  59. * @return Album metadata
  60. */
  61. public static Album getInfo(String artist, String albumOrMbid, String apiKey) {
  62. return getInfo(artist, albumOrMbid, null, apiKey);
  63. }
  64. /**
  65. * Get the metadata for an album on Last.fm using the album name or a
  66. * musicbrainz id. See playlist.fetch on how to get the album playlist.
  67. *
  68. * @param artist Artist's name
  69. * @param albumOrMbid Album name or MBID
  70. * @param username The username for the context of the request. If supplied,
  71. * the user's playcount for this album is included in the
  72. * response.
  73. * @param apiKey The API key
  74. * @return Album metadata
  75. */
  76. public static Album getInfo(String artist, String albumOrMbid, String username, String apiKey) {
  77. Map<String, String> params = new HashMap<String, String>();
  78. if (StringUtilities.isMbid(albumOrMbid)) {
  79. params.put("mbid", albumOrMbid);
  80. } else {
  81. params.put("artist", artist);
  82. params.put("album", albumOrMbid);
  83. }
  84. MapUtilities.nullSafePut(params, "username", username);
  85. Result result = Caller.getInstance().call("album.getInfo", apiKey, params);
  86. return ResponseBuilder.buildItem(result, Album.class);
  87. }
  88. private static class AlbumFactory implements ItemFactory<Album> {
  89. @Override
  90. public Album createItemFromElement(DomElement element) {
  91. Album album = new Album(null, null, null);
  92. MusicEntry.loadStandardInfo(album, element);
  93. if (element.hasChild("artist")) {
  94. album.artist = element.getChild("artist").getChildText("name");
  95. if (album.artist == null)
  96. album.artist = element.getChildText("artist");
  97. }
  98. return album;
  99. }
  100. }
  101. }