Remove useless trailing \ Remove trailing spaces Add missing empty lines autopep8 -ir -j2 --select=E301,E302,E502,W291,W293,W391 . Diff quickly checked.
165 lines
7 KiB
Python
165 lines
7 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright(C) 2012 Romain Bignon
|
|
#
|
|
# This file is part of weboob.
|
|
#
|
|
# 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
|
|
# 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 weboob. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
from urlparse import urlsplit, parse_qsl
|
|
from decimal import Decimal
|
|
import re
|
|
|
|
from weboob.tools.browser import BasePage, BrowserUnavailable
|
|
from weboob.capabilities.bank import Account
|
|
from weboob.tools.capabilities.bank.transactions import FrenchTransaction
|
|
|
|
|
|
__all__ = ['LoginPage', 'IndexPage', 'AccountsPage', 'TransactionsPage', 'UnavailablePage']
|
|
|
|
|
|
class UnavailablePage(BasePage):
|
|
def on_loaded(self):
|
|
try:
|
|
a = self.document.xpath('//a[@class="btn"]')[0]
|
|
except IndexError:
|
|
raise BrowserUnavailable()
|
|
else:
|
|
self.browser.location(a.attrib['href'])
|
|
|
|
|
|
class LoginPage(BasePage):
|
|
def login(self, login, passwd):
|
|
self.browser.select_form(name='Login')
|
|
self.browser['IDToken1'] = login.encode(self.browser.ENCODING)
|
|
self.browser['IDToken2'] = passwd.encode(self.browser.ENCODING)
|
|
self.browser.submit(nologin=True)
|
|
|
|
|
|
class IndexPage(BasePage):
|
|
def get_token(self):
|
|
url = self.document.getroot().xpath('//frame[@name="portalHeader"]')[0].attrib['src']
|
|
v = urlsplit(url)
|
|
args = dict(parse_qsl(v.query))
|
|
return args['token']
|
|
|
|
|
|
class AccountsPage(BasePage):
|
|
ACCOUNT_TYPES = {u'Mes comptes d\'épargne': Account.TYPE_SAVINGS,
|
|
u'Mes comptes': Account.TYPE_CHECKING,
|
|
}
|
|
|
|
def is_error(self):
|
|
for script in self.document.xpath('//script'):
|
|
if script.text is not None and u"Le service est momentanément indisponible" in script.text:
|
|
return True
|
|
|
|
return False
|
|
|
|
def get_list(self):
|
|
account_type = Account.TYPE_UNKNOWN
|
|
|
|
params = {}
|
|
for field in self.document.xpath('//input'):
|
|
params[field.attrib['name']] = field.attrib.get('value', '')
|
|
|
|
for div in self.document.xpath('//div[@class="btit"]'):
|
|
account_type = self.ACCOUNT_TYPES.get(div.text.strip(), Account.TYPE_UNKNOWN)
|
|
|
|
for tr in div.getnext().xpath('.//tbody/tr'):
|
|
if not 'id' in tr.attrib:
|
|
continue
|
|
|
|
args = dict(parse_qsl(tr.attrib['id']))
|
|
tds = tr.findall('td')
|
|
|
|
if len(tds) < 4 or not 'identifiant' in args:
|
|
self.logger.warning('Unable to parse an account')
|
|
continue
|
|
|
|
account = Account()
|
|
account.id = args['identifiant']
|
|
account.label = u' '.join([u''.join([txt.strip() for txt in tds[1].itertext()]),
|
|
u''.join([txt.strip() for txt in tds[2].itertext()])]).strip()
|
|
account.type = account_type
|
|
balance = u''.join([txt.strip() for txt in tds[3].itertext()])
|
|
account.balance = Decimal(FrenchTransaction.clean_amount(balance))
|
|
account.currency = account.get_currency(balance)
|
|
account._params = params.copy()
|
|
account._params['dialogActionPerformed'] = 'SOLDE'
|
|
account._params['attribute($SEL_$%s)' % tr.attrib['id'].split('_')[0]] = tr.attrib['id'].split('_', 1)[1]
|
|
yield account
|
|
|
|
return
|
|
|
|
|
|
class Transaction(FrenchTransaction):
|
|
PATTERNS = [(re.compile('^RET DAB (?P<text>.*?) RETRAIT (DU|LE) (?P<dd>\d{2})(?P<mm>\d{2})(?P<yy>\d+).*'),
|
|
FrenchTransaction.TYPE_WITHDRAWAL),
|
|
(re.compile('^RET DAB (?P<text>.*?) CARTE ?:.*'),
|
|
FrenchTransaction.TYPE_WITHDRAWAL),
|
|
(re.compile('^(?P<text>.*) RETRAIT DU (?P<dd>\d{2})(?P<mm>\d{2})(?P<yy>\d{2}) .*'),
|
|
FrenchTransaction.TYPE_WITHDRAWAL),
|
|
(re.compile('^(RETRAIT CARTE )?RET(RAIT)? DAB (?P<text>.*)'),
|
|
FrenchTransaction.TYPE_WITHDRAWAL),
|
|
(re.compile('((\w+) )?(?P<dd>\d{2})(?P<mm>\d{2})(?P<yy>\d{2}) CB[:\*][^ ]+ (?P<text>.*)'),
|
|
FrenchTransaction.TYPE_CARD),
|
|
(re.compile('^VIR(EMENT)? (?P<text>.*)'), FrenchTransaction.TYPE_TRANSFER),
|
|
(re.compile('^PRLV (?P<text>.*)'), FrenchTransaction.TYPE_ORDER),
|
|
(re.compile('^CHEQUE.*'), FrenchTransaction.TYPE_CHECK),
|
|
(re.compile('^(AGIOS /|FRAIS) (?P<text>.*)', re.IGNORECASE),
|
|
FrenchTransaction.TYPE_BANK),
|
|
(re.compile('^(CONVENTION \d+ )?COTIS(ATION)? (?P<text>.*)', re.IGNORECASE),
|
|
FrenchTransaction.TYPE_BANK),
|
|
(re.compile('^REMISE (?P<text>.*)'), FrenchTransaction.TYPE_DEPOSIT),
|
|
(re.compile('^(?P<text>.*)( \d+)? QUITTANCE .*'),
|
|
FrenchTransaction.TYPE_ORDER),
|
|
(re.compile('^.* LE (?P<dd>\d{2})/(?P<mm>\d{2})/(?P<yy>\d{2})$'),
|
|
FrenchTransaction.TYPE_UNKNOWN),
|
|
]
|
|
|
|
|
|
class TransactionsPage(BasePage):
|
|
def get_next_params(self):
|
|
nxt = self.document.xpath('//li[@id="tbl1_nxt"]')
|
|
if len(nxt) == 0 or nxt[0].attrib.get('class', '') == 'nxt-dis':
|
|
return None
|
|
|
|
params = {}
|
|
for field in self.document.xpath('//input'):
|
|
params[field.attrib['name']] = field.attrib.get('value', '')
|
|
|
|
params['validationStrategy'] = 'NV'
|
|
params['pagingDirection'] = 'NEXT'
|
|
params['pagerName'] = 'tbl1'
|
|
|
|
return params
|
|
|
|
def get_history(self):
|
|
for tr in self.document.xpath('//table[@id="tbl1"]/tbody/tr'):
|
|
tds = tr.findall('td')
|
|
|
|
if len(tds) < 5:
|
|
continue
|
|
|
|
t = Transaction(tr.attrib['id'].split('_', 1)[1])
|
|
|
|
date = u''.join([txt.strip() for txt in tds[4].itertext()])
|
|
raw = u' '.join([txt.strip() for txt in tds[1].itertext()])
|
|
debit = u''.join([txt.strip() for txt in tds[-2].itertext()])
|
|
credit = u''.join([txt.strip() for txt in tds[-1].itertext()])
|
|
t.parse(date, re.sub(r'[ ]+', ' ', raw))
|
|
t.set_amount(credit, debit)
|
|
yield t
|