Skip to content
browser.py 2.55 KiB
Newer Older
# -*- coding: utf-8 -*-

# Copyright(C) 2013      Romain Bignon
#
# This file is part of a weboob module.
# This weboob module 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.
#
# This weboob module 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 this weboob module. If not, see <http://www.gnu.org/licenses/>.
ntome's avatar
ntome committed
from weboob.browser import LoginBrowser, URL, need_login
from weboob.capabilities.base import find_object
from weboob.exceptions import BrowserIncorrectPassword
from .pages import LoginPage, AccountsPage, InvestmentsPage, OperationsPage


__all__ = ['ApivieBrowser']


ntome's avatar
ntome committed
class ApivieBrowser(LoginBrowser):
    login = URL(r'/$',
                r'/accueil$',
                r'/perte.*',
                LoginPage)
    accounts = URL(r'/accueil-connect', AccountsPage)
    investments = URL(r'/synthese-contrat.*', InvestmentsPage)
    operations = URL(r'/historique-contrat.*', OperationsPage)
    def __init__(self, website, *args, **kwargs):
ntome's avatar
ntome committed
        self.BASEURL = 'https://%s' % website
        super(ApivieBrowser, self).__init__(*args, **kwargs)
    def home(self):
ntome's avatar
ntome committed
        self.location('%s/accueil-connect' % self.BASEURL)
ntome's avatar
ntome committed
    def do_login(self):
        if not self.login.is_here():
            self.location('/accueil')

        self.page.login(self.username, self.password)

        if self.login.is_here() or self.page is None:
            raise BrowserIncorrectPassword()

ntome's avatar
ntome committed
    @need_login
    def iter_accounts(self):
        self.location('/accueil-connect')
        return self.page.iter_accounts()

ntome's avatar
ntome committed
    @need_login
    def get_account(self, _id):
ntome's avatar
ntome committed
        return find_object(self.iter_accounts(), id=_id)
ntome's avatar
ntome committed
    @need_login
    def iter_investment(self, account):
ntome's avatar
ntome committed
        self.location('/synthese-contrat', params={'contratId': account.id})
ntome's avatar
ntome committed
        assert self.investments.is_here()
        return self.page.iter_investment()

ntome's avatar
ntome committed
    @need_login
    def iter_history(self, account):
ntome's avatar
ntome committed
        self.location('/historique-contrat', params={'contratId': account.id})
ntome's avatar
ntome committed
        assert self.operations.is_here()
        return self.page.iter_history()
ntome's avatar
ntome committed
    @need_login
Baptiste Delpey's avatar
Baptiste Delpey committed
    def get_subscription_list(self):
ntome's avatar
ntome committed
        return []