2019-08-30 11:32:14 +02:00
|
|
|
import argparse
|
2019-12-02 17:43:16 +01:00
|
|
|
import os
|
2016-03-04 18:42:13 +01:00
|
|
|
import platform
|
2019-08-30 11:32:14 +02:00
|
|
|
import sys
|
2020-09-28 12:16:57 +02:00
|
|
|
from typing import List, Optional, Tuple, Union
|
2012-07-26 00:26:23 +02:00
|
|
|
|
2012-07-21 02:59:43 +02:00
|
|
|
import requests
|
2012-08-07 14:50:51 +02:00
|
|
|
from pygments import __version__ as pygments_version
|
2019-08-30 11:32:14 +02:00
|
|
|
from requests import __version__ as requests_version
|
2012-07-26 00:26:23 +02:00
|
|
|
|
2019-09-16 13:26:18 +02:00
|
|
|
from httpie import __version__ as httpie_version
|
2020-09-25 13:44:28 +02:00
|
|
|
from httpie.cli.constants import (
|
|
|
|
OUT_REQ_BODY, OUT_REQ_HEAD, OUT_RESP_BODY,
|
|
|
|
OUT_RESP_HEAD,
|
|
|
|
)
|
2019-09-03 17:14:39 +02:00
|
|
|
from httpie.client import collect_messages
|
2014-04-27 00:07:13 +02:00
|
|
|
from httpie.context import Environment
|
2019-08-30 11:32:14 +02:00
|
|
|
from httpie.downloads import Downloader
|
2020-09-28 12:16:57 +02:00
|
|
|
from httpie.output.writer import (
|
|
|
|
write_message,
|
|
|
|
write_stream,
|
|
|
|
)
|
2020-05-26 10:07:34 +02:00
|
|
|
from httpie.plugins.registry import plugin_manager
|
2019-12-02 17:43:16 +01:00
|
|
|
from httpie.status import ExitStatus, http_status_to_exit_status
|
2012-07-21 02:59:43 +02:00
|
|
|
|
|
|
|
|
2020-05-26 10:07:34 +02:00
|
|
|
# noinspection PyDefaultArgument
|
2019-08-30 11:32:14 +02:00
|
|
|
def main(
|
|
|
|
args: List[Union[str, bytes]] = sys.argv,
|
|
|
|
env=Environment(),
|
|
|
|
) -> ExitStatus:
|
2016-03-01 14:10:54 +01:00
|
|
|
"""
|
|
|
|
The main function.
|
|
|
|
|
2016-03-01 14:37:26 +01:00
|
|
|
Pre-process args, handle some special types of invocations,
|
|
|
|
and run the main program with error handling.
|
2016-03-01 14:10:54 +01:00
|
|
|
|
|
|
|
Return exit status code.
|
|
|
|
|
|
|
|
"""
|
2019-08-29 13:08:02 +02:00
|
|
|
program_name, *args = args
|
2019-12-02 17:43:16 +01:00
|
|
|
env.program_name = os.path.basename(program_name)
|
|
|
|
args = decode_raw_args(args, env.stdin_encoding)
|
2016-03-01 14:10:54 +01:00
|
|
|
plugin_manager.load_installed_plugins()
|
2012-08-03 01:01:15 +02:00
|
|
|
|
2019-08-31 15:17:10 +02:00
|
|
|
from httpie.cli.definition import parser
|
2016-03-01 14:10:54 +01:00
|
|
|
|
|
|
|
if env.config.default_options:
|
|
|
|
args = env.config.default_options + args
|
|
|
|
|
|
|
|
include_debug_info = '--debug' in args
|
|
|
|
include_traceback = include_debug_info or '--traceback' in args
|
|
|
|
|
|
|
|
if include_debug_info:
|
|
|
|
print_debug_info(env)
|
|
|
|
if args == ['--debug']:
|
2018-11-02 16:07:39 +01:00
|
|
|
return ExitStatus.SUCCESS
|
2016-03-01 14:10:54 +01:00
|
|
|
|
2018-11-02 16:07:39 +01:00
|
|
|
exit_status = ExitStatus.SUCCESS
|
2016-03-01 14:10:54 +01:00
|
|
|
|
|
|
|
try:
|
2019-08-29 13:08:02 +02:00
|
|
|
parsed_args = parser.parse_args(
|
|
|
|
args=args,
|
|
|
|
env=env,
|
|
|
|
)
|
2015-01-19 15:39:46 +01:00
|
|
|
except KeyboardInterrupt:
|
2012-08-01 23:21:52 +02:00
|
|
|
env.stderr.write('\n')
|
2016-03-01 14:10:54 +01:00
|
|
|
if include_traceback:
|
|
|
|
raise
|
2016-10-26 11:53:01 +02:00
|
|
|
exit_status = ExitStatus.ERROR_CTRL_C
|
2015-01-19 15:39:46 +01:00
|
|
|
except SystemExit as e:
|
2019-09-18 11:57:06 +02:00
|
|
|
if e.code != ExitStatus.SUCCESS:
|
2016-03-01 14:10:54 +01:00
|
|
|
env.stderr.write('\n')
|
|
|
|
if include_traceback:
|
2015-01-19 15:39:46 +01:00
|
|
|
raise
|
2016-03-01 14:10:54 +01:00
|
|
|
exit_status = ExitStatus.ERROR
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
exit_status = program(
|
|
|
|
args=parsed_args,
|
|
|
|
env=env,
|
|
|
|
)
|
|
|
|
except KeyboardInterrupt:
|
2015-01-19 15:39:46 +01:00
|
|
|
env.stderr.write('\n')
|
2016-03-01 14:10:54 +01:00
|
|
|
if include_traceback:
|
|
|
|
raise
|
2016-10-26 11:53:01 +02:00
|
|
|
exit_status = ExitStatus.ERROR_CTRL_C
|
2016-03-01 14:10:54 +01:00
|
|
|
except SystemExit as e:
|
2019-09-18 11:57:06 +02:00
|
|
|
if e.code != ExitStatus.SUCCESS:
|
2016-03-01 14:10:54 +01:00
|
|
|
env.stderr.write('\n')
|
|
|
|
if include_traceback:
|
|
|
|
raise
|
|
|
|
exit_status = ExitStatus.ERROR
|
|
|
|
except requests.Timeout:
|
|
|
|
exit_status = ExitStatus.ERROR_TIMEOUT
|
2019-12-02 17:43:16 +01:00
|
|
|
env.log_error(f'Request timed out ({parsed_args.timeout}s).')
|
2016-03-01 14:10:54 +01:00
|
|
|
except requests.TooManyRedirects:
|
|
|
|
exit_status = ExitStatus.ERROR_TOO_MANY_REDIRECTS
|
2019-12-02 17:43:16 +01:00
|
|
|
env.log_error(
|
2019-09-03 17:14:39 +02:00
|
|
|
f'Too many redirects'
|
2020-04-15 17:43:08 +02:00
|
|
|
f' (--max-redirects={parsed_args.max_redirects}).'
|
2019-09-03 17:14:39 +02:00
|
|
|
)
|
2016-03-01 14:10:54 +01:00
|
|
|
except Exception as e:
|
|
|
|
# TODO: Further distinction between expected and unexpected errors.
|
|
|
|
msg = str(e)
|
|
|
|
if hasattr(e, 'request'):
|
|
|
|
request = e.request
|
|
|
|
if hasattr(request, 'url'):
|
2019-09-03 17:14:39 +02:00
|
|
|
msg = (
|
|
|
|
f'{msg} while doing a {request.method}'
|
|
|
|
f' request to URL: {request.url}'
|
|
|
|
)
|
2019-12-02 17:43:16 +01:00
|
|
|
env.log_error(f'{type(e).__name__}: {msg}')
|
2016-03-01 14:10:54 +01:00
|
|
|
if include_traceback:
|
|
|
|
raise
|
2015-01-19 15:39:46 +01:00
|
|
|
exit_status = ExitStatus.ERROR
|
2016-03-01 13:24:50 +01:00
|
|
|
|
2012-12-11 12:54:34 +01:00
|
|
|
return exit_status
|
2019-09-03 17:14:39 +02:00
|
|
|
|
|
|
|
|
2020-09-25 13:44:28 +02:00
|
|
|
def get_output_options(
|
|
|
|
args: argparse.Namespace,
|
|
|
|
message: Union[requests.PreparedRequest, requests.Response]
|
2020-09-28 12:16:57 +02:00
|
|
|
) -> Tuple[bool, bool]:
|
2020-09-25 13:44:28 +02:00
|
|
|
return {
|
2020-09-28 12:16:57 +02:00
|
|
|
requests.PreparedRequest: (
|
|
|
|
OUT_REQ_HEAD in args.output_options,
|
|
|
|
OUT_REQ_BODY in args.output_options,
|
|
|
|
),
|
|
|
|
requests.Response: (
|
|
|
|
OUT_RESP_HEAD in args.output_options,
|
|
|
|
OUT_RESP_BODY in args.output_options,
|
|
|
|
),
|
2020-09-25 13:44:28 +02:00
|
|
|
}[type(message)]
|
|
|
|
|
|
|
|
|
2019-09-03 17:14:39 +02:00
|
|
|
def program(
|
|
|
|
args: argparse.Namespace,
|
|
|
|
env: Environment,
|
|
|
|
) -> ExitStatus:
|
|
|
|
"""
|
|
|
|
The main program without error handling.
|
|
|
|
|
|
|
|
"""
|
|
|
|
exit_status = ExitStatus.SUCCESS
|
|
|
|
downloader = None
|
|
|
|
|
|
|
|
try:
|
|
|
|
if args.download:
|
|
|
|
args.follow = True # --download implies --follow.
|
|
|
|
downloader = Downloader(
|
|
|
|
output_file=args.output_file,
|
|
|
|
progress_file=env.stderr,
|
|
|
|
resume=args.download_resume
|
|
|
|
)
|
|
|
|
downloader.pre_request(args.headers)
|
|
|
|
|
2020-09-28 12:16:57 +02:00
|
|
|
needs_separator = False
|
|
|
|
|
|
|
|
def maybe_separate():
|
|
|
|
nonlocal needs_separator
|
2020-10-25 20:39:01 +01:00
|
|
|
if env.stdout_isatty and needs_separator:
|
2020-09-28 12:16:57 +02:00
|
|
|
needs_separator = False
|
|
|
|
getattr(env.stdout, 'buffer', env.stdout).write(b'\n\n')
|
|
|
|
|
|
|
|
initial_request: Optional[requests.PreparedRequest] = None
|
|
|
|
final_response: Optional[requests.Response] = None
|
|
|
|
|
|
|
|
def request_body_read_callback(chunk: bytes):
|
|
|
|
should_pipe_to_stdout = (
|
|
|
|
# Request body output desired
|
|
|
|
OUT_REQ_BODY in args.output_options
|
|
|
|
# & not `.read()` already pre-request (e.g., for compression)
|
|
|
|
and initial_request
|
|
|
|
# & non-EOF chunk
|
|
|
|
and chunk
|
|
|
|
)
|
|
|
|
if should_pipe_to_stdout:
|
|
|
|
msg = requests.PreparedRequest()
|
|
|
|
msg.is_body_upload_chunk = True
|
|
|
|
msg.body = chunk
|
|
|
|
msg.headers = initial_request.headers
|
|
|
|
write_message(
|
|
|
|
requests_message=msg,
|
|
|
|
env=env,
|
|
|
|
args=args,
|
|
|
|
with_body=True,
|
|
|
|
with_headers=False
|
|
|
|
)
|
2020-09-25 13:44:28 +02:00
|
|
|
|
|
|
|
messages = collect_messages(
|
|
|
|
args=args,
|
|
|
|
config_dir=env.config.directory,
|
2020-09-28 12:16:57 +02:00
|
|
|
request_body_read_callback=request_body_read_callback
|
2020-09-25 13:44:28 +02:00
|
|
|
)
|
|
|
|
for message in messages:
|
2020-09-28 12:16:57 +02:00
|
|
|
maybe_separate()
|
2020-09-25 13:44:28 +02:00
|
|
|
is_request = isinstance(message, requests.PreparedRequest)
|
2020-09-28 12:16:57 +02:00
|
|
|
with_headers, with_body = get_output_options(
|
|
|
|
args=args, message=message)
|
2020-09-25 13:44:28 +02:00
|
|
|
if is_request:
|
2019-09-03 17:14:39 +02:00
|
|
|
if not initial_request:
|
|
|
|
initial_request = message
|
2020-09-28 16:22:34 +02:00
|
|
|
is_streamed_upload = not isinstance(
|
2020-09-28 12:16:57 +02:00
|
|
|
message.body, (str, bytes))
|
|
|
|
if with_body:
|
|
|
|
with_body = not is_streamed_upload
|
|
|
|
needs_separator = is_streamed_upload
|
2019-09-03 17:14:39 +02:00
|
|
|
else:
|
|
|
|
final_response = message
|
|
|
|
if args.check_status or downloader:
|
2019-09-16 13:26:18 +02:00
|
|
|
exit_status = http_status_to_exit_status(
|
2019-09-03 17:14:39 +02:00
|
|
|
http_status=message.status_code,
|
|
|
|
follow=args.follow
|
|
|
|
)
|
2019-12-02 17:43:16 +01:00
|
|
|
if (not env.stdout_isatty
|
2020-09-28 12:50:45 +02:00
|
|
|
and exit_status != ExitStatus.SUCCESS):
|
2019-12-02 17:43:16 +01:00
|
|
|
env.log_error(
|
2019-09-03 17:14:39 +02:00
|
|
|
f'HTTP {message.raw.status} {message.raw.reason}',
|
|
|
|
level='warning'
|
|
|
|
)
|
2020-09-28 12:16:57 +02:00
|
|
|
write_message(
|
|
|
|
requests_message=message,
|
|
|
|
env=env,
|
|
|
|
args=args,
|
|
|
|
with_headers=with_headers,
|
|
|
|
with_body=with_body,
|
|
|
|
)
|
|
|
|
|
|
|
|
maybe_separate()
|
2019-09-03 17:14:39 +02:00
|
|
|
|
|
|
|
if downloader and exit_status == ExitStatus.SUCCESS:
|
|
|
|
# Last response body download.
|
|
|
|
download_stream, download_to = downloader.start(
|
|
|
|
initial_url=initial_request.url,
|
|
|
|
final_response=final_response,
|
|
|
|
)
|
|
|
|
write_stream(
|
|
|
|
stream=download_stream,
|
|
|
|
outfile=download_to,
|
|
|
|
flush=False,
|
|
|
|
)
|
|
|
|
downloader.finish()
|
|
|
|
if downloader.interrupted:
|
|
|
|
exit_status = ExitStatus.ERROR
|
2019-12-02 17:43:16 +01:00
|
|
|
env.log_error(
|
|
|
|
'Incomplete download: size=%d; downloaded=%d' % (
|
|
|
|
downloader.status.total_size,
|
|
|
|
downloader.status.downloaded
|
|
|
|
))
|
2019-09-03 17:14:39 +02:00
|
|
|
return exit_status
|
|
|
|
|
|
|
|
finally:
|
|
|
|
if downloader and not downloader.finished:
|
|
|
|
downloader.failed()
|
|
|
|
|
|
|
|
if (not isinstance(args, list) and args.output_file
|
2020-09-28 12:50:45 +02:00
|
|
|
and args.output_file_specified):
|
2019-09-03 17:14:39 +02:00
|
|
|
args.output_file.close()
|
|
|
|
|
|
|
|
|
|
|
|
def print_debug_info(env: Environment):
|
|
|
|
env.stderr.writelines([
|
2019-12-02 17:43:16 +01:00
|
|
|
f'HTTPie {httpie_version}\n',
|
|
|
|
f'Requests {requests_version}\n',
|
|
|
|
f'Pygments {pygments_version}\n',
|
|
|
|
f'Python {sys.version}\n{sys.executable}\n',
|
|
|
|
f'{platform.system()} {platform.release()}',
|
2019-09-03 17:14:39 +02:00
|
|
|
])
|
|
|
|
env.stderr.write('\n\n')
|
|
|
|
env.stderr.write(repr(env))
|
|
|
|
env.stderr.write('\n')
|
|
|
|
|
|
|
|
|
|
|
|
def decode_raw_args(
|
|
|
|
args: List[Union[str, bytes]],
|
|
|
|
stdin_encoding: str
|
|
|
|
) -> List[str]:
|
|
|
|
"""
|
|
|
|
Convert all bytes args to str
|
|
|
|
by decoding them using stdin encoding.
|
|
|
|
|
|
|
|
"""
|
|
|
|
return [
|
|
|
|
arg.decode(stdin_encoding)
|
2020-12-21 12:03:25 +01:00
|
|
|
if type(arg) is bytes else arg
|
2019-09-03 17:14:39 +02:00
|
|
|
for arg in args
|
|
|
|
]
|