X-Git-Url: https://git.sur5r.net/?p=minitube;a=blobdiff_plain;f=src%2Fytsearch.cpp;h=010cbd57d4ea0696041ed51c39a5b856f633439c;hp=9f3fd34f9cb47e111405ff81f8b01c8a98f62c32;hb=7cdd5bd476021ec84d54c4ec5be02280e1e9e548;hpb=a8e005af0aa72f809f823bbd741bb3d0def00ced diff --git a/src/ytsearch.cpp b/src/ytsearch.cpp index 9f3fd34..010cbd5 100644 --- a/src/ytsearch.cpp +++ b/src/ytsearch.cpp @@ -1,12 +1,35 @@ +/* $BEGIN_LICENSE + +This file is part of Minitube. +Copyright 2009, Flavio Tordini + +Minitube 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. + +Minitube 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 Minitube. If not, see . + +$END_LICENSE */ + #include "ytsearch.h" #include "ytfeedreader.h" #include "constants.h" #include "networkaccess.h" #include "searchparams.h" #include "video.h" +#include "utils.h" +#include "ytuser.h" namespace The { - NetworkAccess* http(); +NetworkAccess* http(); +QHash* globalActions(); } YTSearch::YTSearch(SearchParams *searchParams, QObject *parent) : @@ -104,7 +127,11 @@ void YTSearch::parseResults(QByteArray data) { if (name.isEmpty() && !searchParams->author().isEmpty()) { if (videos.isEmpty()) name = searchParams->author(); - else name = videos.first()->author(); + else { + name = videos.first()->author(); + // also grab the userId + userId = videos.first()->userId(); + } emit nameChanged(name); } @@ -123,3 +150,11 @@ QString YTSearch::videoIdFromUrl(QString url) { if (re.exactMatch(url)) return re.cap(1); return QString(); } + +QList YTSearch::getActions() { + QList channelActions; + if (searchParams->author().isEmpty()) + return channelActions; + channelActions << The::globalActions()->value("subscribe-channel"); + return channelActions; +}