]> git.sur5r.net Git - minitube/blobdiff - src/ytfeedreader.cpp
SearchLineEdit refactoring
[minitube] / src / ytfeedreader.cpp
index 2551d8426f33656fc53ecb8b4a83f3d45ab00d49..c063ce243999643b2b7727a4a7118eda64e5d3c6 100644 (file)
@@ -1,3 +1,23 @@
+/* $BEGIN_LICENSE
+
+This file is part of Minitube.
+Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
+
+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 <http://www.gnu.org/licenses/>.
+
+$END_LICENSE */
+
 #include "ytfeedreader.h"
 #include "video.h"
 
@@ -36,17 +56,15 @@ void YTFeedReader::readEntry() {
                     ) {
                 QString webpage = attributes().value("href").toString();
                 webpage.remove("&feature=youtube_gdata");
-                video->setWebpage(QUrl(webpage));
+                video->setWebpage(webpage);
             } else if (name() == QLatin1String("author")) {
                 while(readNextStartElement())
                     if (name() == QLatin1String("name")) {
                         QString author = readElementText();
-                        video->setAuthor(author);
-                    } else if (name() == QLatin1String("uri")) {
-                        QString uri = readElementText();
-                        int i = uri.lastIndexOf('/');
-                        if (i != -1) uri = uri.mid(i+1);
-                        video->setAuthorUri(uri);
+                        video->setChannelTitle(author);
+                    } else if (name() == QLatin1String("userId")) {
+                        QString userId = readElementText();
+                        video->setChannelId(userId);
                     } else skipCurrentElement();
             } else if (name() == QLatin1String("published")) {
                 video->setPublished(QDateTime::fromString(readElementText(), Qt::ISODate));
@@ -66,7 +84,7 @@ void YTFeedReader::readEntry() {
                         if (name() == QLatin1String("thumbnail")) {
                             // qDebug() << "Thumb: " << attributes().value("url").toString();
                             QStringRef name = attributes().value("yt:name");
-                            if (name == QLatin1String("default"))
+                            if (name == QLatin1String("mqdefault"))
                                 video->setThumbnailUrl(
                                             attributes().value("url").toString());
                             else if (name == QLatin1String("hqdefault"))
@@ -88,6 +106,12 @@ void YTFeedReader::readEntry() {
                             // qDebug() << "Duration: " << duration;
                             video->setDuration(duration.toInt());
                         }
+                        else if (name() == QLatin1String("license")) {
+                            QString license = readElementText();
+                            // qDebug() << "License: " << license;
+                            if (license == QLatin1String("cc"))
+                                video->setLicense(Video::LicenseCC);
+                        }
                     }
                 }
             }