108 lines
3.6 KiB
Python
108 lines
3.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright(C) 2012 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/>.
|
|
|
|
|
|
import urllib
|
|
|
|
from weboob.tools.browser import BaseBrowser, BrowserIncorrectPassword
|
|
|
|
from .pages import LoginPage, LoginResultPage, AccountsPage, EmptyPage, TransactionsPage
|
|
|
|
|
|
__all__ = ['BredBrowser']
|
|
|
|
|
|
class BredBrowser(BaseBrowser):
|
|
PROTOCOL = 'https'
|
|
DOMAIN = 'www.bred.fr'
|
|
ENCODING = 'iso-8859-15'
|
|
PAGES = {'https://www.bred.fr/mylittleform.*': LoginPage,
|
|
'https://www.bred.fr/Andromede/MainAuth.*': LoginResultPage,
|
|
'https://www.bred.fr/Andromede/Main': AccountsPage,
|
|
'https://www.bred.fr/Andromede/Ecriture': TransactionsPage,
|
|
'https://www.bred.fr/Andromede/applications/index.jsp': EmptyPage,
|
|
'https://www.bred.fr/': EmptyPage,
|
|
}
|
|
|
|
def is_logged(self):
|
|
return self.page and not self.is_on_page(LoginPage)
|
|
|
|
def home(self):
|
|
return self.location('https://www.bred.fr/mylittleform?type=1')
|
|
|
|
def login(self):
|
|
assert isinstance(self.username, basestring)
|
|
assert isinstance(self.password, basestring)
|
|
|
|
if not self.is_on_page(LoginPage):
|
|
self.location('https://www.bred.fr/mylittleform?type=1', no_login=True)
|
|
|
|
self.page.login(self.username, self.password)
|
|
|
|
assert self.is_on_page(LoginResultPage)
|
|
|
|
error = self.page.get_error()
|
|
if error is not None:
|
|
raise BrowserIncorrectPassword(error)
|
|
|
|
self.page.confirm()
|
|
|
|
def get_accounts_list(self):
|
|
if not self.is_on_page(AccountsPage):
|
|
self.location('https://www.bred.fr/Andromede/Main')
|
|
return self.page.get_list()
|
|
|
|
def get_account(self, id):
|
|
assert isinstance(id, basestring)
|
|
|
|
l = self.get_accounts_list()
|
|
for a in l:
|
|
if a.id == id:
|
|
return a
|
|
|
|
return None
|
|
|
|
def iter_transactions(self, id):
|
|
numero_compte, numero_poste = id.split('.')
|
|
data = {'typeDemande': 'recherche',
|
|
'motRecherche': '',
|
|
'numero_compte': numero_compte,
|
|
'numero_poste': numero_poste,
|
|
'detail': '',
|
|
'tri': 'date',
|
|
'sens': 'sort',
|
|
'monnaie': 'EUR',
|
|
'index_hist': 4
|
|
}
|
|
self.location('https://www.bred.fr/Andromede/Ecriture', urllib.urlencode(data))
|
|
|
|
assert self.is_on_page(TransactionsPage)
|
|
return self.page.get_history()
|
|
|
|
def get_history(self, account):
|
|
for tr in self.iter_transactions(account.id):
|
|
yield tr
|
|
|
|
for tr in self.get_card_operations(account):
|
|
yield tr
|
|
|
|
def get_card_operations(self, account):
|
|
for id in account._card_links:
|
|
for tr in self.iter_transactions(id):
|
|
yield tr
|