new module apivie (ICapBank)
This commit is contained in:
parent
c4ea02593e
commit
3023787214
6 changed files with 278 additions and 0 deletions
74
modules/apivie/browser.py
Normal file
74
modules/apivie/browser.py
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright(C) 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 weboob.tools.browser import BaseBrowser, BrowserIncorrectPassword
|
||||
|
||||
from .pages import LoginPage, AccountsPage, OperationsPage
|
||||
|
||||
|
||||
__all__ = ['ApivieBrowser']
|
||||
|
||||
|
||||
class ApivieBrowser(BaseBrowser):
|
||||
PROTOCOL = 'https'
|
||||
DOMAIN = 'www.apivie.fr'
|
||||
ENCODING = None
|
||||
|
||||
PAGES = {
|
||||
'https?://www.apivie.fr/': LoginPage,
|
||||
'https?://www.apivie.fr/accueil': LoginPage,
|
||||
'https?://www.apivie.fr/perte.*': LoginPage,
|
||||
'https?://www.apivie.fr/accueil-connect': AccountsPage,
|
||||
'https?://www.apivie.fr/historique-contrat.*': OperationsPage,
|
||||
}
|
||||
|
||||
def home(self):
|
||||
self.location('https://www.apivie.fr/accueil-connect')
|
||||
|
||||
def login(self):
|
||||
assert isinstance(self.username, basestring)
|
||||
assert isinstance(self.password, basestring)
|
||||
|
||||
if not self.is_on_page(LoginPage):
|
||||
self.location('/accueil', no_login=True)
|
||||
|
||||
self.page.login(self.username, self.password)
|
||||
|
||||
if not self.is_logged():
|
||||
raise BrowserIncorrectPassword()
|
||||
|
||||
def is_logged(self):
|
||||
return not self.is_on_page(LoginPage)
|
||||
|
||||
def iter_accounts(self):
|
||||
self.location('/accueil-connect')
|
||||
return self.page.iter_accounts()
|
||||
|
||||
def get_account(self, _id):
|
||||
try:
|
||||
return next(a for a in self.get_accounts_list() if a.id == id)
|
||||
except StopIteration:
|
||||
return None
|
||||
|
||||
def iter_history(self, account):
|
||||
self.location(self.buildurl('/historique-contrat', contratId=account.id))
|
||||
|
||||
assert self.is_on_page(OperationsPage)
|
||||
return self.page.iter_history()
|
||||
Loading…
Add table
Add a link
Reference in a new issue