/src/net/roarsoftware/lastfm/Authenticator.java

https://bitbucket.org/Tobiaswk/ophelia · Java · 80 lines · 39 code · 8 blank · 33 comment · 1 complexity · b0865b957a591b3e72cd17096f26a0be MD5 · raw file

  1. package net.roarsoftware.lastfm;
  2. import java.util.Map;
  3. import java.util.Map.Entry;
  4. import java.util.TreeMap;
  5. import static net.roarsoftware.util.StringUtilities.map;
  6. import static net.roarsoftware.util.StringUtilities.md5;
  7. import net.roarsoftware.xml.DomElement;
  8. /**
  9. * Provides bindings for the authentication methods of the last.fm API.
  10. * See <a href="http://www.last.fm/api/authentication">http://www.last.fm/api/authentication</a> for
  11. * authentication methods.
  12. *
  13. * @author Janni Kovacs
  14. * @see Session
  15. */
  16. public class Authenticator {
  17. private Authenticator() {
  18. }
  19. /**
  20. * Create a web service session for a user. Used for authenticating a user when the password can be inputted by the user.
  21. *
  22. * @param username last.fm username
  23. * @param password last.fm password
  24. * @param apiKey The API key
  25. * @param secret Your last.fm API secret
  26. * @return a Session instance
  27. * @see Session
  28. */
  29. public static Session getMobileSession(String username, String password, String apiKey, String secret) {
  30. String authToken = md5(username + md5(password));
  31. Map<String, String> params = map("api_key", apiKey, "username", username, "authToken", authToken);
  32. String sig = createSignature("auth.getMobileSession", params, secret);
  33. Result result = Caller.getInstance()
  34. .call("auth.getMobileSession", apiKey, "username", username, "authToken", authToken, "api_sig", sig);
  35. DomElement element = result.getContentElement();
  36. return Session.sessionFromElement(element, apiKey, secret);
  37. }
  38. /**
  39. * Fetch an unathorized request token for an API account.
  40. *
  41. * @param apiKey A last.fm API key.
  42. * @return a token
  43. */
  44. public static String getToken(String apiKey) {
  45. Result result = Caller.getInstance().call("auth.getToken", apiKey);
  46. return result.getContentElement().getText();
  47. }
  48. /**
  49. * Fetch a session key for a user.
  50. *
  51. * @param token A token returned by {@link #getToken(String)}
  52. * @param apiKey A last.fm API key
  53. * @param secret Your last.fm API secret
  54. * @return a Session instance
  55. * @see Session
  56. */
  57. public static Session getSession(String token, String apiKey, String secret) {
  58. Result result = Caller.getInstance().call("auth.getSession", apiKey, "token", token);
  59. return Session.sessionFromElement(result.getContentElement(), apiKey, secret);
  60. }
  61. static String createSignature(String method, Map<String, String> params, String secret) {
  62. params = new TreeMap<String, String>(params);
  63. params.put("method", method);
  64. StringBuilder b = new StringBuilder(100);
  65. for (Entry<String, String> entry : params.entrySet()) {
  66. b.append(entry.getKey());
  67. b.append(entry.getValue());
  68. }
  69. b.append(secret);
  70. return md5(b.toString());
  71. }
  72. }