Skip to content

OnroerendErfgoed/urihandler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Koen Van Daele
Sep 27, 2015
83773fa · Sep 27, 2015

History

9 Commits
Sep 27, 2015
Sep 27, 2015
Sep 24, 2015
Sep 27, 2015
Sep 27, 2015
Sep 24, 2015
Sep 24, 2015
Sep 27, 2015
Sep 27, 2015
Sep 27, 2015
Sep 24, 2015
Sep 24, 2015
Sep 27, 2015
Sep 24, 2015
Sep 27, 2015
Sep 27, 2015

Repository files navigation

UriHandler

https://badge.fury.io/py/urihandler.png https://readthedocs.org/projects/urihandler/badge/?version=latest https://travis-ci.org/OnroerendErfgoed/urihandler.png?branch=master https://coveralls.io/repos/OnroerendErfgoed/urihandler/badge.png?branch=master

This very simple application is meant to be the handler on a domain that handles Cool Uri's (http://www.w3.org/TR/cooluris/) with 303 redirects.

All it does is map Uri's to other uri's and redirect them. To make thing easy you can either redirect by hitting the full URI (eg. http://id.example.com/foo/15) or by querying a hanle service (eg. http://id.example.com/handle?uri=http://id.example.com/foo/15). This can be handy to bypass some of the strangeness that happens when you combine Cool uri's with CORS and custom HTTP headers.

Configuration is done by editing a YAML file. For each URI you need to register a regex and a redirect template. The regex should use named placeholders, as well as the redirect string. An optional argument mount determines if your match is living at the server root or is absolute (eg. because it's a URN). Not setting mount sets it to True.