# Copyright(C) 2010-2012 Romain Bignon, Christophe Benz
#
# This file is part of woob.
#
# woob 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.
#
# woob 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
# along with woob. If not, see <http://www.gnu.org/licenses/>.
import logging
import optparse
from optparse import OptionGroup, OptionParser
from datetime import datetime
import os
import sys
import warnings
from woob.capabilities.base import ConversionWarning, BaseObject
from woob.core import Woob, CallErrors
from woob.core.backendscfg import BackendsConfig
from woob.tools.config.iconfig import ConfigError
from woob.exceptions import FormFieldConversionWarning
from woob.tools.log import createColoredFormatter, getLogger, DEBUG_FILTERS, settings as log_settings
from woob.tools.misc import guess_encoding
from .results import ResultsConditionError
__all__ = ['Application']
class MoreResultsAvailable(Exception):
pass
class ApplicationStorage:
def __init__(self, name, storage):
self.name = name
self.storage = storage
def set(self, *args):
if self.storage:
return self.storage.set('applications', self.name, *args)
def delete(self, *args):
if self.storage:
return self.storage.delete('applications', self.name, *args)
def get(self, *args, **kwargs):
if self.storage:
return self.storage.get('applications', self.name, *args, **kwargs)
else:
return kwargs.get('default', None)
def load(self, default):
if self.storage:
return self.storage.load('applications', self.name, default)
def save(self):
if self.storage:
return self.storage.save('applications', self.name)
[docs]class Application:
"""
Base application.
This class can be herited to have some common code within woob
applications.
"""
# ------ Class attributes --------------------------------------
APPNAME = ''
"""Application name"""
OLD_APPNAME = ""
CONFDIR = None
"""Configuration and work directory (if None, use the Woob instance one)"""
CONFIG = {}
"""Default configuration dict (can only contain key/values)"""
STORAGE = {}
"""Default storage tree"""
SYNOPSIS = 'Usage: %prog [-h] [-dqv] [-b backends] ...\n'
SYNOPSIS += ' %prog [--help] [--version]'
"""Synopsis"""
DESCRIPTION = None
"""Description"""
VERSION = None
"""Version"""
COPYRIGHT = None
"""Copyright"""
DEBUG_FILTER = 2
"""Verbosity of DEBUG"""
stdin = sys.stdin
stdout = sys.stdout
stderr = sys.stderr
# ------ Abstract methods --------------------------------------
[docs] def create_woob(self):
return Woob()
def _get_completions(self):
"""
Overload this method in subclasses if you want to enrich shell completion.
@return a set object
"""
return set()
def _handle_options(self):
"""
Overload this method in application type subclass
if you want to handle options defined in subclass constructor.
"""
pass
[docs] def add_application_options(self, group):
"""
Overload this method if your application needs extra options.
These options will be displayed in an option group.
"""
pass
[docs] def handle_application_options(self):
"""
Overload this method in your application if you want to handle options defined in add_application_options.
"""
pass
# ------ Application methods -------------------------------
def __init__(self, option_parser=None):
super(Application, self).__init__()
self.encoding = self.guess_encoding()
self.logger = getLogger("woob.applications.%s" % self.APPNAME)
self.woob = self.create_woob()
if self.CONFDIR is None:
self.CONFDIR = self.woob.workdir
self.config = None
self.options = None
self.condition = None
self.storage = None
if option_parser is None:
self._parser = OptionParser(self.SYNOPSIS, version=self._get_optparse_version())
else:
self._parser = option_parser
if self.DESCRIPTION:
self._parser.description = self.DESCRIPTION
app_options = OptionGroup(self._parser, '%s Options' % self.APPNAME.capitalize())
self.add_application_options(app_options)
if len(app_options.option_list) > 0:
self._parser.add_option_group(app_options)
self._parser.add_option('-b', '--backends', help='what backend(s) to enable (comma separated)')
self._parser.add_option('-e', '--exclude-backends', help='what backend(s) to exclude (comma separated)')
self._parser.add_option('-I', '--insecure', action='store_true', help='do not validate SSL')
self._parser.add_option('--nss', action='store_true', help='Use NSS instead of OpenSSL')
self._parser.add_option('--force-ipv4', action='store_const', help='Force IPv4', const=4, dest="ipversion")
self._parser.add_option('--force-ipv6', action='store_const', help='Force IPv6', const=6, dest="ipversion")
logging_options = OptionGroup(self._parser, 'Logging Options')
logging_options.add_option('-d', '--debug', action='count', help='display debug messages. Set up it twice to more verbosity', default=0)
logging_options.add_option('-q', '--quiet', action='store_true', help='display only error messages')
logging_options.add_option('-v', '--verbose', action='store_true', help='display info messages')
logging_options.add_option('--logging-file', action='store', type='string', dest='logging_file', help='file to save logs')
logging_options.add_option('-a', '--save-responses', action='store_true', help='save every response')
logging_options.add_option('--export-session', action='store_true', help='log browser session cookies after login')
self._parser.add_option_group(logging_options)
self._parser.add_option('--shell-completion', action='store_true', help=optparse.SUPPRESS_HELP)
self._is_default_count = True
[docs] def guess_encoding(self, stdio=None):
return guess_encoding(stdio or self.stdout)
[docs] def deinit(self):
self.woob.want_stop()
self.woob.deinit()
def _get_preferred_path(self, preferred, legacy):
try:
os.lstat(preferred)
except FileNotFoundError:
pass
else:
return preferred
if os.path.exists(legacy):
self.logger.debug("legacy %r can be renamed", legacy)
try:
os.rename(legacy, preferred)
except IOError as exc:
self.logger.warning("can't rename legacy %r: %s", legacy, exc)
return legacy
return preferred
[docs] def create_storage(self, path=None, klass=None, localonly=False):
"""
Create a storage object.
:param path: An optional specific path
:type path: :class:`str`
:param klass: What class to instance
:type klass: :class:`woob.tools.storage.IStorage`
:param localonly: If True, do not set it on the :class:`Woob` object.
:type localonly: :class:`bool`
:rtype: :class:`woob.tools.storage.IStorage`
"""
if klass is None:
from woob.tools.storage import StandardStorage
klass = StandardStorage
if path is None:
path = os.path.join(self.CONFDIR, self.APPNAME + '.storage')
if self.OLD_APPNAME:
# compatibility for old, non-woob names
path = self._get_preferred_path(
path, os.path.join(self.CONFDIR, self.OLD_APPNAME + '.storage')
)
elif os.path.sep not in path:
path = os.path.join(self.CONFDIR, path)
storage = klass(path)
self.storage = ApplicationStorage(self.APPNAME, storage)
self.storage.load(self.STORAGE)
if not localonly:
self.woob.storage = storage
return storage
[docs] def load_config(self, path=None, klass=None):
"""
Load a configuration file and get his object.
:param path: An optional specific path
:type path: :class:`str`
:param klass: What class to instance
:type klass: :class:`woob.tools.config.iconfig.IConfig`
:rtype: :class:`woob.tools.config.iconfig.IConfig`
"""
if klass is None:
from woob.tools.config.iniconfig import INIConfig
klass = INIConfig
if path is None:
path = os.path.join(self.CONFDIR, self.APPNAME)
if self.OLD_APPNAME:
# compatibility for old, non-woob names
path = self._get_preferred_path(
path, os.path.join(self.CONFDIR, self.OLD_APPNAME)
)
elif os.path.sep not in path:
path = os.path.join(self.CONFDIR, path)
self.config = klass(path)
self.config.load(self.CONFIG)
if int(self.config.get('use_nss', default=0)):
# TODO Deprecated
print('Key "use_nss" is deprecated and will be ignored', file=sys.stderr)
if int(self.config.get('export_session', default=0)):
log_settings['export_session'] = True
[docs] def main(self, argv):
"""
Main method
Called by run
"""
raise NotImplementedError()
[docs] def load_backends(self, caps=None, names=None, exclude=None, *args, **kwargs):
if names is None and self.options.backends:
names = self.options.backends.split(',')
if exclude is None and self.options.exclude_backends:
exclude = self.options.exclude_backends.split(',')
loaded = self.woob.load_backends(caps, names, exclude=exclude, *args, **kwargs)
if not loaded:
logging.info('No backend loaded')
return loaded
def _get_optparse_version(self):
version = None
if self.VERSION:
if self.COPYRIGHT:
copyright = self.COPYRIGHT.replace('YEAR', '%d' % datetime.today().year)
version = 'Woob %s v%s %s' % (self.APPNAME, self.VERSION, copyright)
else:
version = 'Woob %s v%s' % (self.APPNAME, self.VERSION)
return version
def _do_complete_obj(self, backend, fields, obj):
if not obj:
return obj
if not isinstance(obj, BaseObject):
return obj
obj.backend = backend.name
if fields is None or len(fields) > 0:
obj = backend.fillobj(obj, fields) or obj
return obj
def _do_complete_iter(self, backend, count, fields, res):
modif = 0
for i, sub in enumerate(res):
sub = self._do_complete_obj(backend, fields, sub)
if self.condition and self.condition.limit and \
self.condition.limit == i:
return
if self.condition and not self.condition.is_valid(sub):
modif += 1
else:
if count and i - modif == count:
if self._is_default_count:
raise MoreResultsAvailable()
else:
return
yield sub
def _do_complete(self, backend, count, selected_fields, function, *args, **kwargs):
assert count is None or count > 0
if callable(function):
res = function(backend, *args, **kwargs)
else:
res = getattr(backend, function)(*args, **kwargs)
if hasattr(res, '__iter__') and not isinstance(res, (bytes, str)):
return self._do_complete_iter(backend, count, selected_fields, res)
else:
return self._do_complete_obj(backend, selected_fields, res)
[docs] def bcall_error_handler(self, backend, error, backtrace):
"""
Handler for an exception inside the CallErrors exception.
This method can be overridden to support more exceptions types.
"""
# Ignore this error.
if isinstance(error, MoreResultsAvailable):
return False
print('Error(%s): %s' % (backend.name, error), file=self.stderr)
if logging.root.level <= logging.DEBUG:
print(backtrace, file=self.stderr)
else:
return True
[docs] def bcall_errors_handler(self, errors, debugmsg='Use --debug option to print backtraces', ignore=()):
"""
Handler for the CallErrors exception.
It calls `bcall_error_handler` for each error.
:param errors: Object containing errors from backends
:type errors: :class:`woob.core.bcall.CallErrors`
:param debugmsg: Default message asking to enable the debug mode
:type debugmsg: :class:`str`
:param ignore: Exceptions to ignore
:type ignore: tuple[:class:`Exception`]
"""
err = 0
ask_debug_mode = False
for backend, error, backtrace in errors.errors:
if isinstance(error, ignore):
continue
elif self.bcall_error_handler(backend, error, backtrace):
ask_debug_mode = True
if not isinstance(error, MoreResultsAvailable):
err = 1
if ask_debug_mode:
print(debugmsg, file=self.stderr)
return err
def _shell_completion_items(self):
items = set()
for ol in [self._parser.option_list] + [og.option_list for og in self._parser.option_groups]:
for option in ol:
if option.help is not optparse.SUPPRESS_HELP:
items.update(str(option).split('/'))
items.update(self._get_completions())
return items
[docs] def parse_args(self, args):
self.options, args = self._parser.parse_args(args)
if self.options.shell_completion:
items = self._shell_completion_items()
print(' '.join(items))
sys.exit(0)
if self.options.debug >= self.DEBUG_FILTER:
level = DEBUG_FILTERS
elif self.options.debug or self.options.save_responses:
level = logging.DEBUG
elif self.options.verbose:
level = logging.INFO
elif self.options.quiet:
level = logging.ERROR
else:
level = logging.WARNING
if self.options.insecure:
log_settings['ssl_insecure'] = True
if self.options.nss:
print('--nss is deprecated and will be removed', file=sys.stderr)
if self.options.ipversion:
self.setup_ipversion()
# this only matters to developers
if not self.options.debug and not self.options.save_responses:
warnings.simplefilter('ignore', category=ConversionWarning)
warnings.simplefilter('ignore', category=FormFieldConversionWarning)
else:
warnings.simplefilter('default')
handlers = []
if self.options.save_responses:
import tempfile
responses_dirname = tempfile.mkdtemp(prefix='woob_session_')
print('Debug data will be saved in this directory: %s' % responses_dirname, file=self.stderr)
log_settings['responses_dirname'] = responses_dirname
handlers.append(self.create_logging_file_handler(os.path.join(responses_dirname, 'debug.log')))
if self.options.export_session:
log_settings['export_session'] = True
# file logger
if self.options.logging_file:
handlers.append(self.create_logging_file_handler(self.options.logging_file))
else:
handlers.append(self.create_default_logger())
self.setup_logging(level, handlers)
self._handle_options()
self.handle_application_options()
return args
[docs] @classmethod
def create_default_logger(cls):
# stderr logger
format = '%(asctime)s:%(levelname)s:%(name)s:' + cls.VERSION +\
':%(filename)s:%(lineno)d:%(funcName)s %(message)s'
handler = logging.StreamHandler(cls.stderr)
if os.getenv("NO_COLOR") is None:
handler.setFormatter(createColoredFormatter(cls.stderr, format))
return handler
[docs] @classmethod
def setup_logging(cls, level, handlers):
logging.root.handlers = []
logging.root.setLevel(level)
for handler in handlers:
logging.root.addHandler(handler)
[docs] def setup_ipversion(self):
import socket
import requests.packages.urllib3.util.connection
import urllib3.util.connection
for module in (requests.packages.urllib3.util.connection, urllib3.util.connection):
family = socket.AF_INET
if self.options.ipversion == 6 and module.HAS_IPV6:
family = socket.AF_INET6 # force ipv6 only if it is available
# unfortunately no other way than monkey-patching
# XXX though probably overkill, we need that to each `module`
module.allowed_gai_family = lambda family=family: family
[docs] def create_logging_file_handler(self, filename):
try:
stream = open(os.path.expanduser(filename), 'w')
except IOError as e:
self.logger.error('Unable to create the logging file: %s' % e)
sys.exit(1)
else:
format = '%(asctime)s:%(levelname)s:%(name)s:' + self.VERSION +\
':%(filename)s:%(lineno)d:%(funcName)s %(message)s'
handler = logging.StreamHandler(stream)
handler.setFormatter(logging.Formatter(format))
return handler
[docs] @classmethod
def run(cls, args=None):
"""
This static method can be called to run the application.
It creates the application object, handles options, setups logging, calls
the main() method, and catches common exceptions.
You can't do anything after this call, as it *always* finishes with
a call to sys.exit().
For example:
>>> from woob.application.myapplication import MyApplication
>>> MyApplication.run()
"""
cls.setup_logging(logging.INFO, [cls.create_default_logger()])
if args is None:
args = list(sys.argv)
try:
app = cls()
except BackendsConfig.WrongPermissions as e:
print(e, file=cls.stderr)
sys.exit(1)
try:
try:
args = app.parse_args(args)
sys.exit(app.main(args))
except KeyboardInterrupt:
print('Program killed by SIGINT', file=cls.stderr)
sys.exit(0)
except EOFError:
sys.exit(0)
except ConfigError as e:
print('Configuration error: %s' % e, file=cls.stderr)
sys.exit(1)
except CallErrors as e:
try:
ret = app.bcall_errors_handler(e)
except KeyboardInterrupt:
pass
else:
sys.exit(ret)
sys.exit(1)
except ResultsConditionError as e:
print('%s' % e, file=cls.stderr)
sys.exit(1)
finally:
app.deinit()