Rename backend.py to module.py
This commit is contained in:
parent
ac5b410b0d
commit
f3aeddffbc
339 changed files with 175 additions and 175 deletions
182
modules/bnporc/module.py
Normal file
182
modules/bnporc/module.py
Normal file
|
|
@ -0,0 +1,182 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 2010-2013 Romain Bignon
|
||||
#
|
||||
# This file is part of weboob.
|
||||
#
|
||||
# weboob is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# weboob 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 Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
from decimal import Decimal
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
from weboob.capabilities.bank import CapBank, AccountNotFound, Account, Recipient
|
||||
from weboob.capabilities.messages import CapMessages, Thread
|
||||
from weboob.tools.backend import BaseModule, BackendConfig
|
||||
from weboob.tools.value import ValueBackendPassword, Value
|
||||
|
||||
from .browser import BNPorc
|
||||
from .enterprise.browser import BNPEnterprise
|
||||
|
||||
|
||||
__all__ = ['BNPorcModule']
|
||||
|
||||
|
||||
class BNPorcModule(BaseModule, CapBank, CapMessages):
|
||||
NAME = 'bnporc'
|
||||
MAINTAINER = u'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '1.0'
|
||||
LICENSE = 'AGPLv3+'
|
||||
DESCRIPTION = 'BNP Paribas'
|
||||
CONFIG = BackendConfig(
|
||||
ValueBackendPassword('login', label=u'Numéro client', masked=False),
|
||||
ValueBackendPassword('password', label=u'Code secret', regexp='^(\d{6}|)$'),
|
||||
#ValueBackendPassword('rotating_password', default='',
|
||||
# label='Password to set when the allowed uses are exhausted (6 digits)',
|
||||
# regexp='^(\d{6}|)$'),
|
||||
Value('website', label='Type de compte', default='pp',
|
||||
choices={'pp': 'Particuliers/Professionnels', 'ent': 'Entreprises'}))
|
||||
STORAGE = {'seen': []}
|
||||
|
||||
# Store the messages *list* for this duration
|
||||
CACHE_THREADS = timedelta(seconds=3 * 60 * 60)
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
BaseModule.__init__(self, *args, **kwargs)
|
||||
self._threads = None
|
||||
self._threads_age = datetime.utcnow()
|
||||
|
||||
def create_default_browser(self):
|
||||
b = {'pp': BNPorc, 'ent': BNPEnterprise}
|
||||
self.BROWSER = b[self.config['website'].get()]
|
||||
#if self.config['rotating_password'].get().isdigit() and len(self.config['rotating_password'].get()) == 6:
|
||||
# rotating_password = self.config['rotating_password'].get()
|
||||
#else:
|
||||
rotating_password = None
|
||||
if self.config['website'].get() != 'pp':
|
||||
return self.create_browser(self.config['login'].get(),
|
||||
self.config['password'].get())
|
||||
else:
|
||||
return self.create_browser(self.config['login'].get(),
|
||||
self.config['password'].get(),
|
||||
password_changed_cb=self._password_changed_cb,
|
||||
rotating_password=rotating_password)
|
||||
|
||||
def _password_changed_cb(self, old, new):
|
||||
self.config['password'].set(new)
|
||||
self.config['rotating_password'].set(old)
|
||||
self.config.save()
|
||||
|
||||
def iter_accounts(self):
|
||||
for account in self.browser.get_accounts_list():
|
||||
yield account
|
||||
|
||||
def get_account(self, _id):
|
||||
if not _id.isdigit():
|
||||
raise AccountNotFound()
|
||||
with self.browser:
|
||||
account = self.browser.get_account(_id)
|
||||
if account:
|
||||
return account
|
||||
else:
|
||||
raise AccountNotFound()
|
||||
|
||||
def iter_history(self, account):
|
||||
with self.browser:
|
||||
return self.browser.iter_history(account)
|
||||
|
||||
def iter_coming(self, account):
|
||||
with self.browser:
|
||||
return self.browser.iter_coming_operations(account)
|
||||
|
||||
def iter_transfer_recipients(self, ignored):
|
||||
if self.config['website'].get() != 'pp':
|
||||
raise NotImplementedError()
|
||||
|
||||
for account in self.browser.get_transfer_accounts().itervalues():
|
||||
recipient = Recipient()
|
||||
recipient.id = account.id
|
||||
recipient.label = account.label
|
||||
yield recipient
|
||||
|
||||
def transfer(self, account, to, amount, reason=None):
|
||||
if self.config['website'].get() != 'pp':
|
||||
raise NotImplementedError()
|
||||
|
||||
if isinstance(account, Account):
|
||||
account = account.id
|
||||
|
||||
try:
|
||||
assert account.isdigit()
|
||||
assert to.isdigit()
|
||||
amount = Decimal(amount)
|
||||
except (AssertionError, ValueError):
|
||||
raise AccountNotFound()
|
||||
|
||||
with self.browser:
|
||||
return self.browser.transfer(account, to, amount, reason)
|
||||
|
||||
def iter_threads(self, cache=False):
|
||||
"""
|
||||
If cache is False, always fetch the threads from the website.
|
||||
"""
|
||||
old = self._threads_age < datetime.utcnow() - self.CACHE_THREADS
|
||||
threads = self._threads
|
||||
if not cache or threads is None or old:
|
||||
with self.browser:
|
||||
threads = list(self.browser.iter_threads())
|
||||
# the website is stupid and does not have the messages in the proper order
|
||||
threads = sorted(threads, key=lambda t: t.date, reverse=True)
|
||||
self._threads = threads
|
||||
seen = self.storage.get('seen', default=[])
|
||||
for thread in threads:
|
||||
if thread.id not in seen:
|
||||
thread.root.flags |= thread.root.IS_UNREAD
|
||||
else:
|
||||
thread.root.flags &= ~thread.root.IS_UNREAD
|
||||
yield thread
|
||||
|
||||
def fill_thread(self, thread, fields=None):
|
||||
if fields is None or 'root' in fields:
|
||||
return self.get_thread(thread)
|
||||
|
||||
def get_thread(self, _id):
|
||||
if self.config['website'].get() != 'pp':
|
||||
raise NotImplementedError()
|
||||
|
||||
if isinstance(_id, Thread):
|
||||
thread = _id
|
||||
_id = thread.id
|
||||
else:
|
||||
thread = Thread(_id)
|
||||
with self.browser:
|
||||
thread = self.browser.get_thread(thread)
|
||||
return thread
|
||||
|
||||
def iter_unread_messages(self):
|
||||
if self.config['website'].get() != 'pp':
|
||||
raise NotImplementedError()
|
||||
|
||||
threads = list(self.iter_threads(cache=True))
|
||||
for thread in threads:
|
||||
if thread.root.flags & thread.root.IS_UNREAD:
|
||||
thread = self.fillobj(thread) or thread
|
||||
yield thread.root
|
||||
|
||||
def set_message_read(self, message):
|
||||
self.storage.get('seen', default=[]).append(message.thread.id)
|
||||
self.storage.save()
|
||||
|
||||
OBJECTS = {Thread: fill_thread}
|
||||
Loading…
Add table
Add a link
Reference in a new issue