strawberry-audio-player-win.../src/lyrics/lyricsprovider.h

80 lines
2.6 KiB
C
Raw Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
2021-03-20 21:14:47 +01:00
* Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
2018-02-27 18:06:05 +01:00
*
* 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 <http://www.gnu.org/licenses/>.
2018-08-09 18:39:44 +02:00
*
2018-02-27 18:06:05 +01:00
*/
#ifndef LYRICSPROVIDER_H
#define LYRICSPROVIDER_H
2018-02-27 18:06:05 +01:00
#include "config.h"
2020-02-09 02:29:35 +01:00
#include <QtGlobal>
#include <QObject>
2020-02-09 02:29:35 +01:00
#include <QPair>
#include <QList>
2020-06-15 21:55:05 +02:00
#include <QVariant>
#include <QString>
#include <QRegularExpression>
2019-06-23 18:34:03 +02:00
#include "lyricsfetcher.h"
2018-02-27 18:06:05 +01:00
2021-08-12 23:00:10 +02:00
class NetworkAccessManager;
class LyricsProvider : public QObject {
2018-02-27 18:06:05 +01:00
Q_OBJECT
public:
2021-08-12 23:00:10 +02:00
explicit LyricsProvider(const QString &name, const bool enabled, const bool authentication_required, NetworkAccessManager *network, QObject *parent);
2018-02-27 18:06:05 +01:00
QString name() const { return name_; }
bool is_enabled() const { return enabled_; }
int order() const { return order_; }
void set_enabled(const bool enabled) { enabled_ = enabled; }
void set_order(const int order) { order_ = order; }
2018-02-27 18:06:05 +01:00
2021-10-30 02:21:29 +02:00
virtual bool StartSearch(const QString &artist, const QString &album, const QString &title, const int id) = 0;
virtual void CancelSearch(const int id) { Q_UNUSED(id); }
2020-06-15 21:55:05 +02:00
virtual bool AuthenticationRequired() const { return authentication_required_; }
virtual void Authenticate() {}
2020-06-15 21:55:05 +02:00
virtual bool IsAuthenticated() const { return !authentication_required_; }
virtual void Deauthenticate() {}
2018-02-27 18:06:05 +01:00
2020-06-15 21:55:05 +02:00
virtual void Error(const QString &error, const QVariant &debug = QVariant()) = 0;
protected:
QString ParseLyricsFromHTML(const QString &content, const QRegularExpression &start_tag, const QRegularExpression &end_tag, const QRegularExpression &lyrics_start, const bool multiple);
signals:
void AuthenticationComplete(bool, QStringList = QStringList());
void AuthenticationSuccess();
void AuthenticationFailure(QStringList);
void SearchFinished(int id, LyricsSearchResults results = LyricsSearchResults());
2018-02-27 18:06:05 +01:00
2021-08-12 23:00:10 +02:00
protected:
2022-10-13 22:39:31 +02:00
using Param = QPair<QString, QString>;
using ParamList = QList<Param>;
2021-08-12 23:00:10 +02:00
NetworkAccessManager *network_;
QString name_;
bool enabled_;
int order_;
bool authentication_required_;
2018-02-27 18:06:05 +01:00
};
2021-01-26 16:48:04 +01:00
#endif // LYRICSPROVIDER_H