From 93f78d23b005183be18f048c612accd3551a28dc Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Anwajler?= Date: Wed, 23 Feb 2011 15:49:47 -0800 Subject: [PATCH] API urls for OAuth and accessing catalogue --- apps/api/urls.py | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/apps/api/urls.py b/apps/api/urls.py index 8b1b9b0cb..5fade25ba 100644 --- a/apps/api/urls.py +++ b/apps/api/urls.py @@ -1,17 +1,27 @@ # -*- coding: utf-8 -*- from django.conf.urls.defaults import * from piston.resource import Resource -from piston.authentication import HttpBasicAuthentication +from piston.authentication import OAuthAuthentication -from api.handlers import BookHandler +from api.handlers import BookHandler, TagHandler -auth = HttpBasicAuthentication(realm='My sample API') -book_resource = Resource(handler=BookHandler, authentication=auth) - +auth = OAuthAuthentication(realm='API') +book_resource = Resource(handler=BookHandler) +tag_resource = Resource(handler=TagHandler, authentication=auth) urlpatterns = patterns('', url(r'^books/(?P[^/]+)\.(?Pxml|json|yaml)$', book_resource), url(r'^books\.(?Pxml|json|yaml)$', book_resource), + url(r'^tags/(?P[a-zA-Z0-9-/]*)\.(?Pxml|json|yaml)$', tag_resource), + url(r'^lektura/(?P[a-zA-Z0-9-]+)\.(?Pxml|json|yaml)$', book_resource), #detail + url(r'^lektura/(?P[a-zA-Z0-9-]+)/motyw/(?P[a-zA-Z0-9-]+)\.(?Pxml|json|yaml)$', book_resource), #fragments + url(r'^oauth/callback/$','oauth_callback'), ) +urlpatterns += patterns( +'piston.authentication', + url(r'^oauth/request_token/$','oauth_request_token'), + url(r'^oauth/authorize/$','oauth_user_auth'), + url(r'^oauth/access_token/$','oauth_access_token'), +) \ No newline at end of file -- 2.20.1