mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 17:04:50 +01:00
124 lines
3.5 KiB
Python
124 lines
3.5 KiB
Python
"""This module provides the main functionality of HTTPie.
|
|
|
|
Invocation flow:
|
|
|
|
1. Read, validate and process the input (args, `stdin`).
|
|
2. Create and send a request.
|
|
3. Stream, and possibly process and format, the requested parts
|
|
of the request-response exchange.
|
|
4. Simultaneously write to `stdout`
|
|
5. Exit.
|
|
|
|
"""
|
|
import sys
|
|
import errno
|
|
|
|
import requests
|
|
from requests.compat import str, is_py3
|
|
from httpie import __version__ as httpie_version
|
|
from requests import __version__ as requests_version
|
|
from pygments import __version__ as pygments_version
|
|
|
|
from .cli import parser
|
|
from .client import get_response
|
|
from .models import Environment
|
|
from .output import output_stream, write, write_with_colors_win_p3k
|
|
from . import exit
|
|
|
|
|
|
def get_exist_status(code, follow=False):
|
|
"""Translate HTTP status code to exit status."""
|
|
if 300 <= code <= 399 and not follow:
|
|
# Redirect
|
|
return exit.ERROR_HTTP_3XX
|
|
elif 400 <= code <= 499:
|
|
# Client Error
|
|
return exit.ERROR_HTTP_4XX
|
|
elif 500 <= code <= 599:
|
|
# Server Error
|
|
return exit.ERROR_HTTP_5XX
|
|
else:
|
|
return exit.OK
|
|
|
|
|
|
def print_debug_info(env):
|
|
sys.stderr.writelines([
|
|
'HTTPie %s\n' % httpie_version,
|
|
'HTTPie data: %s\n' % env.config.directory,
|
|
'Requests %s\n' % requests_version,
|
|
'Pygments %s\n' % pygments_version,
|
|
'Python %s %s\n' % (sys.version, sys.platform)
|
|
])
|
|
|
|
|
|
def main(args=sys.argv[1:], env=Environment()):
|
|
"""Run the main program and write the output to ``env.stdout``.
|
|
|
|
Return exit status.
|
|
|
|
"""
|
|
if env.config.default_options:
|
|
args = env.config.default_options + args
|
|
|
|
def error(msg, *args):
|
|
msg = msg % args
|
|
env.stderr.write('\nhttp: error: %s\n' % msg)
|
|
|
|
debug = '--debug' in args
|
|
traceback = debug or '--traceback' in args
|
|
status = exit.OK
|
|
|
|
if debug:
|
|
print_debug_info(env)
|
|
if args == ['--debug']:
|
|
sys.exit(exit.OK)
|
|
|
|
try:
|
|
args = parser.parse_args(args=args, env=env)
|
|
|
|
response = get_response(args, config_dir=env.config.directory)
|
|
|
|
if args.check_status:
|
|
status = get_exist_status(response.status_code,
|
|
args.follow)
|
|
if status and not env.stdout_isatty:
|
|
error('%s %s', response.raw.status, response.raw.reason)
|
|
|
|
stream = output_stream(args, env, response.request, response)
|
|
|
|
write_kwargs = {
|
|
'stream': stream,
|
|
'outfile': env.stdout,
|
|
'flush': env.stdout_isatty or args.stream
|
|
}
|
|
try:
|
|
if env.is_windows and is_py3 and 'colors' in args.prettify:
|
|
write_with_colors_win_p3k(**write_kwargs)
|
|
else:
|
|
write(**write_kwargs)
|
|
|
|
except IOError as e:
|
|
if not traceback and e.errno == errno.EPIPE:
|
|
# Ignore broken pipes unless --traceback.
|
|
env.stderr.write('\n')
|
|
else:
|
|
raise
|
|
|
|
except (KeyboardInterrupt, SystemExit):
|
|
if traceback:
|
|
raise
|
|
env.stderr.write('\n')
|
|
status = exit.ERROR
|
|
except requests.Timeout:
|
|
status = exit.ERROR_TIMEOUT
|
|
error('Request timed out (%ss).', args.timeout)
|
|
except Exception as e:
|
|
# TODO: distinguish between expected and unexpected errors.
|
|
# network errors vs. bugs, etc.
|
|
if traceback:
|
|
raise
|
|
error('%s: %s', type(e).__name__, str(e))
|
|
status = exit.ERROR
|
|
|
|
return status
|