get_total_pages : default user agent is now DEFAULT_USER_AGENT and now instead of str formatting passing payload as param to full_url to generate the request url also get_response make the request instead of directly using requests.get() get_response : get_response is now not taking param as keyword arguments instead the invoker is supposed to pass the full url which may be generated by the full_url function therefore the return_full_url=False, is deprecated also. Also now closing the session via session.close() No need to check 'Exceeded 30 redirects' as save API uses a diffrent method. check_filters : Not assigning to variables the return of match groups beacause we wont be using them and the linter picks these unused assignments. check_collapses : Same reason as for check_filters but also removed a foolish test that checks equality with objects that are guaranteed to be same. check_match_type : Updated the text that of WaybackError
129 lines
3.6 KiB
Python
129 lines
3.6 KiB
Python
import re
|
|
import requests
|
|
from urllib3.util.retry import Retry
|
|
from requests.adapters import HTTPAdapter
|
|
from .exceptions import WaybackError
|
|
from .utils import DEFAULT_USER_AGENT
|
|
|
|
|
|
def get_total_pages(url, user_agent=DEFAULT_USER_AGENT):
|
|
endpoint = "https://web.archive.org/cdx/search/cdx?"
|
|
payload = {"showNumPages": "true", "url": str(url)}
|
|
headers = {"User-Agent": user_agent}
|
|
request_url = full_url(endpoint, params=payload)
|
|
response = get_response(request_url, headers=headers)
|
|
return int(response.text.strip())
|
|
|
|
|
|
def full_url(endpoint, params):
|
|
if not params:
|
|
return endpoint
|
|
full_url = endpoint if endpoint.endswith("?") else (endpoint + "?")
|
|
for key, val in params.items():
|
|
key = "filter" if key.startswith("filter") else key
|
|
key = "collapse" if key.startswith("collapse") else key
|
|
amp = "" if full_url.endswith("?") else "&"
|
|
full_url = (
|
|
full_url
|
|
+ amp
|
|
+ "{key}={val}".format(key=key, val=requests.utils.quote(str(val)))
|
|
)
|
|
return full_url
|
|
|
|
|
|
def get_response(
|
|
url,
|
|
headers=None,
|
|
retries=5,
|
|
backoff_factor=0.5,
|
|
no_raise_on_redirects=False,
|
|
):
|
|
session = requests.Session()
|
|
retries = Retry(
|
|
total=retries,
|
|
backoff_factor=backoff_factor,
|
|
status_forcelist=[500, 502, 503, 504],
|
|
)
|
|
session.mount("https://", HTTPAdapter(max_retries=retries))
|
|
|
|
try:
|
|
response = session.get(url, headers=headers)
|
|
session.close()
|
|
return response
|
|
except Exception as e:
|
|
reason = str(e)
|
|
exc_message = "Error while retrieving {url}.\n{reason}".format(
|
|
url=url, reason=reason
|
|
)
|
|
exc = WaybackError(exc_message)
|
|
exc.__cause__ = e
|
|
raise exc
|
|
|
|
|
|
def check_filters(filters):
|
|
if not isinstance(filters, list):
|
|
raise WaybackError("filters must be a list.")
|
|
|
|
# [!]field:regex
|
|
for _filter in filters:
|
|
try:
|
|
|
|
match = re.search(
|
|
r"(\!?(?:urlkey|timestamp|original|mimetype|statuscode|digest|length)):(.*)",
|
|
_filter,
|
|
)
|
|
|
|
match.group(1)
|
|
match.group(2)
|
|
|
|
except Exception:
|
|
|
|
exc_message = (
|
|
"Filter '{_filter}' is not following the cdx filter syntax.".format(
|
|
_filter=_filter
|
|
)
|
|
)
|
|
raise WaybackError(exc_message)
|
|
|
|
|
|
def check_collapses(collapses):
|
|
|
|
if not isinstance(collapses, list):
|
|
raise WaybackError("collapses must be a list.")
|
|
|
|
if len(collapses) == 0:
|
|
return
|
|
|
|
for collapse in collapses:
|
|
try:
|
|
match = re.search(
|
|
r"(urlkey|timestamp|original|mimetype|statuscode|digest|length)(:?[0-9]{1,99})?",
|
|
collapse,
|
|
)
|
|
match.group(1)
|
|
if 2 == len(match.groups()):
|
|
match.group(2)
|
|
except Exception:
|
|
exc_message = "collapse argument '{collapse}' is not following the cdx collapse syntax.".format(
|
|
collapse=collapse
|
|
)
|
|
raise WaybackError(exc_message)
|
|
|
|
|
|
def check_match_type(match_type, url):
|
|
if not match_type:
|
|
return
|
|
|
|
if "*" in url:
|
|
raise WaybackError(
|
|
"Can not use wildcard in the URL along with the match_type arguments."
|
|
)
|
|
|
|
legal_match_type = ["exact", "prefix", "host", "domain"]
|
|
|
|
if match_type not in legal_match_type:
|
|
exc_message = "{match_type} is not an allowed match type.\nUse one from 'exact', 'prefix', 'host' or 'domain'".format(
|
|
match_type=match_type
|
|
)
|
|
raise WaybackError(exc_message)
|