/thirdparty/liblastfm2/demos/demo2.cpp

http://github.com/tomahawk-player/tomahawk · C++ · 114 lines · 49 code · 18 blank · 47 comment · 0 complexity · 340f89ccc06b6c6e45c9ac56ff8c239c MD5 · raw file

  1. /*
  2. This software is in the public domain, furnished "as is", without technical
  3. support, and with no warranty, express or implied, as to its usefulness for
  4. any purpose.
  5. */
  6. #include <lastfm.h>
  7. #include <QtCore>
  8. struct MyCoreApp : QCoreApplication
  9. {
  10. Q_OBJECT
  11. public:
  12. MyCoreApp( int& argc, char**& argv ) : QCoreApplication( argc, argv )
  13. {}
  14. private slots:
  15. void onWsError( lastfm::ws::Error e )
  16. {
  17. // QNetworkReply will invoke this slot on application level errors
  18. // mostly this is only stuff like Ws::InvalidSessionKey and
  19. // Ws::InvalidApiKey
  20. qWarning() << e;
  21. }
  22. };
  23. int main( int argc, char** argv )
  24. {
  25. MyCoreApp app( argc, argv );
  26. // this is used to generate the UserAgent for webservice requests
  27. // please set it to something sensible in your application
  28. app.setApplicationName( "liblastfm" );
  29. ////// you'll need to fill these in for this demo to work
  30. lastfm::ws::Username =
  31. lastfm::ws::ApiKey =
  32. lastfm::ws::SharedSecret =
  33. QString password =
  34. ////// Usually you never have to construct an Last.fm WS API call manually
  35. // eg. Track.getTopTags() just returns a QNetworkReply* but authentication is
  36. // different.
  37. // We're using getMobileSession here as we're a console app, but you
  38. // should use getToken if you can as the user will be presented with a
  39. // route that feels my trustworthy to them than entering their password
  40. // into some random app they just downloaded... ;)
  41. QMap<QString, QString> params;
  42. params["method"] = "auth.getMobileSession";
  43. params["username"] = lastfm::ws::Username;
  44. params["authToken"] = lastfm::md5( (lastfm::ws::Username + lastfm::md5( password.toUtf8() )).toUtf8() );
  45. QNetworkReply* reply = lastfm::ws::post( params );
  46. // never do this when an event loop is running it's a real HACK
  47. QEventLoop loop;
  48. loop.connect( reply, SIGNAL(finished()), SLOT(quit()) );
  49. loop.exec();
  50. try
  51. {
  52. ////// Usually there is a convenience function to decode the output from
  53. // ws calls too, but again, authentication is different. We think you
  54. // need to handle it yourselves :P Also conveniently it means you
  55. // can learn more about what our webservices return, eg. this service
  56. // will return an XML document like this:
  57. //
  58. // <lfm status="ok">
  59. // <session>
  60. // <name>mxcl</name>
  61. // <key>d580d57f32848f5dcf574d1ce18d78b2</key>
  62. // <subscriber>1</subscriber>
  63. // </session>
  64. // </lfm>
  65. //
  66. // If status is not "ok" then this function throws
  67. lastfm::XmlQuery const lfm = lastfm::ws::parse( reply );
  68. // replace username; because eg. perhaps the user typed their
  69. // username with the wrong case
  70. lastfm::ws::Username = lfm["session"]["name"].text();
  71. // we now have a session key, you should save this, forever! Really.
  72. // DO NOT AUTHENTICATE EVERY TIME THE APP STARTS! You only have to do
  73. // this once. Or again if the user deletes your key on the site. If
  74. // that happens you'll get notification to your onWsError() function,
  75. // see above.
  76. lastfm::ws::SessionKey = lfm["session"]["key"].text();
  77. qDebug() << "sk:" << lastfm::ws::SessionKey;
  78. ////// because the SessionKey is now set, the AuthenticatedUser class will
  79. // work. And we can call authenticated calls
  80. QNetworkReply* reply = lastfm::AuthenticatedUser().getRecommendedArtists();
  81. // again, you shouldn't do this.. ;)
  82. QEventLoop loop;
  83. loop.connect( reply, SIGNAL(finished()), SLOT(quit()) );
  84. loop.exec();
  85. // yay, a list rec'd artists to stderr :)
  86. qDebug() << lastfm::Artist::list( reply );
  87. }
  88. catch (std::runtime_error& e)
  89. {
  90. // lastfm::ws::parse() can throw lastfm::ws::ParseError, this
  91. // exception derives std::runtime_error
  92. qWarning() << e.what();
  93. return 1;
  94. }
  95. }
  96. #include "demo2.moc"