]> git.sur5r.net Git - minitube/blob - src/channelsuggest.cpp
Imported Upstream version 2.1.3
[minitube] / src / channelsuggest.cpp
1 /* $BEGIN_LICENSE
2
3 This file is part of Minitube.
4 Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
5
6 Minitube is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 Minitube is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
18
19 $END_LICENSE */
20
21 #include "channelsuggest.h"
22 #include "networkaccess.h"
23
24 namespace The {
25     NetworkAccess* http();
26 }
27
28 ChannelSuggest::ChannelSuggest(QObject *parent) : Suggester(parent) {
29
30 }
31
32 void ChannelSuggest::suggest(QString query) {
33     QUrl url("http://www.youtube.com/results");
34     url.addQueryItem("search_type", "search_users");
35     url.addQueryItem("search_query", query);
36     QObject *reply = The::http()->get(url);
37     connect(reply, SIGNAL(data(QByteArray)), SLOT(handleNetworkData(QByteArray)));
38 }
39
40 void ChannelSuggest::handleNetworkData(QByteArray data) {
41     QStringList choices;
42     QString html = QString::fromUtf8(data);
43     QRegExp re("/user/([a-zA-Z0-9]+)");
44
45     int pos = 0;
46     while ((pos = re.indexIn(html, pos)) != -1) {
47         // qDebug() << re.cap(0) << re.cap(1);
48         QString choice = re.cap(1);
49         if (!choices.contains(choice, Qt::CaseInsensitive)) {
50             choices << choice;
51             if (choices.size() == 10) break;
52         }
53         pos += re.matchedLength();
54     }
55
56     emit ready(choices);
57 }