Compare user by id not object equality
[mediagoblin.git] / mediagoblin / routing.py
CommitLineData
8e1e744d 1# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
e5572c60
ML
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
7742dcc1 17from werkzeug.routing import Map, Rule
31a8ff42 18
7742dcc1 19url_map = Map()
71454fd3 20
d56e8263 21view_functions = {}
24181820 22
7742dcc1 23def add_route(endpoint, url, controller):
0d857844
CAW
24 """
25 Add a route to the url mapping
26 """
5b60ec41
JW
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'
d56e8263 31
7742dcc1 32 view_functions.update({endpoint: controller})
31a8ff42 33
7742dcc1 34 url_map.add(Rule(url, endpoint=endpoint))
4bd65f69 35
0d857844
CAW
36def 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
7742dcc1 44add_route('index', '/', 'mediagoblin.views:root_view')
0f63a944 45
5b60ec41
JW
46from mediagoblin.admin.routing import admin_routes
47from mediagoblin.auth.routing import auth_routes
48mount('/auth', auth_routes)
49mount('/a', admin_routes)
50
7742dcc1
JW
51import mediagoblin.submit.routing
52import mediagoblin.user_pages.routing
7742dcc1
JW
53import mediagoblin.edit.routing
54import mediagoblin.webfinger.routing
55import mediagoblin.listings.routing