Added rudimentary route "mounting" w/ werkzeug routes; fixed auth routes
[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
7742dcc1 21view_functions = {'index': 'mediagoblin.views:index'}
24181820 22
7742dcc1 23def add_route(endpoint, url, controller):
0d857844
CAW
24 """
25 Add a route to the url mapping
26 """
7742dcc1 27 view_functions.update({endpoint: controller})
31a8ff42 28
7742dcc1 29 url_map.add(Rule(url, endpoint=endpoint))
4bd65f69 30
0d857844
CAW
31def 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
7742dcc1 39add_route('index', '/', 'mediagoblin.views:root_view')
0f63a944 40
7742dcc1
JW
41import mediagoblin.submit.routing
42import mediagoblin.user_pages.routing
7742dcc1
JW
43import mediagoblin.edit.routing
44import mediagoblin.webfinger.routing
45import mediagoblin.listings.routing
0d857844
CAW
46
47from mediagoblin.auth.routing import auth_routes
48mount('/auth', auth_routes)