Skip to content
module.py 2.78 KiB
Newer Older
Florent's avatar
Florent committed
# -*- coding: utf-8 -*-

Florent's avatar
Florent committed
# Copyright(C) 2013-2014 Florent Fourcot
Florent's avatar
Florent committed
#
# This file is part of a weboob module.
Florent's avatar
Florent committed
#
# This weboob module is free software: you can redistribute it and/or modify
Florent's avatar
Florent committed
# 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,
Florent's avatar
Florent committed
# 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/>.
Florent's avatar
Florent committed


from weboob.capabilities.bill import CapDocument, Subscription, SubscriptionNotFound, Detail
Florent's avatar
Florent committed
from weboob.capabilities.base import find_object
from weboob.tools.backend import Module, BackendConfig
Florent's avatar
Florent committed
from weboob.tools.value import ValueBackendPassword

from .browser import PoivyBrowser


Florent's avatar
Florent committed
__all__ = ['PoivyModule']
Florent's avatar
Florent committed


class PoivyModule(Module, CapDocument):
Florent's avatar
Florent committed
    NAME = 'poivy'
    MAINTAINER = u'Florent Fourcot'
    EMAIL = 'weboob@flo.fourcot.fr'
Romain Bignon's avatar
Romain Bignon committed
    VERSION = '1.5'
Florent's avatar
Florent committed
    LICENSE = 'AGPLv3+'
    DESCRIPTION = 'Poivy website'
    CONFIG = BackendConfig(ValueBackendPassword('login',
                                                label='login',
                                                masked=False),
                           ValueBackendPassword('password',
                                                label='Password')
                           )
    BROWSER = PoivyBrowser

    def create_default_browser(self):
        return self.create_browser(self.config['login'].get(),
                                   self.config['password'].get())

    def iter_subscription(self):
Florent's avatar
Florent committed
        return self.browser.get_subscription_list()
Florent's avatar
Florent committed

    def get_subscription(self, _id):
        return find_object(self.iter_subscription(), id=_id, error=SubscriptionNotFound)
Florent's avatar
Florent committed

    def iter_documents_history(self, subscription):
Florent's avatar
Florent committed
        # Try if we have a real subscription before to load the history
        if not isinstance(subscription, Subscription):
            subscription = self.get_subscription(subscription)
Florent's avatar
Florent committed
        return self.browser.get_history()
Florent's avatar
Florent committed

    # No details on the website
    def get_details(self, subscription):
        raise NotImplementedError()

    def get_balance(self, subscription):
        if not isinstance(subscription, Subscription):
            subscription = self.get_subscription(subscription)
        balance = Detail()
        balance.id = "%s-balance" % subscription.id
        balance.price = subscription._balance
        balance.label = u"Balance %s" % subscription.id
Florent's avatar
Florent committed
        balance.currency = u'EUR'
Florent's avatar
Florent committed
        return balance