Skip to content
module.py 4.32 KiB
Newer Older
# Copyright(C) 2017      Théo Dorée
Roger Philibert's avatar
Roger Philibert committed
# This file is part of a woob module.
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
# 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,
# 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.
# 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 collections import OrderedDict
from urllib.parse import urljoin
Florian Duguet's avatar
Florian Duguet committed
from woob.capabilities.bill import (
    DocumentTypes, CapDocument, Subscription, Document, DocumentNotFound,
Florian Duguet's avatar
Florian Duguet committed
    DocumentCategory,
)
from woob.capabilities.base import find_object, NotAvailable
from woob.tools.backend import Module, BackendConfig
from woob.tools.value import ValueBackendPassword, Value, ValueTransient
from woob.tools.pdf import html_to_pdf
from .browser import AmazonBrowser
from .en.browser import AmazonEnBrowser
from .de.browser import AmazonDeBrowser
from .uk.browser import AmazonUkBrowser
Kitof's avatar
Kitof committed

class AmazonModule(Module, CapDocument):
    MAINTAINER = 'Théo Dorée'
    EMAIL = 'tdoree@budget-insight.com'
    LICENSE = 'LGPLv3+'
Romain Bignon's avatar
Romain Bignon committed
    VERSION = '3.6'
    website_choices = OrderedDict([
        (k, '%s (%s)' % (v, k))
        for k, v in sorted({
            'www.amazon.com': 'Amazon.com',
            'www.amazon.fr': 'Amazon France',
            'www.amazon.de': 'Amazon.de',
            'www.amazon.co.uk': 'Amazon UK',
        }.items())
    ])
        'www.amazon.fr': AmazonBrowser,
        'www.amazon.com': AmazonEnBrowser,
        'www.amazon.de': AmazonDeBrowser,
        'www.amazon.co.uk': AmazonUkBrowser,
    }
        Value('website', label='Website', choices=website_choices, default='www.amazon.com'),
        ValueBackendPassword('email', label='Username', masked=False),
        ValueBackendPassword('password', label='Password'),
        ValueTransient('captcha_response', label='Captcha Response'),
        ValueTransient('pin_code', label='OTP response'),
        ValueTransient('request_information'),
        ValueTransient('resume'),
    accepted_document_types = (DocumentTypes.BILL,)
Florian Duguet's avatar
Florian Duguet committed
    document_categories = {DocumentCategory.SHOPPING}
    def create_default_browser(self):
        self.BROWSER = self.BROWSERS[self.config['website'].get()]
        return self.create_browser(self.config)
Baptiste Delpey's avatar
Baptiste Delpey committed
    def iter_subscription(self):
        return self.browser.iter_subscription()
Baptiste Delpey's avatar
Baptiste Delpey committed

    def get_document(self, _id):
Baptiste Delpey's avatar
Baptiste Delpey committed
        subscription = self.get_subscription(subid)
        return find_object(self.iter_documents(subscription), id=_id, error=DocumentNotFound)
Baptiste Delpey's avatar
Baptiste Delpey committed

    def iter_documents(self, subscription):
Baptiste Delpey's avatar
Baptiste Delpey committed
        if not isinstance(subscription, Subscription):
            subscription = self.get_subscription(subscription)
        return self.browser.iter_documents(subscription)
Baptiste Delpey's avatar
Baptiste Delpey committed

    def get_pdf_from_cache_or_download_it(self, document):
        summary_document = self.browser.summary_documents_content.pop(document.id, None)
        if summary_document:
            return summary_document
        return self.browser.open(document.url).content

    def download_document(self, document):
        if not isinstance(document, Document):
            document = self.get_document(document)
        if document.url is NotAvailable:
            return
        return self.get_pdf_from_cache_or_download_it(document)

    def download_document_pdf(self, document):
        if not isinstance(document, Document):
            document = self.get_document(document)
        if document.url is NotAvailable:
            return
        if document.format == 'pdf':
            return self.get_pdf_from_cache_or_download_it(document)
        # We can't pass the html document we saved before as a string since there is a freeze when wkhtmltopdf
        # takes a string
        url = urljoin(self.browser.BASEURL, document.url)
        return html_to_pdf(self.browser, url=url)