Files
@ 237a8e3727a2
Branch filter:
Location: kallithea/rhodecode/bin/rhodecode_api.py - annotation
237a8e3727a2
3.5 KiB
text/x-python
fix routing matching order
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | 7ac09514a178 7ac09514a178 5055dd385118 5055dd385118 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 5055dd385118 7ac09514a178 7ac09514a178 7ac09514a178 94a92bd832c5 5055dd385118 5055dd385118 5055dd385118 5055dd385118 94a92bd832c5 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 94a92bd832c5 5055dd385118 7ac09514a178 7ac09514a178 5055dd385118 7ac09514a178 7ac09514a178 e487d2a6aa38 e487d2a6aa38 e487d2a6aa38 e487d2a6aa38 e487d2a6aa38 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 5055dd385118 7ac09514a178 5055dd385118 94a92bd832c5 94a92bd832c5 7ac09514a178 5055dd385118 7ac09514a178 7ac09514a178 94a92bd832c5 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 955956f4bdda 955956f4bdda 955956f4bdda 10b4e34841a4 955956f4bdda 955956f4bdda 7ac09514a178 e487d2a6aa38 7ac09514a178 7ac09514a178 7ac09514a178 7ac09514a178 | # -*- coding: utf-8 -*-
"""
rhodecode.bin.api
~~~~~~~~~~~~~~~~~
Api CLI client for RhodeCode
:created_on: Jun 3, 2012
:author: marcink
:copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
:license: GPLv3, see COPYING for more details.
"""
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from __future__ import with_statement
import sys
import argparse
from rhodecode.bin.base import api_call, RcConf, FORMAT_JSON, FORMAT_PRETTY
def argparser(argv):
usage = (
"rhodecode-api [-h] [--format=FORMAT] [--apikey=APIKEY] [--apihost=APIHOST] "
"[--config=CONFIG] [--save-config] "
"METHOD <key:val> <key2:val> ...\n"
"Create config file: rhodecode-gist --apikey=<key> --apihost=http://rhodecode.server --save-config"
)
parser = argparse.ArgumentParser(description='RhodeCode API cli',
usage=usage)
## config
group = parser.add_argument_group('config')
group.add_argument('--apikey', help='api access key')
group.add_argument('--apihost', help='api host')
group.add_argument('--config', help='config file')
group.add_argument('--save-config', action='store_true', help='save the given config into a file')
group = parser.add_argument_group('API')
group.add_argument('method', metavar='METHOD', nargs='?', type=str, default=None,
help='API method name to call followed by key:value attributes',
)
group.add_argument('--format', dest='format', type=str,
help='output format default: `pretty` can '
'be also `%s`' % FORMAT_JSON,
default=FORMAT_PRETTY
)
args, other = parser.parse_known_args()
return parser, args, other
def main(argv=None):
"""
Main execution function for cli
:param argv:
"""
if argv is None:
argv = sys.argv
conf = None
parser, args, other = argparser(argv)
api_credentials_given = (args.apikey and args.apihost)
if args.save_config:
if not api_credentials_given:
raise parser.error('--save-config requires --apikey and --apihost')
conf = RcConf(config_location=args.config,
autocreate=True, config={'apikey': args.apikey,
'apihost': args.apihost})
sys.exit()
if not conf:
conf = RcConf(config_location=args.config, autoload=True)
if not conf:
if not api_credentials_given:
parser.error('Could not find config file and missing '
'--apikey or --apihost in params')
apikey = args.apikey or conf['apikey']
host = args.apihost or conf['apihost']
method = args.method
try:
margs = dict(map(lambda s: s.split(':', 1), other))
except Exception:
sys.stderr.write('Error parsing arguments \n')
sys.exit()
api_call(apikey, host, args.format, method, **margs)
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv))
|