qBittorrent/src/base/rss/rssarticle.cpp

144 lines
3.6 KiB
C++
Raw Normal View History

/*
2015-10-14 12:49:29 +03:00
* Bittorrent Client using Qt and libtorrent.
* Copyright (C) 2010 Christophe Dumez <chris@qbittorrent.org>
* Copyright (C) 2010 Arnaud Demaiziere <arnaud@qbittorrent.org>
*
* This program 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 2
* of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* In addition, as a special exception, the copyright holders give permission to
* link this program with the OpenSSL project's "OpenSSL" library (or with
* modified versions of it that use the same license as the "OpenSSL" library),
* and distribute the linked executables. You must obey the GNU General Public
* License in all respects for all of the code used other than "OpenSSL". If you
* modify file(s), you may extend this exception to your version of the file(s),
* but you are not obligated to do so. If you do not wish to do so, delete this
* exception statement from your version.
*
* Contact: chris@qbittorrent.org, arnaud@qbittorrent.org
*/
#include <QVariant>
#include <QDebug>
#include <iostream>
#include "rssfeed.h"
2015-10-14 12:31:44 +03:00
#include "rssarticle.h"
2015-10-15 19:33:27 +03:00
using namespace Rss;
// public constructor
2015-10-15 19:33:27 +03:00
Article::Article(Feed *parent, const QString &guid)
2015-10-14 12:49:29 +03:00
: m_parent(parent)
, m_guid(guid)
, m_read(false)
{
}
2015-10-15 19:33:27 +03:00
bool Article::hasAttachment() const
2015-10-14 12:49:29 +03:00
{
return !m_torrentUrl.isEmpty();
2012-02-19 17:42:51 +04:00
}
2015-10-15 19:33:27 +03:00
QVariantHash Article::toHash() const
2015-10-14 12:49:29 +03:00
{
QVariantHash item;
item["title"] = m_title;
item["id"] = m_guid;
item["torrent_url"] = m_torrentUrl;
item["news_link"] = m_link;
item["description"] = m_description;
item["date"] = m_date;
item["author"] = m_author;
item["read"] = m_read;
return item;
}
2015-10-15 19:33:27 +03:00
ArticlePtr Article::fromHash(Feed *parent, const QVariantHash &h)
2015-10-14 12:49:29 +03:00
{
const QString guid = h.value("id").toString();
if (guid.isEmpty())
2015-10-15 19:33:27 +03:00
return ArticlePtr();
2015-10-14 12:49:29 +03:00
2015-10-15 19:33:27 +03:00
ArticlePtr art(new Article(parent, guid));
2015-10-14 12:49:29 +03:00
art->m_title = h.value("title", "").toString();
art->m_torrentUrl = h.value("torrent_url", "").toString();
art->m_link = h.value("news_link", "").toString();
art->m_description = h.value("description").toString();
art->m_date = h.value("date").toDateTime();
art->m_author = h.value("author").toString();
art->m_read = h.value("read", false).toBool();
return art;
}
2015-10-15 19:33:27 +03:00
Feed *Article::parent() const
2015-10-14 12:49:29 +03:00
{
return m_parent;
}
2015-10-15 19:33:27 +03:00
const QString &Article::author() const
2015-10-14 12:49:29 +03:00
{
return m_author;
}
2015-10-15 19:33:27 +03:00
const QString &Article::torrentUrl() const
2015-10-14 12:49:29 +03:00
{
return m_torrentUrl;
}
2015-10-15 19:33:27 +03:00
const QString &Article::link() const
2015-10-14 12:49:29 +03:00
{
return m_link;
}
2015-10-15 19:33:27 +03:00
QString Article::description() const
{
2015-10-14 12:49:29 +03:00
return m_description.isNull() ? "" : m_description;
}
2015-10-15 19:33:27 +03:00
const QDateTime &Article::date() const
2015-10-14 12:49:29 +03:00
{
return m_date;
}
2015-10-15 19:33:27 +03:00
bool Article::isRead() const
2015-10-14 12:49:29 +03:00
{
return m_read;
}
2015-10-15 19:33:27 +03:00
void Article::markAsRead()
2015-10-14 12:49:29 +03:00
{
2015-10-17 18:59:04 +03:00
if (!m_read) {
m_read = true;
emit articleWasRead();
}
}
2015-10-15 19:33:27 +03:00
const QString &Article::guid() const
{
2015-10-14 12:49:29 +03:00
return m_guid;
}
2015-10-15 19:33:27 +03:00
const QString &Article::title() const
{
2015-10-14 12:49:29 +03:00
return m_title;
}
2015-10-15 19:33:27 +03:00
void Article::handleTorrentDownloadSuccess(const QString &url)
2015-10-14 12:49:29 +03:00
{
if (url == m_torrentUrl)
markAsRead();
}