120 lines
4.7 KiB
Python
120 lines
4.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright(C) 2010 Romain Bignon
|
|
#
|
|
# 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, version 3 of the License.
|
|
#
|
|
# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
from __future__ import with_statement
|
|
|
|
from weboob.tools.backend import BaseBackend
|
|
from weboob.tools.browser import BrowserUnavailable
|
|
from weboob.capabilities.messages import ICapMessages, ICapMessagesReply, Message
|
|
|
|
from .feeds import ArticlesList
|
|
from .browser import DLFP
|
|
|
|
|
|
__all__ = ['DLFPBackend']
|
|
|
|
|
|
class DLFPBackend(BaseBackend, ICapMessages, ICapMessagesReply):
|
|
NAME = 'dlfp'
|
|
MAINTAINER = 'Romain Bignon'
|
|
EMAIL = 'romain@peerfuse.org'
|
|
VERSION = '0.1'
|
|
LICENSE = 'GPLv3'
|
|
DESCRIPTION = "Da Linux French Page"
|
|
CONFIG = {'username': BaseBackend.ConfigField(description='Username on website', regexp='.+'),
|
|
'password': BaseBackend.ConfigField(description='Password of account', regexp='.+', is_masked=True),
|
|
'get_news': BaseBackend.ConfigField(default=True, description='Get newspapers'),
|
|
'get_telegrams': BaseBackend.ConfigField(default=False, description='Get telegrams'),
|
|
}
|
|
STORAGE = {'seen': {}}
|
|
BROWSER = DLFP
|
|
|
|
def create_default_browser(self):
|
|
return self.create_browser(self.config['username'], self.config['password'])
|
|
|
|
def iter_messages(self, thread=None):
|
|
return self._iter_messages(thread, False)
|
|
|
|
def iter_new_messages(self, thread=None):
|
|
return self._iter_messages(thread, True)
|
|
|
|
def _iter_messages(self, thread, only_new):
|
|
if self.config['get_news']:
|
|
for message in self._iter_messages_of('newspaper', thread, only_new):
|
|
yield message
|
|
if self.config['get_telegrams']:
|
|
for message in self._iter_messages_of('telegram', thread, only_new):
|
|
yield message
|
|
|
|
def _iter_messages_of(self, what, thread_wanted, only_new):
|
|
if not what in self.storage.get('seen', default={}):
|
|
self.storage.set('seen', what, {})
|
|
|
|
seen = {}
|
|
for article in ArticlesList(what).iter_articles():
|
|
if thread_wanted and thread_wanted != article.id:
|
|
continue
|
|
|
|
flags = Message.IS_HTML
|
|
if not article.id in self.storage.get('seen', what, default={}):
|
|
seen[article.id] = {'comments': []}
|
|
flags |= Message.IS_NEW
|
|
else:
|
|
seen[article.id] = self.storage.get('seen', what, article.id, default={})
|
|
|
|
try:
|
|
with self.browser:
|
|
thread = self.browser.get_content(article.id)
|
|
except BrowserUnavailable:
|
|
continue
|
|
|
|
if not only_new or flags & Message.IS_NEW:
|
|
yield Message(thread.id,
|
|
0,
|
|
thread.title,
|
|
thread.author,
|
|
article.datetime,
|
|
content=''.join([thread.body, thread.part2]),
|
|
signature='URL: %s' % article.url,
|
|
flags=flags)
|
|
|
|
for comment in thread.iter_all_comments():
|
|
flags = Message.IS_HTML
|
|
if not comment.id in seen[article.id]['comments']:
|
|
seen[article.id]['comments'].append(comment.id)
|
|
flags |= Message.IS_NEW
|
|
|
|
if not only_new or flags & Message.IS_NEW:
|
|
yield Message(thread.id,
|
|
comment.id,
|
|
comment.title,
|
|
comment.author,
|
|
comment.date,
|
|
comment.reply_id,
|
|
comment.body,
|
|
'Score: %d' % comment.score,
|
|
flags)
|
|
|
|
# If there is no articles seen, it's suspicious, probably I can't
|
|
# fetch the feed.
|
|
if seen:
|
|
self.storage.set('seen', what, seen)
|
|
self.storage.save()
|
|
|
|
def post_reply(self, thread_id, reply_id, title, message):
|
|
with self.browser:
|
|
return self.browser.post_reply(thread_id, reply_id, title, message)
|