Clean up & Add support to update objects in feed API
[mediagoblin.git] / mediagoblin / federation / 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 mediagoblin.tools.routing import add_route
18
19 # Add user profile
20 add_route(
21 "mediagoblin.federation.user",
22 "/api/user/<string:username>/",
23 "mediagoblin.federation.views:user"
24 )
25
26 add_route(
27 "mediagoblin.federation.user.profile",
28 "/api/user/<string:username>/profile",
29 "mediagoblin.federation.views:profile"
30 )
31
32 # Inbox and Outbox (feed)
33 add_route(
34 "mediagoblin.federation.feed",
35 "/api/user/<string:username>/feed",
36 "mediagoblin.federation.views:feed"
37 )
38
39 add_route(
40 "mediagoblin.federation.user.uploads",
41 "/api/user/<string:username>/uploads",
42 "mediagoblin.federation.views:uploads"
43 )
44
45 add_route(
46 "mediagoblin.federation.inbox",
47 "/api/user/<string:username>/inbox",
48 "mediagoblin.federation.views:feed"
49 )
50
51 # object endpoints
52 add_route(
53 "mediagoblin.federation.object",
54 "/api/<string:objectType>/<string:uuid>",
55 "mediagoblin.federation.views:object"
56 )
57 add_route(
58 "mediagoblin.federation.object.comments",
59 "/api/<string:objectType>/<string:uuid>/comments",
60 "mediagoblin.federation.views:object_comments"
61 )
62
63 add_route(
64 "mediagoblin.webfinger.well-known.host-meta",
65 "/.well-known/host-meta",
66 "mediagoblin.federation.views:host_meta"
67 )
68
69 add_route(
70 "mediagoblin.webfinger.well-known.host-meta.json",
71 "/.well-known/host-meta.json",
72 "mediagoblin.federation.views:host_meta"
73 )
74
75 add_route(
76 "mediagoblin.webfinger.whoami",
77 "/api/whoami",
78 "mediagoblin.federation.views:whoami"
79 )