/* * Strawberry Music Player * Copyright 2024, 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 . * */ #include #include #include #include #include "core/shared_ptr.h" #include "core/networkaccessmanager.h" #include "core/logging.h" #include "utilities/transliterate.h" #include "lyricssearchrequest.h" #include "letraslyricsprovider.h" namespace { constexpr char kUrl[] = "https://www.letras.mus.br/winamp.php"; constexpr char kStartTag[] = "]*>"; constexpr char kEndTag[] = "<\\/div>"; constexpr char kLyricsStart[] = "
"; } // namespace LetrasLyricsProvider::LetrasLyricsProvider(SharedPtr network, QObject *parent) : HtmlLyricsProvider(QStringLiteral("letras.mus.br"), true, QLatin1String(kStartTag), QLatin1String(kEndTag), QLatin1String(kLyricsStart), false, network, parent) {} QUrl LetrasLyricsProvider::Url(const LyricsSearchRequest &request) { return QUrl(QLatin1String(kUrl) + QStringLiteral("?musica=") + StringFixup(request.artist) + QStringLiteral("&artista=") + StringFixup(request.title)); } QString LetrasLyricsProvider::StringFixup(const QString &text) { return QString::fromLatin1(QUrl::toPercentEncoding(Utilities::Transliterate(text) .replace(QRegularExpression(QStringLiteral("[^\\w0-9_,&\\-\\(\\) ]")), QStringLiteral("_")) .replace(QRegularExpression(QStringLiteral(" {2,}")), QStringLiteral(" ")) .simplified() .replace(QLatin1Char(' '), QLatin1Char('-')) .toLower() )); }