2012-08-18 23:03:31 +02:00
|
|
|
"""Persistent, JSON-serialized sessions.
|
|
|
|
|
|
|
|
"""
|
2012-12-01 18:16:00 +01:00
|
|
|
import re
|
2012-08-17 23:23:02 +02:00
|
|
|
import os
|
2012-08-18 23:03:31 +02:00
|
|
|
|
2012-09-07 12:38:52 +02:00
|
|
|
import requests
|
2012-08-18 23:03:31 +02:00
|
|
|
from requests.cookies import RequestsCookieJar, create_cookie
|
2012-08-17 23:23:02 +02:00
|
|
|
|
2013-01-03 14:12:27 +01:00
|
|
|
from .compat import urlsplit
|
2012-09-17 02:15:00 +02:00
|
|
|
from .config import BaseConfigDict, DEFAULT_CONFIG_DIR
|
2013-09-21 23:46:15 +02:00
|
|
|
from httpie.plugins import plugin_manager
|
2012-08-17 23:23:02 +02:00
|
|
|
|
|
|
|
|
2012-09-17 02:15:00 +02:00
|
|
|
SESSIONS_DIR_NAME = 'sessions'
|
2012-09-21 05:43:34 +02:00
|
|
|
DEFAULT_SESSIONS_DIR = os.path.join(DEFAULT_CONFIG_DIR, SESSIONS_DIR_NAME)
|
2013-05-13 14:47:44 +02:00
|
|
|
VALID_SESSION_NAME_PATTERN = re.compile('^[a-zA-Z0-9_.-]+$')
|
2013-05-13 11:54:49 +02:00
|
|
|
# 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-']
|
|
|
|
|
|
|
|
|
2013-09-21 23:46:15 +02:00
|
|
|
def get_response(session_name, requests_kwargs, config_dir, args,
|
|
|
|
read_only=False):
|
2012-09-07 12:38:52 +02:00
|
|
|
"""Like `client.get_response`, but applies permanent
|
|
|
|
aspects of the session to the request.
|
|
|
|
|
|
|
|
"""
|
2014-04-26 18:16:30 +02:00
|
|
|
from .client import encode_headers
|
2013-05-13 14:47:44 +02:00
|
|
|
if os.path.sep in session_name:
|
|
|
|
path = os.path.expanduser(session_name)
|
|
|
|
else:
|
|
|
|
hostname = (
|
|
|
|
requests_kwargs['headers'].get('Host', None)
|
|
|
|
or urlsplit(requests_kwargs['url']).netloc.split('@')[-1]
|
|
|
|
)
|
|
|
|
|
|
|
|
assert re.match('^[a-zA-Z0-9_.:-]+$', hostname)
|
|
|
|
|
|
|
|
# host:port => host_port
|
|
|
|
hostname = hostname.replace(':', '_')
|
|
|
|
path = os.path.join(config_dir,
|
|
|
|
SESSIONS_DIR_NAME,
|
|
|
|
hostname,
|
|
|
|
session_name + '.json')
|
|
|
|
|
|
|
|
session = Session(path)
|
2012-08-19 04:58:14 +02:00
|
|
|
session.load()
|
2012-08-18 23:03:31 +02:00
|
|
|
|
2013-05-13 11:54:49 +02:00
|
|
|
request_headers = requests_kwargs.get('headers', {})
|
2014-04-26 15:18:38 +02:00
|
|
|
|
2014-04-26 18:16:30 +02:00
|
|
|
merged_headers = dict(session.headers)
|
|
|
|
merged_headers.update(request_headers)
|
|
|
|
requests_kwargs['headers'] = encode_headers(merged_headers)
|
2014-04-26 15:18:38 +02:00
|
|
|
|
2013-05-13 11:54:49 +02:00
|
|
|
session.update_headers(request_headers)
|
2012-08-18 23:03:31 +02:00
|
|
|
|
2013-09-21 23:46:15 +02:00
|
|
|
if args.auth:
|
|
|
|
session.auth = {
|
|
|
|
'type': args.auth_type,
|
|
|
|
'username': args.auth.key,
|
|
|
|
'password': args.auth.value,
|
|
|
|
}
|
2012-08-18 23:03:31 +02:00
|
|
|
elif session.auth:
|
2013-05-13 11:54:49 +02:00
|
|
|
requests_kwargs['auth'] = session.auth
|
2012-08-18 23:03:31 +02:00
|
|
|
|
2013-01-03 13:49:41 +01:00
|
|
|
requests_session = requests.Session()
|
2013-01-04 02:59:05 +01:00
|
|
|
requests_session.cookies = session.cookies
|
2013-01-03 13:49:41 +01:00
|
|
|
|
2012-08-17 23:23:02 +02:00
|
|
|
try:
|
2013-05-13 11:54:49 +02:00
|
|
|
response = requests_session.request(**requests_kwargs)
|
2012-08-17 23:23:02 +02:00
|
|
|
except Exception:
|
|
|
|
raise
|
|
|
|
else:
|
2012-09-07 12:48:59 +02:00
|
|
|
# Existing sessions with `read_only=True` don't get updated.
|
|
|
|
if session.is_new or not read_only:
|
2013-01-03 13:49:41 +01:00
|
|
|
session.cookies = requests_session.cookies
|
2012-09-07 12:38:52 +02:00
|
|
|
session.save()
|
2012-08-17 23:23:02 +02:00
|
|
|
return response
|
|
|
|
|
|
|
|
|
2012-09-17 00:37:36 +02:00
|
|
|
class Session(BaseConfigDict):
|
2013-05-13 14:47:44 +02:00
|
|
|
helpurl = 'https://github.com/jkbr/httpie#sessions'
|
2012-12-01 18:16:00 +01:00
|
|
|
about = 'HTTPie session file'
|
|
|
|
|
2013-05-13 14:47:44 +02:00
|
|
|
def __init__(self, path, *args, **kwargs):
|
2012-08-18 23:03:31 +02:00
|
|
|
super(Session, self).__init__(*args, **kwargs)
|
2013-05-13 14:47:44 +02:00
|
|
|
self._path = path
|
2012-08-19 04:58:14 +02:00
|
|
|
self['headers'] = {}
|
|
|
|
self['cookies'] = {}
|
2012-12-01 18:16:00 +01:00
|
|
|
self['auth'] = {
|
|
|
|
'type': None,
|
2012-12-11 12:54:34 +01:00
|
|
|
'username': None,
|
|
|
|
'password': None
|
2012-12-01 18:16:00 +01:00
|
|
|
}
|
2012-08-17 23:23:02 +02:00
|
|
|
|
2013-05-13 14:47:44 +02:00
|
|
|
def _get_path(self):
|
|
|
|
return self._path
|
2012-12-01 18:16:00 +01:00
|
|
|
|
2013-05-13 11:54:49 +02:00
|
|
|
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():
|
2014-04-26 17:16:11 +02:00
|
|
|
value = value.decode('utf8')
|
2013-05-13 11:54:49 +02:00
|
|
|
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']
|
|
|
|
|
2012-08-18 23:03:31 +02:00
|
|
|
@property
|
|
|
|
def cookies(self):
|
|
|
|
jar = RequestsCookieJar()
|
|
|
|
for name, cookie_dict in self['cookies'].items():
|
2012-08-21 15:45:22 +02:00
|
|
|
jar.set_cookie(create_cookie(
|
|
|
|
name, cookie_dict.pop('value'), **cookie_dict))
|
2012-08-18 23:03:31 +02:00
|
|
|
jar.clear_expired_cookies()
|
|
|
|
return jar
|
2012-08-17 23:23:02 +02:00
|
|
|
|
2012-08-18 23:03:31 +02:00
|
|
|
@cookies.setter
|
|
|
|
def cookies(self, jar):
|
2013-05-13 11:54:49 +02:00
|
|
|
"""
|
|
|
|
:type jar: CookieJar
|
|
|
|
"""
|
2012-12-19 12:30:20 +01:00
|
|
|
# http://docs.python.org/2/library/cookielib.html#cookie-objects
|
2013-01-22 20:03:28 +01:00
|
|
|
stored_attrs = ['value', 'path', 'secure', 'expires']
|
2012-08-18 23:03:31 +02:00
|
|
|
self['cookies'] = {}
|
2013-03-20 10:45:56 +01:00
|
|
|
for cookie in jar:
|
|
|
|
self['cookies'][cookie.name] = dict(
|
2013-03-20 16:07:23 +01:00
|
|
|
(attname, getattr(cookie, attname))
|
|
|
|
for attname in stored_attrs
|
|
|
|
)
|
2012-08-17 23:23:02 +02:00
|
|
|
|
2012-08-18 23:03:31 +02:00
|
|
|
@property
|
|
|
|
def auth(self):
|
|
|
|
auth = self.get('auth', None)
|
2012-12-01 18:16:00 +01:00
|
|
|
if not auth or not auth['type']:
|
2012-12-11 12:54:34 +01:00
|
|
|
return
|
2013-09-21 23:46:15 +02:00
|
|
|
auth_plugin = plugin_manager.get_auth_plugin(auth['type'])()
|
|
|
|
return auth_plugin.get_auth(auth['username'], auth['password'])
|
2012-08-17 23:23:02 +02:00
|
|
|
|
2012-08-18 23:03:31 +02:00
|
|
|
@auth.setter
|
2013-09-21 23:46:15 +02:00
|
|
|
def auth(self, auth):
|
|
|
|
assert set(['type', 'username', 'password']) == set(auth.keys())
|
|
|
|
self['auth'] = auth
|