Skip to content
module.py 3.05 KiB
Newer Older
# -*- coding: utf-8 -*-

# Copyright(C) 2010-2015 Bezleputh
Romain Bignon's avatar
Romain Bignon committed
# This file is part of weboob.
Romain Bignon's avatar
Romain Bignon committed
# 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
Romain Bignon's avatar
Romain Bignon committed
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
Romain Bignon's avatar
Romain Bignon committed
# 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 __future__ import unicode_literals
from weboob.capabilities.bill import CapDocument, Subscription, Document, SubscriptionNotFound, DocumentNotFound
from weboob.capabilities.messages import CantSendMessage, CapMessages, CapMessagesPost
from weboob.capabilities.base import find_object
cadrien's avatar
cadrien committed
from weboob.capabilities.profile import CapProfile
from weboob.tools.backend import Module, BackendConfig
from weboob.tools.value import ValueBackendPassword, Value

from .browser import BouyguesBrowser


Florent's avatar
Florent committed
__all__ = ['BouyguesModule']
cadrien's avatar
cadrien committed
class BouyguesModule(Module, CapMessages, CapMessagesPost, CapDocument, CapProfile):
    NAME = 'bouygues'
    MAINTAINER = 'Bezleputh'
    EMAIL = 'carton_ben@yahoo.fr'
Romain Bignon's avatar
Romain Bignon committed
    VERSION = '1.5'
    DESCRIPTION = u'Bouygues Télécom French mobile phone provider'
Romain Bignon's avatar
Romain Bignon committed
    LICENSE = 'AGPLv3+'
    CONFIG = BackendConfig(Value('login', label='E-mail / N° de Téléphone'),
                           ValueBackendPassword('password', label='Mot de passe'),
                           ValueBackendPassword('lastname', label='Nom de famille', default=u''))
    BROWSER = BouyguesBrowser

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

    def post_message(self, message):
        if not message.content.strip():
            raise CantSendMessage('Message content is empty.')
        self.browser.post_message(message)

    def iter_subscription(self):
        return self.browser.iter_subscriptions()

    def get_subscription(self, _id):
        return find_object(self.iter_subscription(), id=_id, error=SubscriptionNotFound)

    def get_document(self, _id):
        subid = _id.rsplit('_', 1)[0]
        subscription = self.get_subscription(subid)
        return find_object(self.iter_documents(subscription), id=_id, error=DocumentNotFound)
    def iter_documents(self, subscription):
        if not isinstance(subscription, Subscription):
            subscription = self.get_subscription(subscription)
        return self.browser.iter_documents(subscription)
    def download_document(self, document):
        if not isinstance(document, Document):
            document = self.get_document(document)
        return self.browser.download_document(document)
cadrien's avatar
cadrien committed

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