Skip to content
module.py 2.66 KiB
Newer Older
James GALT's avatar
James GALT committed
# Copyright(C) 2016      James GALT
Tom LARGE's avatar
Tom LARGE committed

# flake8: compatible
James GALT's avatar
James GALT committed
#
Roger Philibert's avatar
Roger Philibert committed
# This file is part of a woob module.
James GALT's avatar
James GALT committed
#
Roger Philibert's avatar
Roger Philibert committed
# This woob module is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
James GALT's avatar
James GALT committed
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
Roger Philibert's avatar
Roger Philibert committed
# This woob module is distributed in the hope that it will be useful,
James GALT's avatar
James GALT committed
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
James GALT's avatar
James GALT committed
#
# You should have received a copy of the GNU Lesser General Public License
Roger Philibert's avatar
Roger Philibert committed
# along with this woob module. If not, see <http://www.gnu.org/licenses/>.
from woob.capabilities.bank.wealth import CapBankWealth
from woob.tools.backend import Module, BackendConfig
from woob.tools.value import ValueBackendPassword, Value, ValueTransient
from .browser import EEAmundi, TCAmundi, CAAmundi, ESAmundi
James GALT's avatar
James GALT committed
__all__ = ['AmundiModule']


class AmundiModule(Module, CapBankWealth):
James GALT's avatar
James GALT committed
    NAME = 'amundi'
Antoine BOSSY's avatar
Antoine BOSSY committed
    DESCRIPTION = u'Amundi'
James GALT's avatar
James GALT committed
    MAINTAINER = u'James GALT'
    EMAIL = 'james.galt.bi@gmail.com'
    LICENSE = 'LGPLv3+'
Romain Bignon's avatar
Romain Bignon committed
    VERSION = '3.6'
    CONFIG = BackendConfig(
        ValueBackendPassword('login', label='Identifiant', regexp=r'\d+', masked=False),
        ValueBackendPassword('password', label='Mot de passe'),
        ValueTransient('captcha_response'),
sfartit's avatar
sfartit committed
        ValueTransient('request_information'),
        ValueTransient('resume'),
        Value(
            'website',
            label='Type de compte',
            default='ee',
            choices={
                'ee': 'Amundi Epargne Entreprise',
                'tc': 'Amundi Tenue de Compte',
                'ca': 'Amundi Crédit Agricole Assurances',
                'es': 'Amundi Employee Shareholdings',
sfartit's avatar
sfartit committed
        ),
James GALT's avatar
James GALT committed

    def create_default_browser(self):
        browsers = {
            'ee': EEAmundi,
            'tc': TCAmundi,
            'ca': CAAmundi,
            'es': ESAmundi,
        }
        self.BROWSER = browsers[self.config['website'].get()]
        return self.create_browser(
            self.config['login'].get(),
            self.config['password'].get()
        )
James GALT's avatar
James GALT committed

    def iter_accounts(self):
        return self.browser.iter_accounts()

    def iter_investment(self, account):
        for inv in self.browser.iter_investment(account):
            if inv.valuation != 0:
                yield inv
    def iter_pocket(self, account):
        return self.browser.iter_pockets(account)

James GALT's avatar
James GALT committed
    def iter_history(self, account):
        return self.browser.iter_history(account)