/* * Strawberry Music Player * Copyright 2019, Jonas Kvinge * * Strawberry is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Strawberry is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Strawberry. If not, see . * */ #ifndef SUBSONICSERVICE_H #define SUBSONICSERVICE_H #include "config.h" #include #include #include #include #include #include #include #include #include #include #include "core/song.h" #include "internet/internetservice.h" #include "internet/internetsearch.h" #include "settings/subsonicsettingspage.h" class QSortFilterProxyModel; class QNetworkAccessManager; class QNetworkReply; class Application; class SubsonicUrlHandler; class SubsonicRequest; class CollectionBackend; class CollectionModel; using std::shared_ptr; class SubsonicService : public InternetService { Q_OBJECT public: SubsonicService(Application *app, QObject *parent); ~SubsonicService(); static const Song::Source kSource; void ReloadSettings(); void Exit(); Application *app() { return app_; } QString client_name() { return kClientName; } QString api_version() { return kApiVersion; } QUrl server_url() { return server_url_; } QString username() { return username_; } QString password() { return password_; } bool verify_certificate() { return verify_certificate_; } bool download_album_covers() { return download_album_covers_; } CollectionBackend *collection_backend() { return collection_backend_; } CollectionModel *collection_model() { return collection_model_; } QSortFilterProxyModel *collection_sort_model() { return collection_sort_model_; } CollectionBackend *songs_collection_backend() { return collection_backend_; } CollectionModel *songs_collection_model() { return collection_model_; } QSortFilterProxyModel *songs_collection_sort_model() { return collection_sort_model_; } void CheckConfiguration(); signals: public slots: void ShowConfig(); void SendPing(); void SendPing(QUrl url, const QString &username, const QString &password, const bool redirect = false); void GetSongs(); void ResetSongsRequest(); private slots: void HandlePingSSLErrors(QList ssl_errors); void HandlePingReply(QNetworkReply *reply, const QUrl &url, const QString &username, const QString &password); void SongsResultsReceived(const SongList &songs, const QString &error); private: typedef QPair Param; typedef QList ParamList; typedef QPair EncodedParam; typedef QList EncodedParamList; void PingError(const QString &error = QString(), const QVariant &debug = QVariant()); static const char *kClientName; static const char *kApiVersion; static const char *kSongsTable; static const char *kSongsFtsTable; static const int kMaxRedirects; Application *app_; std::unique_ptr network_; SubsonicUrlHandler *url_handler_; CollectionBackend *collection_backend_; CollectionModel *collection_model_; QSortFilterProxyModel *collection_sort_model_; std::shared_ptr songs_request_; QUrl server_url_; QString username_; QString password_; bool verify_certificate_; bool download_album_covers_; QStringList errors_; int ping_redirects_; }; #endif // SUBSONICSERVICE_H