File: ultimatelyricsprovider.cpp

package info (click to toggle)
cantata 3.4.0.ds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,428 kB
  • sloc: cpp: 109,584; perl: 1,366; xml: 722; python: 139; lex: 110; sh: 105; yacc: 78; makefile: 8
file content (471 lines) | stat: -rw-r--r-- 13,623 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
/*
 * Cantata
 *
 * Copyright (c) 2011-2022 Craig Drummond <craig.p.drummond@gmail.com>
 *
 */
/* This file is part of Clementine.
   Copyright 2010, David Sansome <me@davidsansome.com>

   Clementine 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.

   Clementine 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 Clementine.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "ultimatelyricsprovider.h"
#include "network/networkaccessmanager.h"
#include <QDebug>
#include <QRegularExpression>
#include <QUrl>
#include <QUrlQuery>
#include <QXmlStreamReader>
static bool debugEnabled = false;
#define DBUG \
	if (debugEnabled) qWarning() << "Lyrics" << __FUNCTION__
void UltimateLyricsProvider::enableDebug()
{
	debugEnabled = true;
}

static const QString constArtistArg = QLatin1String("{Artist}");
static const QString constArtistLowerArg = QLatin1String("{artist}");
static const QString constArtistLowerNoSpaceArg = QLatin1String("{artist2}");
static const QString constArtistFirstCharArg = QLatin1String("{a}");
static const QString constAlbumArg = QLatin1String("{Album}");
static const QString constAlbumLowerArg = QLatin1String("{album}");
static const QString constAlbumLowerNoSpaceArg = QLatin1String("{album2}");
static const QString constTitleLowerArg = QLatin1String("{title}");
static const QString constTitleArg = QLatin1String("{Title}");
static const QString constTitleCaseArg = QLatin1String("{Title2}");
static const QString constYearArg = QLatin1String("{year}");
static const QString constTrackNoArg = QLatin1String("{track}");
static const QString constThe = QLatin1String("The ");

static QString noSpace(const QString& text)
{
	QString ret(text);
	ret.remove(' ');
	return ret;
}

static QString firstChar(const QString& text)
{
	return text.isEmpty() ? text : text[0].toLower();
}

static QString titleCase(const QString& text)
{
	if (0 == text.length()) {
		return QString();
	}
	if (1 == text.length()) {
		return text[0].toUpper();
	}
	return text[0].toUpper() + text.right(text.length() - 1).toLower();
}

static QString doTagReplace(QString str, const Song& song)
{
	if (str.contains(QLatin1Char('{'))) {
		QString artistFixed = song.basicArtist();
		str.replace(constArtistArg, artistFixed);
		str.replace(constArtistFirstCharArg, firstChar(artistFixed));
		str.replace(constAlbumArg, song.album);
		str.replace(constTitleArg, song.basicTitle());
		str.replace(constYearArg, QString::number(song.year));
		str.replace(constTrackNoArg, QString::number(song.track));
	}
	return str;
}

static QString extract(const QString& source, const QString& begin, const QString& end, bool isTag = false)
{
	DBUG << "Looking for" << begin << end;
	int beginIdx = source.indexOf(begin, 0, Qt::CaseInsensitive);
	bool skipTagClose = false;

	if (-1 == beginIdx && isTag) {
		beginIdx = source.indexOf(QString(begin).remove(">"), 0, Qt::CaseInsensitive);
		skipTagClose = true;
	}
	if (-1 == beginIdx) {
		DBUG << "Failed to find begin";
		return QString();
	}
	if (skipTagClose) {
		int closeIdx = source.indexOf(">", beginIdx);
		if (-1 != closeIdx) {
			beginIdx = closeIdx + 1;
		}
		else {
			beginIdx += begin.length();
		}
	}
	else {
		beginIdx += begin.length();
	}

	int endIdx = source.indexOf(end, beginIdx, Qt::CaseInsensitive);
	if (-1 == endIdx && QLatin1String("null") != end) {
		DBUG << "Failed to find end";
		return QString();
	}

	DBUG << "Found match";
	return source.mid(beginIdx, endIdx - beginIdx - 1);
}

static QRegularExpression xmlTagRegex = QRegularExpression("<(\\w+).*>");
static QString extractXmlTag(const QString& source, const QString& tag)
{
	DBUG << "Looking for" << tag;
	auto match = xmlTagRegex.match(tag);
	if (!match.hasMatch()) {
		DBUG << "Failed to find tag";
		return QString();
	}

	DBUG << "Found match";
	return extract(source, tag, "</" + match.captured(1) + ">", true);
}

static QString exclude(const QString& source, const QString& begin, const QString& end)
{
	int beginIdx = source.indexOf(begin, 0, Qt::CaseInsensitive);
	if (-1 == beginIdx) {
		return source;
	}

	int endIdx = source.indexOf(end, beginIdx + begin.length(), Qt::CaseInsensitive);
	if (-1 == endIdx) {
		return source;
	}

	return source.left(beginIdx) + source.right(source.length() - endIdx - end.length());
}

static QString excludeXmlTag(const QString& source, const QString& tag)
{
	auto match = xmlTagRegex.match(tag);
	if (!match.hasMatch()) {
		return source;
	}

	return exclude(source, tag, "</" + match.captured(1) + ">");
}

static void applyExtractRule(const UltimateLyricsProvider::Rule& rule, QString& content, const Song& song)
{
	for (const UltimateLyricsProvider::RuleItem& item : rule) {
		if (item.second.isNull()) {
			content = extractXmlTag(content, doTagReplace(item.first, song));
		}
		else {
			content = extract(content, doTagReplace(item.first, song), doTagReplace(item.second, song));
		}
	}
}

static void applyExcludeRule(const UltimateLyricsProvider::Rule& rule, QString& content, const Song& song)
{
	for (const UltimateLyricsProvider::RuleItem& item : rule) {
		if (item.second.isNull()) {
			content = excludeXmlTag(content, doTagReplace(item.first, song));
		}
		else {
			content = exclude(content, doTagReplace(item.first, song), doTagReplace(item.second, song));
		}
	}
}

static QString urlEncode(QString str)
{
	str.replace(QLatin1Char('&'), QLatin1String("%26"));
	str.replace(QLatin1Char('?'), QLatin1String("%3f"));
	str.replace(QLatin1Char('+'), QLatin1String("%2b"));
	return str;
}

static bool tryWithoutThe(const Song& s)
{
	return 0 == s.priority && s.basicArtist().startsWith(constThe);
}

UltimateLyricsProvider::UltimateLyricsProvider()
	: enabled(true), relevance(0)
{
}

UltimateLyricsProvider::~UltimateLyricsProvider()
{
	abort();
}

QString UltimateLyricsProvider::displayName() const
{
	QString n(name);
	n.replace("(POLISH)", tr("(Polish Translations)"));
	n.replace("(PORTUGUESE)", tr("(Portuguese Translations)"));
	return n;
}

void UltimateLyricsProvider::fetchInfo(int id, Song metadata, bool removeThe)
{
	auto converter = QStringDecoder(charset.toLatin1().constData(), QStringConverter::Flag::Default);

	if (!converter.isValid()) {
		emit lyricsReady(id, QString());
		return;
	}

	QString artistFixed = metadata.basicArtist();
	QString titleFixed = metadata.basicTitle();
	QString urlText(url);

	if (removeThe && artistFixed.startsWith(constThe)) {
		artistFixed = artistFixed.mid(constThe.length());
	}

	if (QLatin1String("lyrics.wikia.com") == name) {
		QUrl url(urlText);
		QUrlQuery query;

		query.addQueryItem(QLatin1String("artist"), artistFixed);
		query.addQueryItem(QLatin1String("song"), titleFixed);
		query.addQueryItem(QLatin1String("func"), QLatin1String("getSong"));
		query.addQueryItem(QLatin1String("fmt"), QLatin1String("xml"));
		url.setQuery(query);

		NetworkJob* reply = NetworkAccessManager::self()->get(url);
		requests[reply] = id;
		connect(reply, SIGNAL(finished()), this, SLOT(wikiMediaSearchResponse()));
		return;
	}

	metadata.priority = removeThe ? 1 : 0;// HACK Use this to indicate if searching without 'The '
	songs.insert(id, metadata);

	// Fill in fields in the URL
	bool urlContainsDetails = urlText.contains(QLatin1Char('{'));
	if (urlContainsDetails) {
		doUrlReplace(constArtistArg, artistFixed, urlText);
		doUrlReplace(constArtistLowerArg, artistFixed.toLower(), urlText);
		doUrlReplace(constArtistLowerNoSpaceArg, noSpace(artistFixed.toLower()), urlText);
		doUrlReplace(constArtistFirstCharArg, firstChar(artistFixed), urlText);
		doUrlReplace(constAlbumArg, metadata.album, urlText);
		doUrlReplace(constAlbumLowerArg, metadata.album.toLower(), urlText);
		doUrlReplace(constAlbumLowerNoSpaceArg, noSpace(metadata.album.toLower()), urlText);
		doUrlReplace(constTitleArg, titleFixed, urlText);
		doUrlReplace(constTitleLowerArg, titleFixed.toLower(), urlText);
		doUrlReplace(constTitleCaseArg, titleCase(titleFixed), urlText);
		doUrlReplace(constYearArg, QString::number(metadata.year), urlText);
		doUrlReplace(constTrackNoArg, QString::number(metadata.track), urlText);
	}

	// For some reason Qt messes up the ? -> %3F and & -> %26 conversions - by placing 25 after the %
	// So, try and revert this...
	QUrl url(urlText);

	if (urlContainsDetails) {
		QByteArray data = url.toEncoded();
		data.replace("%253F", "%3F");
		data.replace("%253f", "%3f");
		data.replace("%2526", "%26");
		url = QUrl::fromEncoded(data, QUrl::StrictMode);
	}

	QNetworkRequest req(url);
	req.setRawHeader("User-Agent", "Mozilla/5.0 (X11; Linux i686; rv:6.0) Gecko/20100101 Firefox/6.0");
	NetworkJob* reply = NetworkAccessManager::self()->get(req);
	requests[reply] = id;
	connect(reply, SIGNAL(finished()), this, SLOT(lyricsFetched()));
}

void UltimateLyricsProvider::abort()
{
	QHash<NetworkJob*, int>::ConstIterator it(requests.constBegin());
	QHash<NetworkJob*, int>::ConstIterator end(requests.constEnd());

	for (; it != end; ++it) {
		it.key()->cancelAndDelete();
	}
	requests.clear();
	songs.clear();
}

void UltimateLyricsProvider::wikiMediaSearchResponse()
{
	NetworkJob* reply = qobject_cast<NetworkJob*>(sender());
	if (!reply) {
		return;
	}

	int id = requests.take(reply);
	reply->deleteLater();

	if (!reply->ok()) {
		Song song = songs.take(id);
		if (tryWithoutThe(song)) {
			fetchInfo(id, song, true);
		}
		else {
			emit lyricsReady(id, QString());
		}
		return;
	}

	QUrl url;
	QXmlStreamReader doc(reply->actualJob());
	while (!doc.atEnd()) {
		doc.readNext();
		if (doc.isStartElement() && QLatin1String("url") == doc.name()) {
			QString lyricsUrl = doc.readElementText();
			if (!lyricsUrl.contains(QLatin1String("action=edit"))) {
				url = QUrl::fromEncoded(lyricsUrl.toUtf8()).toString();
			}
			break;
		}
	}

	if (url.isValid()) {
		QString path = url.path();
		QByteArray u = url.scheme().toLatin1() + "://" + url.host().toLatin1() + "/api.php?action=query&prop=revisions&rvprop=content&format=xml&titles=";
		QByteArray titles = QUrl::toPercentEncoding(path.startsWith(QLatin1Char('/')) ? path.mid(1) : path).replace('+', "%2b");
		NetworkJob* reply = NetworkAccessManager::self()->get(QUrl::fromEncoded(u + titles));
		requests[reply] = id;
		connect(reply, SIGNAL(finished()), this, SLOT(wikiMediaLyricsFetched()));
	}
	else {
		emit lyricsReady(id, QString());
	}
}

void UltimateLyricsProvider::wikiMediaLyricsFetched()
{
	NetworkJob* reply = qobject_cast<NetworkJob*>(sender());
	if (!reply) {
		return;
	}

	int id = requests.take(reply);
	reply->deleteLater();

	if (!reply->ok()) {
		Song song = songs.take(id);
		if (tryWithoutThe(song)) {
			fetchInfo(id, song, true);
		}
		else {
			emit lyricsReady(id, QString());
		}
		return;
	}

	auto fromCharset = QStringDecoder(charset.toLatin1().constData(), QStringConverter::Flag::Default);
	QString contents = fromCharset(reply->readAll());
	contents = contents.replace("<br />", "<br/>");
	DBUG << name << "response" << contents;
	emit lyricsReady(id, extract(contents, QLatin1String("&lt;lyrics&gt;"), QLatin1String("&lt;/lyrics&gt;")));
}

void UltimateLyricsProvider::lyricsFetched()
{
	NetworkJob* reply = qobject_cast<NetworkJob*>(sender());
	if (!reply) {
		return;
	}

	int id = requests.take(reply);
	reply->deleteLater();
	Song song = songs.take(id);

	if (!reply->ok()) {
		//emit Finished(id);
		if (tryWithoutThe(song)) {
			fetchInfo(id, song, true);
		}
		else {
			emit lyricsReady(id, QString());
		}
		return;
	}

	auto decode = QStringDecoder(charset.toLatin1().constData());
	QString originalContent = decode(reply->readAll());
	originalContent = originalContent.replace("<br />", "<br/>");

	DBUG << name << "response" << originalContent;
	// Check for invalid indicators
	for (const QString& indicator : invalidIndicators) {
		if (originalContent.contains(indicator)) {
			//emit Finished(id);
			DBUG << name << "invalid";
			if (tryWithoutThe(song)) {
				fetchInfo(id, song, true);
			}
			else {
				emit lyricsReady(id, QString());
			}
			return;
		}
	}

	QString lyrics;

	// Apply extract rules
	for (const Rule& rule : extractRules) {
		QString content = originalContent;
		applyExtractRule(rule, content, song);
#ifndef Q_OS_WIN
		content.replace(QLatin1String("\r"), QLatin1String(""));
#endif
		content = content.trimmed();

		if (!content.isEmpty()) {
			lyrics = content;
			break;
		}
	}

	// Apply exclude rules
	for (const Rule& rule : excludeRules) {
		applyExcludeRule(rule, lyrics, song);
	}

	lyrics = lyrics.trimmed();
	lyrics.replace("<br/>\n", "<br/>");
	lyrics.replace("<br>\n", "<br/>");
	DBUG << name << (lyrics.isEmpty() ? "empty" : "succeeded");
	if (lyrics.isEmpty() && tryWithoutThe(song)) {
		fetchInfo(id, song, true);
	}
	else {
		emit lyricsReady(id, lyrics);
	}
}

void UltimateLyricsProvider::doUrlReplace(const QString& tag, const QString& value, QString& u) const
{
	if (!u.contains(tag)) {
		return;
	}

	// Apply URL character replacement
	QString valueCopy(value);
	for (const UltimateLyricsProvider::UrlFormat& format : urlFormats) {
		QRegularExpression re("[" + QRegularExpression::escape(format.first) + "]");
		valueCopy.replace(re, format.second);
	}
	u.replace(tag, urlEncode(valueCopy), Qt::CaseInsensitive);
}

#include "moc_ultimatelyricsprovider.cpp"