mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 08:55:05 +01:00
177 lines
5.2 KiB
Python
177 lines
5.2 KiB
Python
"""Persistent, JSON-serialized sessions.
|
|
|
|
"""
|
|
import re
|
|
import os
|
|
|
|
from requests.cookies import RequestsCookieJar, create_cookie
|
|
|
|
from httpie.compat import urlsplit
|
|
from httpie.config import BaseConfigDict, DEFAULT_CONFIG_DIR
|
|
from httpie.plugins import plugin_manager
|
|
|
|
|
|
SESSIONS_DIR_NAME = 'sessions'
|
|
DEFAULT_SESSIONS_DIR = os.path.join(DEFAULT_CONFIG_DIR, SESSIONS_DIR_NAME)
|
|
VALID_SESSION_NAME_PATTERN = re.compile('^[a-zA-Z0-9_.-]+$')
|
|
# Request headers starting with these prefixes won't be stored in sessions.
|
|
# They are specific to each request.
|
|
# http://en.wikipedia.org/wiki/List_of_HTTP_header_fields#Requests
|
|
SESSION_IGNORED_HEADER_PREFIXES = ['Content-', 'If-']
|
|
|
|
|
|
def get_response(requests_session, session_name,
|
|
config_dir, args, read_only=False):
|
|
"""Like `client.get_responses`, but applies permanent
|
|
aspects of the session to the request.
|
|
|
|
"""
|
|
from .client import get_requests_kwargs, dump_request
|
|
if os.path.sep in session_name:
|
|
path = os.path.expanduser(session_name)
|
|
else:
|
|
hostname = (args.headers.get('Host', None) or
|
|
urlsplit(args.url).netloc.split('@')[-1])
|
|
if not hostname:
|
|
# HACK/FIXME: httpie-unixsocket's URLs have no hostname.
|
|
hostname = 'localhost'
|
|
|
|
# host:port => host_port
|
|
hostname = hostname.replace(':', '_')
|
|
path = os.path.join(config_dir,
|
|
SESSIONS_DIR_NAME,
|
|
hostname,
|
|
session_name + '.json')
|
|
|
|
session = Session(path)
|
|
session.load()
|
|
|
|
kwargs = get_requests_kwargs(args, base_headers=session.headers)
|
|
if args.debug:
|
|
dump_request(kwargs)
|
|
session.update_headers(kwargs['headers'])
|
|
|
|
if args.auth_plugin:
|
|
session.auth = {
|
|
'type': args.auth_plugin.auth_type,
|
|
'raw_auth': args.auth_plugin.raw_auth,
|
|
}
|
|
elif session.auth:
|
|
kwargs['auth'] = session.auth
|
|
|
|
requests_session.cookies = session.cookies
|
|
|
|
try:
|
|
response = requests_session.request(**kwargs)
|
|
except Exception:
|
|
raise
|
|
else:
|
|
# Existing sessions with `read_only=True` don't get updated.
|
|
if session.is_new() or not read_only:
|
|
session.cookies = requests_session.cookies
|
|
session.save()
|
|
return response
|
|
|
|
|
|
class Session(BaseConfigDict):
|
|
helpurl = 'https://httpie.org/docs#sessions'
|
|
about = 'HTTPie session file'
|
|
|
|
def __init__(self, path, *args, **kwargs):
|
|
super(Session, self).__init__(*args, **kwargs)
|
|
self._path = path
|
|
self['headers'] = {}
|
|
self['cookies'] = {}
|
|
self['auth'] = {
|
|
'type': None,
|
|
'username': None,
|
|
'password': None
|
|
}
|
|
|
|
def _get_path(self):
|
|
return self._path
|
|
|
|
def update_headers(self, request_headers):
|
|
"""
|
|
Update the session headers with the request ones while ignoring
|
|
certain name prefixes.
|
|
|
|
:type request_headers: dict
|
|
|
|
"""
|
|
for name, value in request_headers.items():
|
|
|
|
if value is None:
|
|
continue # Ignore explicitely unset headers
|
|
|
|
value = value.decode('utf8')
|
|
if name == 'User-Agent' and value.startswith('HTTPie/'):
|
|
continue
|
|
|
|
for prefix in SESSION_IGNORED_HEADER_PREFIXES:
|
|
if name.lower().startswith(prefix.lower()):
|
|
break
|
|
else:
|
|
self['headers'][name] = value
|
|
|
|
@property
|
|
def headers(self):
|
|
return self['headers']
|
|
|
|
@property
|
|
def cookies(self):
|
|
jar = RequestsCookieJar()
|
|
for name, cookie_dict in self['cookies'].items():
|
|
jar.set_cookie(create_cookie(
|
|
name, cookie_dict.pop('value'), **cookie_dict))
|
|
jar.clear_expired_cookies()
|
|
return jar
|
|
|
|
@cookies.setter
|
|
def cookies(self, jar):
|
|
"""
|
|
:type jar: CookieJar
|
|
"""
|
|
# http://docs.python.org/2/library/cookielib.html#cookie-objects
|
|
stored_attrs = ['value', 'path', 'secure', 'expires']
|
|
self['cookies'] = {}
|
|
for cookie in jar:
|
|
self['cookies'][cookie.name] = {
|
|
attname: getattr(cookie, attname)
|
|
for attname in stored_attrs
|
|
}
|
|
|
|
@property
|
|
def auth(self):
|
|
auth = self.get('auth', None)
|
|
if not auth or not auth['type']:
|
|
return
|
|
|
|
plugin = plugin_manager.get_auth_plugin(auth['type'])()
|
|
|
|
credentials = {'username': None, 'password': None}
|
|
try:
|
|
# New style
|
|
plugin.raw_auth = auth['raw_auth']
|
|
except KeyError:
|
|
# Old style
|
|
credentials = {
|
|
'username': auth['username'],
|
|
'password': auth['password'],
|
|
}
|
|
else:
|
|
if plugin.auth_parse:
|
|
from httpie.input import parse_auth
|
|
parsed = parse_auth(plugin.raw_auth)
|
|
credentials = {
|
|
'username': parsed.key,
|
|
'password': parsed.value,
|
|
}
|
|
|
|
return plugin.get_auth(**credentials)
|
|
|
|
@auth.setter
|
|
def auth(self, auth):
|
|
assert set(['type', 'raw_auth']) == set(auth.keys())
|
|
self['auth'] = auth
|