2012-08-17 23:23:02 +02:00
|
|
|
import json
|
|
|
|
import sys
|
|
|
|
from pprint import pformat
|
|
|
|
|
|
|
|
import requests
|
|
|
|
|
2014-04-28 23:33:30 +02:00
|
|
|
from httpie import sessions
|
|
|
|
from httpie import __version__
|
|
|
|
from httpie.compat import str
|
|
|
|
from httpie.plugins import plugin_manager
|
2012-08-17 23:23:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
FORM = 'application/x-www-form-urlencoded; charset=utf-8'
|
|
|
|
JSON = 'application/json; charset=utf-8'
|
2012-08-18 23:03:31 +02:00
|
|
|
DEFAULT_UA = 'HTTPie/%s' % __version__
|
2012-08-17 23:23:02 +02:00
|
|
|
|
|
|
|
|
2012-09-17 02:15:00 +02:00
|
|
|
def get_response(args, config_dir):
|
2012-09-07 12:38:52 +02:00
|
|
|
"""Send the request and return a `request.Response`."""
|
2012-08-17 23:23:02 +02:00
|
|
|
|
2012-09-17 00:37:36 +02:00
|
|
|
if not args.session and not args.session_read_only:
|
2014-05-08 13:27:50 +02:00
|
|
|
requests_kwargs = get_requests_kwargs(args)
|
|
|
|
if args.debug:
|
|
|
|
dump_request(requests_kwargs)
|
2012-12-01 15:55:58 +01:00
|
|
|
response = requests.request(**requests_kwargs)
|
2012-09-07 12:38:52 +02:00
|
|
|
else:
|
2012-12-01 15:55:58 +01:00
|
|
|
response = sessions.get_response(
|
2013-09-21 23:46:15 +02:00
|
|
|
args=args,
|
2012-09-17 02:15:00 +02:00
|
|
|
config_dir=config_dir,
|
2013-05-13 14:47:44 +02:00
|
|
|
session_name=args.session or args.session_read_only,
|
2012-09-17 00:01:49 +02:00
|
|
|
read_only=bool(args.session_read_only),
|
2012-09-07 12:38:52 +02:00
|
|
|
)
|
2012-08-17 23:23:02 +02:00
|
|
|
|
2012-12-01 15:55:58 +01:00
|
|
|
return response
|
|
|
|
|
|
|
|
|
2014-05-08 13:27:50 +02:00
|
|
|
def dump_request(kwargs):
|
|
|
|
sys.stderr.write('\n>>> requests.request(%s)\n\n'
|
|
|
|
% pformat(kwargs))
|
|
|
|
|
|
|
|
|
2014-04-26 18:16:30 +02:00
|
|
|
def encode_headers(headers):
|
|
|
|
# This allows for unicode headers which is non-standard but practical.
|
2014-05-05 21:17:23 +02:00
|
|
|
# See: https://github.com/jakubroztocil/httpie/issues/212
|
2014-04-26 18:16:30 +02:00
|
|
|
return dict(
|
|
|
|
(name, value.encode('utf8') if isinstance(value, str) else value)
|
|
|
|
for name, value in headers.items()
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2014-05-08 13:27:50 +02:00
|
|
|
def get_default_headers(args):
|
|
|
|
default_headers = {
|
2012-12-17 17:02:27 +01:00
|
|
|
'User-Agent': DEFAULT_UA
|
|
|
|
}
|
2012-08-18 23:03:31 +02:00
|
|
|
|
2012-08-17 23:23:02 +02:00
|
|
|
auto_json = args.data and not args.form
|
2013-04-12 20:27:26 +02:00
|
|
|
# FIXME: Accept is set to JSON with `http url @./file.txt`.
|
2012-08-17 23:23:02 +02:00
|
|
|
if args.json or auto_json:
|
2014-05-08 13:27:50 +02:00
|
|
|
default_headers['Accept'] = 'application/json'
|
2013-04-02 16:07:14 +02:00
|
|
|
if args.json or (auto_json and args.data):
|
2014-05-08 13:27:50 +02:00
|
|
|
default_headers['Content-Type'] = JSON
|
2012-08-17 23:23:02 +02:00
|
|
|
|
2012-08-18 23:03:31 +02:00
|
|
|
elif args.form and not args.files:
|
2012-09-07 12:48:59 +02:00
|
|
|
# If sending files, `requests` will set
|
|
|
|
# the `Content-Type` for us.
|
2014-05-08 13:27:50 +02:00
|
|
|
default_headers['Content-Type'] = FORM
|
|
|
|
return default_headers
|
|
|
|
|
|
|
|
|
|
|
|
def get_requests_kwargs(args, base_headers=None):
|
|
|
|
"""
|
|
|
|
Translate our `args` into `requests.request` keyword arguments.
|
|
|
|
|
|
|
|
"""
|
|
|
|
# Serialize JSON data, if needed.
|
|
|
|
data = args.data
|
|
|
|
auto_json = data and not args.form
|
|
|
|
if args.json or auto_json and isinstance(data, dict):
|
|
|
|
if data:
|
|
|
|
data = json.dumps(data)
|
|
|
|
else:
|
|
|
|
# We need to set data to an empty string to prevent requests
|
|
|
|
# from assigning an empty list to `response.request.data`.
|
|
|
|
data = ''
|
|
|
|
|
|
|
|
# Finalize headers.
|
|
|
|
headers = get_default_headers(args)
|
|
|
|
if base_headers:
|
|
|
|
headers.update(base_headers)
|
|
|
|
headers.update(args.headers)
|
|
|
|
headers = encode_headers(headers)
|
2012-08-17 23:23:02 +02:00
|
|
|
|
|
|
|
credentials = None
|
|
|
|
if args.auth:
|
2013-09-21 23:46:15 +02:00
|
|
|
auth_plugin = plugin_manager.get_auth_plugin(args.auth_type)()
|
|
|
|
credentials = auth_plugin.get_auth(args.auth.key, args.auth.value)
|
2012-08-17 23:23:02 +02:00
|
|
|
|
2014-01-28 16:16:48 +01:00
|
|
|
cert = None
|
2014-02-05 12:50:40 +01:00
|
|
|
if args.cert:
|
|
|
|
cert = args.cert
|
2015-01-23 23:54:27 +01:00
|
|
|
if args.cert_key:
|
|
|
|
cert = cert, args.cert_key
|
2014-01-28 16:16:48 +01:00
|
|
|
|
2012-08-17 23:23:02 +02:00
|
|
|
kwargs = {
|
2012-12-17 17:02:27 +01:00
|
|
|
'stream': True,
|
2012-08-17 23:23:02 +02:00
|
|
|
'method': args.method.lower(),
|
|
|
|
'url': args.url,
|
2014-05-08 13:27:50 +02:00
|
|
|
'headers': headers,
|
|
|
|
'data': data,
|
2012-08-17 23:23:02 +02:00
|
|
|
'verify': {
|
|
|
|
'yes': True,
|
|
|
|
'no': False
|
2012-08-21 15:45:22 +02:00
|
|
|
}.get(args.verify, args.verify),
|
2014-01-28 16:16:48 +01:00
|
|
|
'cert': cert,
|
2012-08-17 23:23:02 +02:00
|
|
|
'timeout': args.timeout,
|
|
|
|
'auth': credentials,
|
|
|
|
'proxies': dict((p.key, p.value) for p in args.proxy),
|
|
|
|
'files': args.files,
|
2012-09-07 11:58:39 +02:00
|
|
|
'allow_redirects': args.follow,
|
2012-08-18 23:03:31 +02:00
|
|
|
'params': args.params,
|
2012-08-17 23:23:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return kwargs
|