mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-14 15:53:28 +01:00
- ensure timemap returns full url-m warcserver supports 'memento_format' param which, if present, specifies full format to use for memento links in timemap - memento tests: timemap tests include full url-m, test both framed and frameless timemap responses
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
import re
|
|
|
|
MEMENTO_DATETIME = 'Memento-Datetime'
|
|
ACCEPT_DATETIME = 'Accept-Datetime'
|
|
LINK = 'Link'
|
|
VARY = 'Vary'
|
|
LINK_FORMAT = 'application/link-format'
|
|
|
|
class MementoMixin(object):
|
|
def _timemap_get(self, url, fmod=True, **kwargs):
|
|
app = self.testapp if fmod else self.testapp_non_frame
|
|
return app.get(url, extra_environ={'REQUEST_URI': url}, **kwargs)
|
|
|
|
def get_links(self, resp):
|
|
return list(map(lambda x: x.strip(), re.split(', (?![0-9])', resp.headers[LINK])))
|
|
|
|
def make_timemap_link(self, url, coll='pywb'):
|
|
format_ = '<http://localhost:80/{2}/timemap/link/{0}>; rel="timemap"; type="{1}"'
|
|
return format_.format(url, LINK_FORMAT, coll)
|
|
|
|
def make_original_link(self, url):
|
|
format_ = '<{0}>; rel="original"'
|
|
return format_.format(url)
|
|
|
|
def make_timegate_link(self, url, fmod='', coll='pywb'):
|
|
fmod_slash = fmod + '/' if fmod else ''
|
|
format_ = '<http://localhost:80/{2}/{1}{0}>; rel="timegate"'
|
|
return format_.format(url, fmod_slash, coll)
|
|
|
|
def make_memento_link(self, url, ts, dt, fmod='', coll='pywb', include_coll=True):
|
|
format_ = '<http://localhost:80/{4}/{1}{3}/{0}>; rel="memento"; datetime="{2}"'
|
|
if include_coll:
|
|
format_ += '; collection="{4}"'
|
|
return format_.format(url, ts, dt, fmod, coll)
|
|
|
|
|