Merge branch 'master' of git://gitorious.org/mediagoblin/mediagoblin
[mediagoblin.git] / mediagoblin / 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 = {}
22
23 def add_route(endpoint, url, controller):
24 """
25 Add a route to the url mapping
26 """
27 # XXX: We cannot use this, since running tests means that the plugin
28 # routes will be populated over and over over the same session.
29 #
30 # assert endpoint not in view_functions.keys(), 'Trying to overwrite a rule'
31
32 view_functions.update({endpoint: controller})
33
34 url_map.add(Rule(url, endpoint=endpoint))
35
36 def mount(mountpoint, routes):
37 """
38 Mount a bunch of routes to this mountpoint
39 """
40 for endpoint, url, controller in routes:
41 url = "%s/%s" % (mountpoint.rstrip('/'), url.lstrip('/'))
42 add_route(endpoint, url, controller)
43
44 add_route('index', '/', 'mediagoblin.views:root_view')
45
46 from mediagoblin.admin.routing import admin_routes
47 from mediagoblin.auth.routing import auth_routes
48 mount('/auth', auth_routes)
49 mount('/a', admin_routes)
50
51 import mediagoblin.submit.routing
52 import mediagoblin.user_pages.routing
53 import mediagoblin.edit.routing
54 import mediagoblin.webfinger.routing
55 import mediagoblin.listings.routing