The ls command first store all objects and collections, and then run the formatting. It is bad for applications displaying results as soon as possible, but mandatory to store results and display the collections first. Since the -U option was introduced to not sort the results, we can expand this idea to not display the collections first, and to display results immediately.
1222 lines
46 KiB
Python
1222 lines
46 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright(C) 2010-2012 Christophe Benz, Romain Bignon, Laurent Bachelier
|
|
#
|
|
# 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/>.
|
|
|
|
|
|
import atexit
|
|
from cmd import Cmd
|
|
import logging
|
|
import locale
|
|
import re
|
|
from optparse import OptionGroup, OptionParser, IndentedHelpFormatter
|
|
import os
|
|
import sys
|
|
|
|
from weboob.capabilities.base import FieldNotFound, CapBaseObject, UserError
|
|
from weboob.core import CallErrors
|
|
from weboob.tools.application.formatters.iformatter import MandatoryFieldsNotFound
|
|
from weboob.tools.misc import to_unicode
|
|
from weboob.tools.path import WorkingPath
|
|
from weboob.tools.ordereddict import OrderedDict
|
|
from weboob.capabilities.collection import Collection, BaseCollection, ICapCollection, CollectionNotFound
|
|
|
|
from .console import BackendNotGiven, ConsoleApplication
|
|
from .formatters.load import FormattersLoader, FormatterLoadError
|
|
from .results import ResultsCondition, ResultsConditionError
|
|
|
|
|
|
__all__ = ['NotEnoughArguments', 'ReplApplication']
|
|
|
|
|
|
class NotEnoughArguments(Exception):
|
|
pass
|
|
|
|
|
|
class ReplOptionParser(OptionParser):
|
|
def format_option_help(self, formatter=None):
|
|
if not formatter:
|
|
formatter = self.formatter
|
|
|
|
return '%s\n%s' % (formatter.format_commands(self.commands),
|
|
OptionParser.format_option_help(self, formatter))
|
|
|
|
|
|
class ReplOptionFormatter(IndentedHelpFormatter):
|
|
def format_commands(self, commands):
|
|
s = u''
|
|
for section, cmds in commands.iteritems():
|
|
if len(cmds) == 0:
|
|
continue
|
|
if len(s) > 0:
|
|
s += '\n'
|
|
s += '%s Commands:\n' % section
|
|
for c in cmds:
|
|
c = c.split('\n')[0]
|
|
s += ' %s\n' % c
|
|
return s
|
|
|
|
|
|
def defaultcount(default_count=10):
|
|
def deco(f):
|
|
def inner(self, *args, **kwargs):
|
|
oldvalue = self.options.count
|
|
if self._is_default_count:
|
|
self.options.count = default_count
|
|
|
|
try:
|
|
return f(self, *args, **kwargs)
|
|
finally:
|
|
self.options.count = oldvalue
|
|
|
|
inner.__doc__ = f.__doc__
|
|
assert inner.__doc__ is not None, "A command must have a docstring"
|
|
inner.__doc__ += '\nDefault is limited to %s results.' % default_count
|
|
|
|
return inner
|
|
return deco
|
|
|
|
# First sort in alphabetical of backend
|
|
# Second, first with ID
|
|
def comp_object(obj1, obj2):
|
|
if obj1.backend == obj2.backend:
|
|
if obj1.id == obj2.id:
|
|
return 0
|
|
elif obj1.id > obj2.id:
|
|
return 1
|
|
else:
|
|
return -1
|
|
elif obj1.backend > obj2.backend:
|
|
return 1
|
|
else:
|
|
return -1
|
|
|
|
|
|
class ReplApplication(Cmd, ConsoleApplication):
|
|
"""
|
|
Base application class for Repl applications.
|
|
"""
|
|
|
|
SYNOPSIS = 'Usage: %prog [-dqv] [-b backends] [-cnfs] [command [arguments..]]\n'
|
|
SYNOPSIS += ' %prog [--help] [--version]'
|
|
DISABLE_REPL = False
|
|
|
|
EXTRA_FORMATTERS = {}
|
|
DEFAULT_FORMATTER = 'multiline'
|
|
COMMANDS_FORMATTERS = {}
|
|
|
|
# Objects to allow in do_ls / do_cd
|
|
COLLECTION_OBJECTS = tuple()
|
|
|
|
weboob_commands = set(['backends', 'condition', 'count', 'formatter', 'inspect', 'logging', 'select', 'quit', 'ls', 'cd'])
|
|
hidden_commands = set(['EOF'])
|
|
|
|
def __init__(self):
|
|
Cmd.__init__(self)
|
|
self.intro = '\n'.join(('Welcome to %s%s%s v%s' % (self.BOLD, self.APPNAME, self.NC, self.VERSION),
|
|
'',
|
|
self.COPYRIGHT.encode(sys.stdout.encoding or locale.getpreferredencoding()),
|
|
'This program 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.',
|
|
'',
|
|
'Type "help" to display available commands.',
|
|
'',
|
|
))
|
|
self.formatters_loader = FormattersLoader()
|
|
for key, klass in self.EXTRA_FORMATTERS.iteritems():
|
|
self.formatters_loader.register_formatter(key, klass)
|
|
self.formatter = None
|
|
self.commands_formatters = self.COMMANDS_FORMATTERS.copy()
|
|
|
|
ConsoleApplication.__init__(self, ReplOptionParser(self.SYNOPSIS, version=self._get_optparse_version()))
|
|
|
|
commands_help = self.get_commands_doc()
|
|
self._parser.commands = commands_help
|
|
self._parser.formatter = ReplOptionFormatter()
|
|
|
|
results_options = OptionGroup(self._parser, 'Results Options')
|
|
results_options.add_option('-c', '--condition', help='filter result items to display given a boolean expression. See CONDITION section for the syntax')
|
|
results_options.add_option('-n', '--count', type='int',
|
|
help='limit number of results (from each backends)')
|
|
results_options.add_option('-s', '--select', help='select result item keys to display (comma separated)')
|
|
self._parser.add_option_group(results_options)
|
|
|
|
formatting_options = OptionGroup(self._parser, 'Formatting Options')
|
|
available_formatters = self.formatters_loader.get_available_formatters()
|
|
formatting_options.add_option('-f', '--formatter', choices=available_formatters,
|
|
help='select output formatter (%s)' % u', '.join(available_formatters))
|
|
formatting_options.add_option('--no-header', dest='no_header', action='store_true', help='do not display header')
|
|
formatting_options.add_option('--no-keys', dest='no_keys', action='store_true', help='do not display item keys')
|
|
formatting_options.add_option('-O', '--outfile', dest='outfile', help='file to export result')
|
|
self._parser.add_option_group(formatting_options)
|
|
|
|
self._interactive = False
|
|
self.working_path = WorkingPath()
|
|
self._change_prompt()
|
|
|
|
@property
|
|
def interactive(self):
|
|
return self._interactive
|
|
|
|
def _change_prompt(self):
|
|
self.objects = []
|
|
self.collections = []
|
|
# XXX can't use bold prompt because:
|
|
# 1. it causes problems when trying to get history (lines don't start
|
|
# at the right place).
|
|
# 2. when typing a line longer than term width, cursor goes at start
|
|
# of the same line instead of new line.
|
|
#self.prompt = self.BOLD + '%s> ' % self.APPNAME + self.NC
|
|
if len(self.working_path.get()):
|
|
wp_enc = unicode(self.working_path).encode(sys.stdout.encoding or locale.getpreferredencoding())
|
|
self.prompt = '%s:%s> ' % (self.APPNAME, wp_enc)
|
|
else:
|
|
self.prompt = '%s> ' % (self.APPNAME)
|
|
|
|
def change_path(self, split_path):
|
|
self.working_path.location(split_path)
|
|
self._change_prompt()
|
|
|
|
def add_object(self, obj):
|
|
self.objects.append(obj)
|
|
|
|
def _complete_object(self):
|
|
return ['%s@%s' % (obj.id, obj.backend) for obj in self.objects]
|
|
|
|
def parse_id(self, id, unique_backend=False):
|
|
if self.interactive:
|
|
try:
|
|
obj = self.objects[int(id) - 1]
|
|
except (IndexError, ValueError):
|
|
pass
|
|
else:
|
|
if isinstance(obj, CapBaseObject):
|
|
id = '%s@%s' % (obj.id, obj.backend)
|
|
try:
|
|
return ConsoleApplication.parse_id(self, id, unique_backend)
|
|
except BackendNotGiven as e:
|
|
backend_name = None
|
|
while not backend_name:
|
|
print 'This command works with an unique backend. Availables:'
|
|
for index, (name, backend) in enumerate(e.backends):
|
|
print '%s%d)%s %s%-15s%s %s' % (self.BOLD, index + 1, self.NC, self.BOLD, name, self.NC,
|
|
backend.DESCRIPTION)
|
|
i = self.ask('Select a backend to proceed with "%s"' % id)
|
|
if not i.isdigit():
|
|
if not i in dict(e.backends):
|
|
print >>sys.stderr, 'Error: %s is not a valid backend' % i
|
|
continue
|
|
backend_name = i
|
|
else:
|
|
i = int(i)
|
|
if i < 0 or i > len(e.backends):
|
|
print >>sys.stderr, 'Error: %s is not a valid choice' % i
|
|
continue
|
|
backend_name = e.backends[i-1][0]
|
|
|
|
return id, backend_name
|
|
|
|
def get_object(self, _id, method, fields=None, caps=None):
|
|
if self.interactive:
|
|
try:
|
|
obj = self.objects[int(_id) - 1]
|
|
except (IndexError, ValueError):
|
|
pass
|
|
else:
|
|
try:
|
|
backend = self.weboob.get_backend(obj.backend)
|
|
actual_method = getattr(backend, method, None)
|
|
if actual_method is None:
|
|
return None
|
|
else:
|
|
if callable(actual_method):
|
|
return backend.fillobj(obj, fields)
|
|
else:
|
|
return None
|
|
except UserError as e:
|
|
self.bcall_error_handler(backend, e, '')
|
|
|
|
_id, backend_name = self.parse_id(_id)
|
|
kargs = {}
|
|
if caps is not None:
|
|
kargs = {'caps': caps}
|
|
backend_names = (backend_name,) if backend_name is not None else self.enabled_backends
|
|
|
|
# if backend's service returns several objects, try to find the one
|
|
# with wanted ID. If not found, get the last not None object.
|
|
obj = None
|
|
|
|
# remove backends that do not have the required method
|
|
new_backend_names = []
|
|
for backend in backend_names:
|
|
if isinstance(backend, (str, unicode)):
|
|
actual_backend = self.weboob.get_backend(backend)
|
|
else:
|
|
actual_backend = backend
|
|
if getattr(actual_backend, method, None) is not None:
|
|
new_backend_names.append(backend)
|
|
backend_names = tuple(new_backend_names)
|
|
for backend, objiter in self.do(method, _id, backends=backend_names, fields=fields, **kargs):
|
|
if objiter:
|
|
obj = objiter
|
|
if objiter.id == _id:
|
|
return obj
|
|
return obj
|
|
|
|
def get_object_list(self, method=None, *args, **kwargs):
|
|
# return cache if not empty
|
|
if len(self.objects) > 0:
|
|
return self.objects
|
|
elif method is not None:
|
|
kwargs['backends'] = self.enabled_backends
|
|
for backend, object in self.weboob.do(self._do_complete, None, None, method, *args, **kwargs):
|
|
self.add_object(object)
|
|
return self.objects
|
|
# XXX: what can we do without method?
|
|
else:
|
|
return tuple()
|
|
|
|
def unload_backends(self, *args, **kwargs):
|
|
self.objects = []
|
|
self.collections = []
|
|
return ConsoleApplication.unload_backends(self, *args, **kwargs)
|
|
|
|
def load_backends(self, *args, **kwargs):
|
|
self.objects = []
|
|
self.collections = []
|
|
return ConsoleApplication.load_backends(self, *args, **kwargs)
|
|
|
|
def main(self, argv):
|
|
cmd_args = argv[1:]
|
|
if cmd_args:
|
|
cmd_line = u' '.join(cmd_args)
|
|
cmds = cmd_line.split(';')
|
|
for cmd in cmds:
|
|
ret = self.onecmd(cmd)
|
|
if ret:
|
|
return ret
|
|
elif self.DISABLE_REPL:
|
|
self._parser.print_help()
|
|
self._parser.exit()
|
|
else:
|
|
try:
|
|
import readline
|
|
except ImportError:
|
|
pass
|
|
else:
|
|
# Remove '-' from delims
|
|
readline.set_completer_delims(readline.get_completer_delims().replace('-', ''))
|
|
|
|
history_filepath = os.path.join(self.weboob.workdir, '%s_history' % self.APPNAME)
|
|
try:
|
|
readline.read_history_file(history_filepath)
|
|
except IOError:
|
|
pass
|
|
|
|
def savehist():
|
|
readline.write_history_file(history_filepath)
|
|
atexit.register(savehist)
|
|
|
|
self.intro += '\nLoaded backends: %s\n' % ', '.join(sorted(backend.name for backend in self.weboob.iter_backends()))
|
|
self._interactive = True
|
|
self.cmdloop()
|
|
|
|
def do(self, function, *args, **kwargs):
|
|
"""
|
|
Call Weboob.do(), passing count and selected fields given by user.
|
|
"""
|
|
backends = kwargs.pop('backends', None)
|
|
if backends is None:
|
|
kwargs['backends'] = []
|
|
for backend in self.enabled_backends:
|
|
actual_function = getattr(backend, function, None)
|
|
if actual_function is not None and callable(actual_function):
|
|
kwargs['backends'].append(backend)
|
|
else:
|
|
kwargs['backends'] = backends
|
|
fields = kwargs.pop('fields', self.selected_fields)
|
|
if not fields and fields != []:
|
|
fields = self.selected_fields
|
|
if '$direct' in fields:
|
|
fields = []
|
|
elif '$full' in fields:
|
|
fields = None
|
|
return self.weboob.do(self._do_complete, self.options.count, fields, function, *args, **kwargs)
|
|
|
|
# -- command tools ------------
|
|
def parse_command_args(self, line, nb, req_n=None):
|
|
if line.strip() == '':
|
|
# because ''.split() = ['']
|
|
args = []
|
|
else:
|
|
args = line.strip().split(' ', nb - 1)
|
|
if req_n is not None and (len(args) < req_n):
|
|
raise NotEnoughArguments('Command needs %d arguments' % req_n)
|
|
|
|
if len(args) < nb:
|
|
args += tuple(None for i in xrange(nb - len(args)))
|
|
return args
|
|
|
|
# -- cmd.Cmd methods ---------
|
|
def postcmd(self, stop, line):
|
|
"""
|
|
This REPL method is overrided to return None instead of integers
|
|
to prevent stopping cmdloop().
|
|
"""
|
|
if not isinstance(stop, bool):
|
|
stop = None
|
|
return stop
|
|
|
|
def parseline(self, line):
|
|
"""
|
|
This REPL method is overrided to search "short" alias of commands
|
|
"""
|
|
cmd, arg, ignored = Cmd.parseline(self, line)
|
|
|
|
if cmd is not None:
|
|
names = set(name for name in self.get_names() if name.startswith('do_'))
|
|
|
|
if 'do_' + cmd not in names:
|
|
long = set(name for name in names if name.startswith('do_' + cmd))
|
|
# if more than one result, ambiguous command, do nothing (error will display suggestions)
|
|
if len(long) == 1:
|
|
cmd = long.pop()[3:]
|
|
|
|
return cmd, arg, ignored
|
|
|
|
def onecmd(self, line):
|
|
"""
|
|
This REPL method is overrided to catch some particular exceptions.
|
|
"""
|
|
line = to_unicode(line)
|
|
cmd, arg, ignored = self.parseline(line)
|
|
|
|
# Set the right formatter for the command.
|
|
try:
|
|
formatter_name = self.commands_formatters[cmd]
|
|
except KeyError:
|
|
formatter_name = self.DEFAULT_FORMATTER
|
|
self.set_formatter(formatter_name)
|
|
|
|
try:
|
|
try:
|
|
return super(ReplApplication, self).onecmd(line)
|
|
except CallErrors as e:
|
|
self.bcall_errors_handler(e)
|
|
except BackendNotGiven as e:
|
|
print >>sys.stderr, 'Error: %s' % str(e)
|
|
except NotEnoughArguments as e:
|
|
print >>sys.stderr, 'Error: not enough arguments. %s' % str(e)
|
|
except (KeyboardInterrupt, EOFError):
|
|
# ^C during a command process doesn't exit application.
|
|
print '\nAborted.'
|
|
finally:
|
|
self.flush()
|
|
|
|
def emptyline(self):
|
|
"""
|
|
By default, an emptyline repeats the previous command.
|
|
Overriding this function disables this behaviour.
|
|
"""
|
|
pass
|
|
|
|
def default(self, line):
|
|
print >>sys.stderr, 'Unknown command: "%s"' % line
|
|
cmd, arg, ignore = Cmd.parseline(self, line)
|
|
if cmd is not None:
|
|
names = set(name[3:] for name in self.get_names() if name.startswith('do_' + cmd))
|
|
if len(names) > 0:
|
|
print >>sys.stderr, 'Do you mean: %s?' % ', '.join(names)
|
|
return 2
|
|
|
|
def completenames(self, text, *ignored):
|
|
return [name for name in Cmd.completenames(self, text, *ignored) if name not in self.hidden_commands]
|
|
|
|
def path_completer(self, arg):
|
|
dirname = os.path.dirname(arg)
|
|
try:
|
|
childs = os.listdir(dirname or '.')
|
|
except OSError:
|
|
return ()
|
|
l = []
|
|
for child in childs:
|
|
path = os.path.join(dirname, child)
|
|
if os.path.isdir(path):
|
|
child += '/'
|
|
l.append(child)
|
|
return l
|
|
|
|
def complete(self, text, state):
|
|
"""
|
|
Override of the Cmd.complete() method to:
|
|
|
|
* add a space at end of proposals
|
|
* display only proposals for words which match the
|
|
text already written by user.
|
|
"""
|
|
super(ReplApplication, self).complete(text, state)
|
|
|
|
# When state = 0, Cmd.complete() set the 'completion_matches' attribute by
|
|
# calling the completion function. Then, for other states, it only tries to
|
|
# get the right item in list.
|
|
# So that's the good place to rework the choices.
|
|
if state == 0:
|
|
self.completion_matches = [choice for choice in self.completion_matches if choice.startswith(text)]
|
|
|
|
try:
|
|
match = self.completion_matches[state]
|
|
except IndexError:
|
|
return None
|
|
else:
|
|
if match[-1] != '/':
|
|
return '%s ' % match
|
|
return match
|
|
|
|
# -- errors management -------------
|
|
def bcall_error_handler(self, backend, error, backtrace):
|
|
"""
|
|
Handler for an exception inside the CallErrors exception.
|
|
|
|
This method can be overrided to support more exceptions types.
|
|
"""
|
|
return super(ReplApplication, self).bcall_error_handler(backend, error, backtrace)
|
|
|
|
def bcall_errors_handler(self, errors, ignore=()):
|
|
if self.interactive:
|
|
ConsoleApplication.bcall_errors_handler(self, errors, 'Use "logging debug" option to print backtraces.', ignore)
|
|
else:
|
|
ConsoleApplication.bcall_errors_handler(self, errors, ignore=ignore)
|
|
|
|
# -- options related methods -------------
|
|
def _handle_options(self):
|
|
if self.options.formatter:
|
|
self.commands_formatters = {}
|
|
self.DEFAULT_FORMATTER = self.options.formatter
|
|
self.set_formatter(self.DEFAULT_FORMATTER)
|
|
|
|
if self.options.select:
|
|
self.selected_fields = self.options.select.split(',')
|
|
else:
|
|
self.selected_fields = ['$direct']
|
|
|
|
|
|
if self.options.count is not None:
|
|
self._is_default_count = False
|
|
if self.options.count <= 0:
|
|
# infinite search
|
|
self.options.count = None
|
|
|
|
if self.options.condition:
|
|
self.condition = ResultsCondition(self.options.condition)
|
|
else:
|
|
self.condition = None
|
|
|
|
return super(ReplApplication, self)._handle_options()
|
|
|
|
def get_command_help(self, command, short=False):
|
|
try:
|
|
func = getattr(self, 'do_' + command)
|
|
except AttributeError:
|
|
return None
|
|
|
|
doc = func.__doc__
|
|
assert doc is not None, "A command must have a docstring"
|
|
|
|
lines = [line.strip() for line in doc.strip().split('\n')]
|
|
if not lines[0].startswith(command):
|
|
lines = [command, ''] + lines
|
|
|
|
if short:
|
|
return lines[0]
|
|
|
|
return '\n'.join(lines)
|
|
|
|
def get_commands_doc(self):
|
|
names = set(name for name in self.get_names() if name.startswith('do_'))
|
|
appname = self.APPNAME.capitalize()
|
|
d = OrderedDict(((appname, []), ('Weboob', [])))
|
|
|
|
for name in sorted(names):
|
|
cmd = name[3:]
|
|
if cmd in self.hidden_commands.union(self.weboob_commands).union(['help']):
|
|
continue
|
|
|
|
d[appname].append(self.get_command_help(cmd))
|
|
if not self.DISABLE_REPL:
|
|
for cmd in self.weboob_commands:
|
|
d['Weboob'].append(self.get_command_help(cmd))
|
|
|
|
return d
|
|
|
|
# -- default REPL commands ---------
|
|
def do_quit(self, arg):
|
|
"""
|
|
Quit the application.
|
|
"""
|
|
return True
|
|
|
|
def do_EOF(self, arg):
|
|
"""
|
|
Quit the command line interpreter when ^D is pressed.
|
|
"""
|
|
# print empty line for the next shell prompt to appear on the first column of the terminal
|
|
print
|
|
return self.do_quit(arg)
|
|
|
|
def do_help(self, arg=None):
|
|
"""
|
|
help [COMMAND]
|
|
|
|
List commands, or get information about a command.
|
|
"""
|
|
if arg:
|
|
cmd_names = set(name[3:] for name in self.get_names() if name.startswith('do_'))
|
|
if arg in cmd_names:
|
|
command_help = self.get_command_help(arg)
|
|
if command_help is None:
|
|
logging.warning(u'Command "%s" is undocumented' % arg)
|
|
else:
|
|
lines = command_help.split('\n')
|
|
lines[0] = '%s%s%s' % (self.BOLD, lines[0], self.NC)
|
|
self.stdout.write('%s\n' % '\n'.join(lines))
|
|
else:
|
|
print >>sys.stderr, 'Unknown command: "%s"' % arg
|
|
else:
|
|
cmds = self._parser.formatter.format_commands(self._parser.commands)
|
|
self.stdout.write('%s\n' % cmds)
|
|
self.stdout.write('Type "help <command>" for more info about a command.\n')
|
|
return 2
|
|
|
|
def complete_backends(self, text, line, begidx, endidx):
|
|
choices = []
|
|
commands = ['enable', 'disable', 'only', 'list', 'add', 'register', 'edit', 'remove', 'list-modules']
|
|
available_backends_names = set(backend.name for backend in self.weboob.iter_backends())
|
|
enabled_backends_names = set(backend.name for backend in self.enabled_backends)
|
|
|
|
args = line.split(' ')
|
|
if len(args) == 2:
|
|
choices = commands
|
|
elif len(args) >= 3:
|
|
if args[1] == 'enable':
|
|
choices = sorted(available_backends_names - enabled_backends_names)
|
|
elif args[1] == 'only':
|
|
choices = sorted(available_backends_names)
|
|
elif args[1] == 'disable':
|
|
choices = sorted(enabled_backends_names)
|
|
elif args[1] in ('add', 'register') and len(args) == 3:
|
|
for name, module in sorted(self.weboob.repositories.get_all_modules_info(self.CAPS).iteritems()):
|
|
choices.append(name)
|
|
elif args[1] == 'edit':
|
|
choices = sorted(available_backends_names)
|
|
elif args[1] == 'remove':
|
|
choices = sorted(available_backends_names)
|
|
|
|
return choices
|
|
|
|
def do_backends(self, line):
|
|
"""
|
|
backends [ACTION] [BACKEND_NAME]...
|
|
|
|
Select used backends.
|
|
|
|
ACTION is one of the following (default: list):
|
|
* enable enable given backends
|
|
* disable disable given backends
|
|
* only enable given backends and disable the others
|
|
* list list backends
|
|
* add add a backend
|
|
* register register a new account on a website
|
|
* edit edit a backend
|
|
* remove remove a backend
|
|
* list-modules list modules
|
|
"""
|
|
line = line.strip()
|
|
if line:
|
|
args = line.split()
|
|
else:
|
|
args = ['list']
|
|
|
|
action = args[0]
|
|
given_backend_names = args[1:]
|
|
|
|
for backend_name in given_backend_names:
|
|
if action in ('add', 'register'):
|
|
minfo = self.weboob.repositories.get_module_info(backend_name)
|
|
if minfo is None:
|
|
print >>sys.stderr, 'Module "%s" does not exist.' % backend_name
|
|
return 1
|
|
else:
|
|
if not minfo.has_caps(self.CAPS):
|
|
print >>sys.stderr, 'Module "%s" is not supported by this application => skipping.' % backend_name
|
|
return 1
|
|
else:
|
|
if backend_name not in [backend.name for backend in self.weboob.iter_backends()]:
|
|
print >>sys.stderr, 'Backend "%s" does not exist => skipping.' % backend_name
|
|
return 1
|
|
|
|
if action in ('enable', 'disable', 'only', 'add', 'register', 'edit', 'remove'):
|
|
if not given_backend_names:
|
|
print >>sys.stderr, 'Please give at least a backend name.'
|
|
return 2
|
|
|
|
given_backends = set(backend for backend in self.weboob.iter_backends() if backend.name in given_backend_names)
|
|
|
|
if action == 'enable':
|
|
for backend in given_backends:
|
|
self.enabled_backends.add(backend)
|
|
elif action == 'disable':
|
|
for backend in given_backends:
|
|
try:
|
|
self.enabled_backends.remove(backend)
|
|
except KeyError:
|
|
print >>sys.stderr, '%s is not enabled' % backend.name
|
|
elif action == 'only':
|
|
self.enabled_backends = set()
|
|
for backend in given_backends:
|
|
self.enabled_backends.add(backend)
|
|
elif action == 'list':
|
|
enabled_backends_names = set(backend.name for backend in self.enabled_backends)
|
|
disabled_backends_names = set(backend.name for backend in self.weboob.iter_backends()) - enabled_backends_names
|
|
print 'Enabled: %s' % ', '.join(enabled_backends_names)
|
|
if len(disabled_backends_names) > 0:
|
|
print 'Disabled: %s' % ', '.join(disabled_backends_names)
|
|
elif action == 'add':
|
|
for name in given_backend_names:
|
|
instname = self.add_backend(name)
|
|
if instname:
|
|
self.load_backends(names=[instname])
|
|
elif action == 'register':
|
|
for name in given_backend_names:
|
|
instname = self.register_backend(name)
|
|
if isinstance(instname, basestring):
|
|
self.load_backends(names=[instname])
|
|
elif action == 'edit':
|
|
for backend in given_backends:
|
|
enabled = backend in self.enabled_backends
|
|
self.unload_backends(names=[backend.name])
|
|
self.edit_backend(backend.name)
|
|
for newb in self.load_backends(names=[backend.name]).itervalues():
|
|
if not enabled:
|
|
self.enabled_backends.remove(newb)
|
|
elif action == 'remove':
|
|
for backend in given_backends:
|
|
self.weboob.backends_config.remove_backend(backend.name)
|
|
self.unload_backends(backend.name)
|
|
elif action == 'list-modules':
|
|
modules = []
|
|
print 'Modules list:'
|
|
for name, info in sorted(self.weboob.repositories.get_all_modules_info().iteritems()):
|
|
if not self.is_module_loadable(info):
|
|
continue
|
|
modules.append(name)
|
|
loaded = ' '
|
|
for bi in self.weboob.iter_backends():
|
|
if bi.NAME == name:
|
|
if loaded == ' ':
|
|
loaded = 'X'
|
|
elif loaded == 'X':
|
|
loaded = 2
|
|
else:
|
|
loaded += 1
|
|
print '[%s] %s%-15s%s %s' % (loaded, self.BOLD, name, self.NC, info.description)
|
|
|
|
else:
|
|
print >>sys.stderr, 'Unknown action: "%s"' % action
|
|
return 1
|
|
|
|
if len(self.enabled_backends) == 0:
|
|
print >>sys.stderr, 'Warning: no more backends are loaded. %s is probably unusable.' % self.APPNAME.capitalize()
|
|
|
|
def complete_logging(self, text, line, begidx, endidx):
|
|
levels = ('debug', 'info', 'warning', 'error', 'quiet', 'default')
|
|
args = line.split(' ')
|
|
if len(args) == 2:
|
|
return levels
|
|
return ()
|
|
|
|
def do_logging(self, line):
|
|
"""
|
|
logging [LEVEL]
|
|
|
|
Set logging level.
|
|
|
|
Availables: debug, info, warning, error.
|
|
* quiet is an alias for error
|
|
* default is an alias for warning
|
|
"""
|
|
args = self.parse_command_args(line, 1, 0)
|
|
levels = (('debug', logging.DEBUG),
|
|
('info', logging.INFO),
|
|
('warning', logging.WARNING),
|
|
('error', logging.ERROR),
|
|
('quiet', logging.ERROR),
|
|
('default', logging.WARNING)
|
|
)
|
|
|
|
if not args[0]:
|
|
current = None
|
|
for label, level in levels:
|
|
if logging.root.level == level:
|
|
current = label
|
|
break
|
|
print 'Current level: %s' % current
|
|
return
|
|
|
|
levels = dict(levels)
|
|
try:
|
|
level = levels[args[0]]
|
|
except KeyError:
|
|
print >>sys.stderr, 'Level "%s" does not exist.' % args[0]
|
|
print >>sys.stderr, 'Availables: %s' % ' '.join(levels.iterkeys())
|
|
return 2
|
|
else:
|
|
logging.root.setLevel(level)
|
|
for handler in logging.root.handlers:
|
|
handler.setLevel(level)
|
|
|
|
def do_condition(self, line):
|
|
"""
|
|
condition [EXPRESSION | off]
|
|
|
|
If an argument is given, set the condition expression used to filter the results. See CONDITION section for more details and the expression.
|
|
If the "off" value is given, conditional filtering is disabled.
|
|
|
|
If no argument is given, print the current condition expression.
|
|
"""
|
|
line = line.strip()
|
|
if line:
|
|
if line == 'off':
|
|
self.condition = None
|
|
else:
|
|
try:
|
|
self.condition = ResultsCondition(line)
|
|
except ResultsConditionError as e:
|
|
print >>sys.stderr, '%s' % e
|
|
return 2
|
|
else:
|
|
if self.condition is None:
|
|
print 'No condition is set.'
|
|
else:
|
|
print str(self.condition)
|
|
|
|
def do_count(self, line):
|
|
"""
|
|
count [NUMBER | off]
|
|
|
|
If an argument is given, set the maximum number of results fetched.
|
|
NUMBER must be at least 1.
|
|
"off" value disables counting, and allows infinite searches.
|
|
|
|
If no argument is given, print the current count value.
|
|
"""
|
|
line = line.strip()
|
|
if line:
|
|
if line == 'off':
|
|
self.options.count = None
|
|
self._is_default_count = False
|
|
else:
|
|
try:
|
|
count = int(line)
|
|
except ValueError:
|
|
print >>sys.stderr, 'Could not interpret "%s" as a number.' % line
|
|
return 2
|
|
else:
|
|
if count > 0:
|
|
self.options.count = count
|
|
self._is_default_count = False
|
|
else:
|
|
self.options.count = None
|
|
self._is_default_count = False
|
|
else:
|
|
if self.options.count is None:
|
|
print 'Counting disabled.'
|
|
else:
|
|
print self.options.count
|
|
|
|
def complete_formatter(self, text, line, *ignored):
|
|
formatters = self.formatters_loader.get_available_formatters()
|
|
commands = ['list', 'option'] + formatters
|
|
options = ['header', 'keys']
|
|
option_values = ['on', 'off']
|
|
|
|
args = line.split(' ')
|
|
if len(args) == 2:
|
|
return commands
|
|
if args[1] == 'option':
|
|
if len(args) == 3:
|
|
return options
|
|
if len(args) == 4:
|
|
return option_values
|
|
elif args[1] in formatters:
|
|
return list(set(name[3:] for name in self.get_names() if name.startswith('do_')))
|
|
|
|
def do_formatter(self, line):
|
|
"""
|
|
formatter [list | FORMATTER [COMMAND] | option OPTION_NAME [on | off]]
|
|
|
|
If a FORMATTER is given, set the formatter to use.
|
|
You can add a COMMAND to apply the formatter change only to
|
|
a given command.
|
|
|
|
If the argument is "list", print the available formatters.
|
|
|
|
If the argument is "option", set the formatter options.
|
|
Valid options are: header, keys.
|
|
If on/off value is given, set the value of the option.
|
|
If not, print the current value for the option.
|
|
|
|
If no argument is given, print the current formatter.
|
|
"""
|
|
args = line.strip().split()
|
|
if args:
|
|
if args[0] == 'list':
|
|
print ', '.join(self.formatters_loader.get_available_formatters())
|
|
elif args[0] == 'option':
|
|
if len(args) > 1:
|
|
if len(args) == 2:
|
|
if args[1] == 'header':
|
|
print 'off' if self.options.no_header else 'on'
|
|
elif args[1] == 'keys':
|
|
print 'off' if self.options.no_keys else 'on'
|
|
else:
|
|
if args[2] not in ('on', 'off'):
|
|
print >>sys.stderr, 'Invalid value "%s". Please use "on" or "off" values.' % args[2]
|
|
return 2
|
|
else:
|
|
if args[1] == 'header':
|
|
self.options.no_header = True if args[2] == 'off' else False
|
|
elif args[1] == 'keys':
|
|
self.options.no_keys = True if args[2] == 'off' else False
|
|
else:
|
|
print >>sys.stderr, 'Don\'t know which option to set. Available options: header, keys.'
|
|
return 2
|
|
else:
|
|
if args[0] in self.formatters_loader.get_available_formatters():
|
|
if len(args) > 1:
|
|
self.commands_formatters[args[1]] = self.set_formatter(args[0])
|
|
else:
|
|
self.commands_formatters = {}
|
|
self.DEFAULT_FORMATTER = self.set_formatter(args[0])
|
|
else:
|
|
print >>sys.stderr, 'Formatter "%s" is not available.\n' \
|
|
'Available formatters: %s.' % (args[0], ', '.join(self.formatters_loader.get_available_formatters()))
|
|
return 1
|
|
else:
|
|
print 'Default formatter: %s' % self.DEFAULT_FORMATTER
|
|
for key, klass in self.commands_formatters.iteritems():
|
|
print 'Command "%s": %s' % (key, klass)
|
|
|
|
def do_select(self, line):
|
|
"""
|
|
select [FIELD_NAME]... | "$direct" | "$full"
|
|
|
|
If an argument is given, set the selected fields.
|
|
$direct selects all fields loaded in one http request.
|
|
$full selects all fields using as much http requests as necessary.
|
|
|
|
If no argument is given, print the currently selected fields.
|
|
"""
|
|
line = line.strip()
|
|
if line:
|
|
split = line.split()
|
|
self.selected_fields = split
|
|
else:
|
|
print ' '.join(self.selected_fields)
|
|
|
|
def complete_inspect(self, text, line, begidx, endidx):
|
|
return sorted(set(backend.name for backend in self.enabled_backends))
|
|
|
|
def do_inspect(self, line):
|
|
"""
|
|
inspect BACKEND_NAME
|
|
|
|
Display the HTML string of the current page of the specified backend's browser.
|
|
|
|
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
"""
|
|
if len(self.enabled_backends) == 1:
|
|
backend = list(self.enabled_backends)[0]
|
|
else:
|
|
backend_name = line.strip()
|
|
if not backend_name:
|
|
print >>sys.stderr, 'Please specify a backend name.'
|
|
return 2
|
|
backends = set(backend for backend in self.enabled_backends if backend.name == backend_name)
|
|
if not backends:
|
|
print >>sys.stderr, 'No backend found for "%s"' % backend_name
|
|
return 1
|
|
backend = backends.pop()
|
|
if not backend.browser:
|
|
print >>sys.stderr, 'No browser created for backend "%s".' % backend.name
|
|
return 1
|
|
if not backend.browser.page:
|
|
print >>sys.stderr, 'The browser of %s is not on any page.' % backend.name
|
|
return 1
|
|
browser = backend.browser
|
|
data = browser.parser.tostring(browser.page.document)
|
|
try:
|
|
from webkit_mechanize_browser.browser import Browser
|
|
from weboob.tools.inspect import Page
|
|
except ImportError:
|
|
print data
|
|
else:
|
|
page = Page(core=browser, data=data, uri=browser._response.geturl())
|
|
browser = Browser(view=page.view)
|
|
|
|
@defaultcount(40)
|
|
def do_ls(self, line):
|
|
"""
|
|
ls [-d] [-U] [PATH]
|
|
|
|
List objects in current path.
|
|
If an argument is given, list the specified path.
|
|
Use -U option to not sort results. It allows to use a "fast path" to
|
|
return results as soon as possible.
|
|
"""
|
|
# TODO: real parsing of options
|
|
path = line.strip()
|
|
only = False
|
|
sort = True
|
|
|
|
if '-U' in line.strip().partition(' '):
|
|
path = line.strip().partition(' ')[-1]
|
|
sort = False
|
|
|
|
if '-d' in line.strip().partition(' '):
|
|
path = None
|
|
only = line.strip().partition(' ')[-1]
|
|
|
|
|
|
if path:
|
|
# We have an argument, let's ch to the directory before the ls
|
|
self.working_path.cd1(path)
|
|
|
|
objects = []
|
|
collections = []
|
|
self.objects = []
|
|
|
|
self.start_format()
|
|
|
|
for res in self._fetch_objects(objs=self.COLLECTION_OBJECTS):
|
|
if isinstance(res, Collection):
|
|
collections.append(res)
|
|
if sort is False:
|
|
self._format_collection(res, only)
|
|
else:
|
|
if sort:
|
|
objects.append(res)
|
|
else:
|
|
self._format_obj(res, only)
|
|
|
|
if sort:
|
|
objects.sort(cmp=comp_object)
|
|
collections.sort(cmp=comp_object)
|
|
for collection in collections:
|
|
self._format_collection(collection, only)
|
|
for obj in objects:
|
|
self._format_obj(obj, only)
|
|
|
|
if path:
|
|
# Let's go back to the parent directory
|
|
self.working_path.restore()
|
|
else:
|
|
# Save collections only if we listed the current path.
|
|
self.collections = collections
|
|
|
|
|
|
def _format_collection(self, collection, only):
|
|
if only is False or collection.basename in only:
|
|
if collection.basename and collection.title:
|
|
print u'%s~ (%s) %s (%s)%s' % \
|
|
(self.BOLD, collection.basename, collection.title, collection.backend, self.NC)
|
|
else:
|
|
print u'%s~ (%s) (%s)%s' % \
|
|
(self.BOLD, collection.basename, collection.backend, self.NC)
|
|
|
|
|
|
def _format_obj(self, obj, only):
|
|
if only is False or not hasattr(obj, 'id') or obj.id in only:
|
|
self.cached_format(obj)
|
|
|
|
|
|
def do_cd(self, line):
|
|
"""
|
|
cd [PATH]
|
|
|
|
Follow a path.
|
|
".." is a special case and goes up one directory.
|
|
"" is a special case and goes home.
|
|
"""
|
|
if not len(line.strip()):
|
|
self.working_path.home()
|
|
elif line.strip() == '..':
|
|
self.working_path.up()
|
|
else:
|
|
self.working_path.cd1(line)
|
|
|
|
collections = []
|
|
try:
|
|
for backend, res in self.do('get_collection', objs=self.COLLECTION_OBJECTS,
|
|
split_path=self.working_path.get(),
|
|
caps=ICapCollection):
|
|
if res:
|
|
collections.append(res)
|
|
except CallErrors as errors:
|
|
self.bcall_errors_handler(errors, CollectionNotFound)
|
|
|
|
if len(collections):
|
|
# update the path from the collection if possible
|
|
if len(collections) == 1:
|
|
self.working_path.split_path = collections[0].split_path
|
|
else:
|
|
print >>sys.stderr, u"Path: %s not found" % unicode(self.working_path)
|
|
self.working_path.restore()
|
|
return 1
|
|
|
|
self._change_prompt()
|
|
|
|
def _fetch_objects(self, objs):
|
|
split_path = self.working_path.get()
|
|
|
|
try:
|
|
for backend, res in self.do('iter_resources', objs=objs,
|
|
split_path=split_path,
|
|
caps=ICapCollection):
|
|
yield res
|
|
except CallErrors as errors:
|
|
self.bcall_errors_handler(errors, CollectionNotFound)
|
|
|
|
|
|
def all_collections(self):
|
|
"""
|
|
Get all objects that are collections: regular objects and fake dumb objects.
|
|
"""
|
|
obj_collections = [obj for obj in self.objects if isinstance(obj, BaseCollection)]
|
|
return obj_collections + self.collections
|
|
|
|
def obj_to_filename(self, obj, dest=None, default=None):
|
|
"""
|
|
This method can be used to get a filename from an object, using a mask
|
|
filled by information of this object.
|
|
|
|
All patterns are braces-enclosed, and are name of available fields in
|
|
the object.
|
|
|
|
:param obj: object
|
|
:type obj: CapBaseObject
|
|
:param dest: dest given by user (default None)
|
|
:type dest: str
|
|
:param default: default file mask (if not given, this is '{id}-{title}.{ext}')
|
|
:type default: str
|
|
:rtype: str
|
|
"""
|
|
if default is None:
|
|
default = '{id}-{title}.{ext}'
|
|
if dest is None:
|
|
dest = '.'
|
|
if os.path.isdir(dest):
|
|
dest = os.path.join(dest, default)
|
|
|
|
def repl(m):
|
|
field = m.group(1)
|
|
if hasattr(obj, field):
|
|
return re.sub('[?:/]', '-', '%s' % getattr(obj, field))
|
|
else:
|
|
return m.group(0)
|
|
return re.sub(r'\{(.+?)\}', repl, dest)
|
|
|
|
# for cd & ls
|
|
def complete_path(self, text, line, begidx, endidx):
|
|
directories = set()
|
|
if len(self.working_path.get()):
|
|
directories.add('..')
|
|
mline = line.partition(' ')[2]
|
|
offs = len(mline) - len(text)
|
|
|
|
# refresh only if needed
|
|
if len(self.objects) == 0 and len(self.collections) == 0:
|
|
try:
|
|
self.objects, self.collections = self._fetch_objects(objs=self.COLLECTION_OBJECTS)
|
|
except CallErrors as errors:
|
|
self.bcall_errors_handler(errors, CollectionNotFound)
|
|
|
|
collections = self.all_collections()
|
|
for collection in collections:
|
|
directories.add(collection.basename.encode(sys.stdout.encoding or locale.getpreferredencoding()))
|
|
|
|
return [s[offs:] for s in directories if s.startswith(mline)]
|
|
|
|
def complete_ls(self, text, line, begidx, endidx):
|
|
return self.complete_path(text, line, begidx, endidx)
|
|
|
|
def complete_cd(self, text, line, begidx, endidx):
|
|
return self.complete_path(text, line, begidx, endidx)
|
|
|
|
# -- formatting related methods -------------
|
|
def set_formatter(self, name):
|
|
"""
|
|
Set the current formatter from name.
|
|
|
|
It returns the name of the formatter which has been really set.
|
|
"""
|
|
try:
|
|
self.formatter = self.formatters_loader.build_formatter(name)
|
|
except FormatterLoadError as e:
|
|
print >>sys.stderr, '%s' % e
|
|
if self.DEFAULT_FORMATTER == name:
|
|
self.DEFAULT_FORMATTER = ReplApplication.DEFAULT_FORMATTER
|
|
print >>sys.stderr, 'Falling back to "%s".' % (self.DEFAULT_FORMATTER)
|
|
self.formatter = self.formatters_loader.build_formatter(self.DEFAULT_FORMATTER)
|
|
name = self.DEFAULT_FORMATTER
|
|
if self.options.no_header:
|
|
self.formatter.display_header = False
|
|
if self.options.no_keys:
|
|
self.formatter.display_keys = False
|
|
if self.options.outfile:
|
|
self.formatter.outfile = self.options.outfile
|
|
if self.interactive:
|
|
self.formatter.interactive = True
|
|
return name
|
|
|
|
def set_formatter_header(self, string):
|
|
pass
|
|
|
|
def start_format(self, **kwargs):
|
|
self.formatter.start_format(**kwargs)
|
|
|
|
def cached_format(self, obj):
|
|
self.add_object(obj)
|
|
alias = None
|
|
if self.interactive:
|
|
alias = '%s' % len(self.objects)
|
|
self.format(obj, alias=alias)
|
|
|
|
def format(self, result, alias=None):
|
|
fields = self.selected_fields
|
|
if '$direct' in fields or '$full' in fields:
|
|
fields = None
|
|
try:
|
|
self.formatter.format(obj=result, selected_fields=fields, alias=alias)
|
|
except FieldNotFound as e:
|
|
print >>sys.stderr, e
|
|
except MandatoryFieldsNotFound as e:
|
|
print >>sys.stderr, '%s Hint: select missing fields or use another formatter (ex: multiline).' % e
|
|
|
|
def flush(self):
|
|
self.formatter.flush()
|