8f0f37a50d81a3710950273371d73026623dc3ea
[mediagoblin.git] / routing.py
1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17 from werkzeug.routing import Map, Rule
18
19 url_map = Map()
20
21 view_functions = {'index': 'mediagoblin.views:index'}
22
23 def add_route(endpoint, url, controller):
24 """
25 Add a route to the url mapping
26 """
27 view_functions.update({endpoint: controller})
28
29 url_map.add(Rule(url, endpoint=endpoint))
30
31 def mount(mountpoint, routes):
32 """
33 Mount a bunch of routes to this mountpoint
34 """
35 for endpoint, url, controller in routes:
36 url = "%s/%s" % (mountpoint.rstrip('/'), url.lstrip('/'))
37 add_route(endpoint, url, controller)
38
39 add_route('index', '/', 'mediagoblin.views:root_view')
40
41 import mediagoblin.submit.routing
42 import mediagoblin.user_pages.routing
43 import mediagoblin.edit.routing
44 import mediagoblin.webfinger.routing
45 import mediagoblin.listings.routing
46
47 from mediagoblin.auth.routing import auth_routes
48 mount('/auth', auth_routes)