/* * Strawberry Music Player * Copyright 2018-2021, 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 SCROBBLERSERVICE_H #define SCROBBLERSERVICE_H #include "config.h" #include #include #include #include #include #include #include class Application; class Song; class ScrobblerService : public QObject { Q_OBJECT public: explicit ScrobblerService(const QString &name, Application *app, QObject *parent); QString name() const { return name_; } virtual void ReloadSettings() = 0; virtual bool IsEnabled() const { return false; } virtual bool IsAuthenticated() const { return false; } virtual void UpdateNowPlaying(const Song &song) = 0; virtual void ClearPlaying() = 0; virtual void Scrobble(const Song &song) = 0; virtual void Love() {} virtual void Error(const QString &error, const QVariant &debug = QVariant()) = 0; virtual void DoSubmit() = 0; virtual void Submitted() = 0; virtual bool IsSubmitted() const { return false; } typedef QPair Param; typedef QPair EncodedParam; typedef QList ParamList; QJsonObject ExtractJsonObj(const QByteArray &data, const bool ignore_empty = false); public slots: virtual void Submit() = 0; virtual void WriteCache() = 0; signals: void ErrorMessage(QString); private: QString name_; }; #endif // SCROBBLERSERVICE_H