/tests/test_project/apps/testapp/urls.py
https://bitbucket.org/cklein/django-piston · Python · 58 lines · 40 code · 17 blank · 1 comment · 1 complexity · 256e5061a7bc580328cca610b92180c8 MD5 · raw file
- from django.conf.urls.defaults import *
- from piston.resource import Resource
- from piston.authentication import HttpBasicAuthentication, HttpBasicSimple
- from test_project.apps.testapp.handlers import EntryHandler, ExpressiveHandler, AbstractHandler, EchoHandler, PlainOldObjectHandler, Issue58Handler, ListFieldsHandler
- auth = HttpBasicAuthentication(realm='TestApplication')
- entries = Resource(handler=EntryHandler, authentication=auth)
- expressive = Resource(handler=ExpressiveHandler, authentication=auth)
- abstract = Resource(handler=AbstractHandler, authentication=auth)
- echo = Resource(handler=EchoHandler)
- popo = Resource(handler=PlainOldObjectHandler)
- list_fields = Resource(handler=ListFieldsHandler)
- issue58 = Resource(handler=Issue58Handler)
- AUTHENTICATORS = [auth,]
- SIMPLE_USERS = (('admin', 'secr3t'),
- ('admin', 'user'),
- ('admin', 'allwork'),
- ('admin', 'thisisneat'))
- for username, password in SIMPLE_USERS:
- AUTHENTICATORS.append(HttpBasicSimple(realm='Test',
- username=username, password=password))
- multiauth = Resource(handler=PlainOldObjectHandler,
- authentication=AUTHENTICATORS)
- urlpatterns = patterns('',
- url(r'^entries/$', entries),
- url(r'^entries/(?P<pk>.+)/$', entries),
- url(r'^entries\.(?P<emitter_format>.+)', entries),
- url(r'^entry-(?P<pk>.+)\.(?P<emitter_format>.+)', entries),
- url(r'^issue58\.(?P<emitter_format>.+)$', issue58),
- url(r'^expressive\.(?P<emitter_format>.+)$', expressive),
- url(r'^abstract\.(?P<emitter_format>.+)$', abstract),
- url(r'^abstract/(?P<id_>\d+)\.(?P<emitter_format>.+)$', abstract),
- url(r'^echo$', echo),
- url(r'^multiauth/$', multiauth),
- # oauth entrypoints
- url(r'^oauth/request_token$', 'piston.authentication.oauth_request_token'),
- url(r'^oauth/authorize$', 'piston.authentication.oauth_user_auth'),
- url(r'^oauth/access_token$', 'piston.authentication.oauth_access_token'),
- url(r'^list_fields$', list_fields),
- url(r'^list_fields/(?P<id>.+)$', list_fields),
-
- url(r'^popo$', popo),
- )