httpie-cli/httpie/__main__.py

194 lines
6.3 KiB
Python
Raw Normal View History

2012-02-25 13:39:38 +01:00
#!/usr/bin/env python
import sys
import json
2012-03-04 11:29:55 +01:00
try:
from collections import OrderedDict
except ImportError:
OrderedDict = dict
2012-03-15 00:11:49 +01:00
import requests
from requests.compat import urlparse, str
2012-02-25 13:39:38 +01:00
from requests.structures import CaseInsensitiveDict
2012-03-04 10:48:30 +01:00
from . import cli
from . import pretty
from . import __version__ as version
2012-02-25 13:39:38 +01:00
2012-03-15 00:11:49 +01:00
NEW_LINE = str('\n')
DEFAULT_UA = 'HTTPie/%s' % version
2012-02-25 13:39:38 +01:00
TYPE_FORM = 'application/x-www-form-urlencoded; charset=utf-8'
TYPE_JSON = 'application/json; charset=utf-8'
class HTTPMessage(object):
def __init__(self, line, headers, body, content_type=None):
# {Request,Status}-Line
self.line = line
self.headers = headers
self.body = body
self.content_type = content_type
def format_http_message(message, prettifier=None,
with_headers=True, with_body=True):
bits = []
if with_headers:
if prettifier:
bits.append(prettifier.headers(message.line))
bits.append(prettifier.headers(message.headers))
else:
bits.append(message.line)
bits.append(message.headers)
2012-03-14 19:30:58 +01:00
if with_body and message.body:
2012-03-15 00:11:49 +01:00
bits.append(NEW_LINE)
2012-03-14 19:30:58 +01:00
if with_body and message.body:
if prettifier and message.content_type:
bits.append(prettifier.body(message.body, message.content_type))
else:
bits.append(message.body)
2012-03-15 00:11:49 +01:00
bits.append(NEW_LINE)
return NEW_LINE.join(bit.strip() for bit in bits)
def make_request_message(request):
"""Make an `HTTPMessage` from `requests.models.Request`."""
url = urlparse(request.url)
request_headers = dict(request.headers)
if 'Host' not in request_headers:
request_headers['Host'] = url.netloc
return HTTPMessage(
line='{method} {path} HTTP/1.1'.format(
method=request.method,
path=url.path or '/'),
2012-03-15 00:11:49 +01:00
headers=NEW_LINE.join(str('%s: %s') % (name, value)
for name, value
2012-03-15 00:11:49 +01:00
in request_headers.items()),
body=request._enc_data,
content_type=request_headers.get('Content-Type')
)
def make_response_message(response):
"""Make an `HTTPMessage` from `requests.models.Response`."""
encoding = response.encoding or 'ISO-8859-1'
original = response.raw._original_response
response_headers = response.headers
return HTTPMessage(
line='HTTP/{version} {status} {reason}'.format(
version='.'.join(str(original.version)),
status=original.status, reason=original.reason,),
2012-03-15 00:11:49 +01:00
headers=str(original.msg),
body=response.content.decode(encoding) if response.content else '',
content_type=response_headers.get('Content-Type'))
2012-03-02 01:40:40 +01:00
def main(args=None,
stdin=sys.stdin,
2012-03-02 02:36:21 +01:00
stdin_isatty=sys.stdin.isatty(),
2012-03-02 01:40:40 +01:00
stdout=sys.stdout,
stdout_isatty=sys.stdout.isatty()):
2012-03-04 10:48:30 +01:00
parser = cli.parser
2012-03-02 01:40:40 +01:00
args = parser.parse_args(args if args is not None else sys.argv[1:])
do_prettify = (args.prettify is True or
(args.prettify == cli.PRETTIFY_STDOUT_TTY_ONLY
and stdout_isatty))
2012-03-04 10:48:30 +01:00
2012-02-25 13:39:38 +01:00
# Parse request headers and data from the command line.
headers = CaseInsensitiveDict()
headers['User-Agent'] = DEFAULT_UA
2012-03-04 10:48:30 +01:00
data = OrderedDict()
files = OrderedDict()
2012-03-04 10:48:30 +01:00
try:
cli.parse_items(items=args.items, headers=headers,
data=data, files=files)
2012-03-04 10:48:30 +01:00
except cli.ParseError as e:
if args.traceback:
raise
parser.error(e.message)
2012-02-25 13:39:38 +01:00
if files and not args.form:
# We could just switch to --form automatically here,
# but I think it's better to make it explicit.
parser.error(
' You need to set the --form / -f flag to'
' to issue a multipart request. File fields: %s'
% ','.join(files.keys()))
2012-03-02 01:40:40 +01:00
if not stdin_isatty:
2012-03-04 10:48:30 +01:00
if data:
parser.error('Request body (stdin) and request '
'data (key=value) cannot be mixed.')
2012-03-02 01:40:40 +01:00
data = stdin.read()
2012-02-25 13:39:38 +01:00
# JSON/Form content type.
if args.json or (not args.form and data):
2012-03-02 01:40:40 +01:00
if stdin_isatty:
2012-02-25 13:39:38 +01:00
data = json.dumps(data)
if not files and ('Content-Type' not in headers and (data or args.json)):
2012-02-25 13:39:38 +01:00
headers['Content-Type'] = TYPE_JSON
elif not files and 'Content-Type' not in headers:
2012-02-25 13:39:38 +01:00
headers['Content-Type'] = TYPE_FORM
if args.verify == 'yes':
verify = True
elif args.verify == 'no':
verify = False
else:
verify = args.verify
2012-02-25 13:39:38 +01:00
# Fire the request.
2012-02-26 16:13:12 +01:00
try:
response = requests.request(
method=args.method.lower(),
url=args.url if '://' in args.url else 'http://%s' % args.url,
headers=headers,
data=data,
verify=verify,
2012-02-26 16:13:12 +01:00
timeout=args.timeout,
auth=(args.auth.key, args.auth.value) if args.auth else None,
proxies=dict((p.key, p.value) for p in args.proxy),
files=files,
allow_redirects=args.allow_redirects,
2012-02-26 16:13:12 +01:00
)
2012-03-04 10:48:30 +01:00
except (KeyboardInterrupt, SystemExit):
2012-03-15 00:11:49 +01:00
sys.stderr.write(NEW_LINE)
2012-02-26 16:13:12 +01:00
sys.exit(1)
except Exception as e:
if args.traceback:
raise
2012-03-15 00:11:49 +01:00
sys.stderr.write(str(e.message) + NEW_LINE)
2012-02-26 16:13:12 +01:00
sys.exit(1)
2012-02-25 13:39:38 +01:00
prettifier = pretty.PrettyHttp(args.style) if do_prettify else None
2012-02-25 13:39:38 +01:00
output_request = (cli.OUT_REQUEST_HEADERS in args.output_options
or cli.OUT_REQUEST_BODY in args.output_options)
output_response = (cli.OUT_RESPONSE_HEADERS in args.output_options
or cli.OUT_RESPONSE_BODY in args.output_options)
if output_request:
stdout.write(format_http_message(
message=make_request_message(response.request),
prettifier=prettifier,
with_headers=cli.OUT_REQUEST_HEADERS in args.output_options,
with_body=cli.OUT_REQUEST_BODY in args.output_options
2012-03-15 00:11:49 +01:00
))
if output_response:
2012-03-15 00:11:49 +01:00
stdout.write(NEW_LINE)
if output_response:
stdout.write(format_http_message(
message=make_response_message(response),
prettifier=prettifier,
with_headers=cli.OUT_RESPONSE_HEADERS in args.output_options,
with_body=cli.OUT_RESPONSE_BODY in args.output_options
2012-03-15 00:11:49 +01:00
))
stdout.write(NEW_LINE)
2012-02-25 13:39:38 +01:00
2012-03-04 11:29:55 +01:00
2012-02-25 13:39:38 +01:00
if __name__ == '__main__':
main()