2011-09-12 06:36:16 +08:00
|
|
|
from django.conf.urls import patterns, url
|
2011-05-31 23:19:19 +08:00
|
|
|
from django.contrib.auth import context_processors
|
2009-04-02 01:02:32 +08:00
|
|
|
from django.contrib.auth.urls import urlpatterns
|
2010-09-11 03:38:57 +08:00
|
|
|
from django.contrib.auth.views import password_reset
|
|
|
|
from django.contrib.auth.decorators import login_required
|
2011-05-31 23:19:19 +08:00
|
|
|
from django.contrib.messages.api import info
|
2009-05-04 15:05:44 +08:00
|
|
|
from django.http import HttpResponse
|
2011-05-31 23:19:19 +08:00
|
|
|
from django.shortcuts import render_to_response
|
2009-05-04 15:05:44 +08:00
|
|
|
from django.template import Template, RequestContext
|
2011-03-17 16:07:40 +08:00
|
|
|
from django.views.decorators.cache import never_cache
|
2009-05-04 15:05:44 +08:00
|
|
|
|
2011-03-17 16:07:40 +08:00
|
|
|
@never_cache
|
2009-05-04 15:05:44 +08:00
|
|
|
def remote_user_auth_view(request):
|
|
|
|
"Dummy view for remote user tests"
|
|
|
|
t = Template("Username is {{ user }}.")
|
|
|
|
c = RequestContext(request, {})
|
|
|
|
return HttpResponse(t.render(c))
|
2009-04-02 01:02:32 +08:00
|
|
|
|
2011-04-02 16:44:47 +08:00
|
|
|
def auth_processor_no_attr_access(request):
|
|
|
|
r1 = render_to_response('context_processors/auth_attrs_no_access.html',
|
|
|
|
RequestContext(request, {}, processors=[context_processors.auth]))
|
|
|
|
# *After* rendering, we check whether the session was accessed
|
|
|
|
return render_to_response('context_processors/auth_attrs_test_access.html',
|
|
|
|
{'session_accessed':request.session.accessed})
|
|
|
|
|
|
|
|
def auth_processor_attr_access(request):
|
|
|
|
r1 = render_to_response('context_processors/auth_attrs_access.html',
|
|
|
|
RequestContext(request, {}, processors=[context_processors.auth]))
|
|
|
|
return render_to_response('context_processors/auth_attrs_test_access.html',
|
|
|
|
{'session_accessed':request.session.accessed})
|
|
|
|
|
|
|
|
def auth_processor_user(request):
|
|
|
|
return render_to_response('context_processors/auth_attrs_user.html',
|
|
|
|
RequestContext(request, {}, processors=[context_processors.auth]))
|
|
|
|
|
|
|
|
def auth_processor_perms(request):
|
|
|
|
return render_to_response('context_processors/auth_attrs_perms.html',
|
|
|
|
RequestContext(request, {}, processors=[context_processors.auth]))
|
|
|
|
|
2012-09-30 23:13:23 +08:00
|
|
|
def auth_processor_perm_in_perms(request):
|
|
|
|
return render_to_response('context_processors/auth_attrs_perm_in_perms.html',
|
|
|
|
RequestContext(request, {}, processors=[context_processors.auth]))
|
|
|
|
|
2011-04-02 16:44:47 +08:00
|
|
|
def auth_processor_messages(request):
|
2011-05-31 23:19:19 +08:00
|
|
|
info(request, "Message 1")
|
2011-04-02 16:44:47 +08:00
|
|
|
return render_to_response('context_processors/auth_attrs_messages.html',
|
|
|
|
RequestContext(request, {}, processors=[context_processors.auth]))
|
|
|
|
|
|
|
|
def userpage(request):
|
|
|
|
pass
|
|
|
|
|
2009-04-02 01:02:32 +08:00
|
|
|
# special urls for auth test cases
|
2010-11-04 20:31:57 +08:00
|
|
|
urlpatterns = urlpatterns + patterns('',
|
2009-04-02 01:02:32 +08:00
|
|
|
(r'^logout/custom_query/$', 'django.contrib.auth.views.logout', dict(redirect_field_name='follow')),
|
|
|
|
(r'^logout/next_page/$', 'django.contrib.auth.views.logout', dict(next_page='/somewhere/')),
|
2009-05-04 15:05:44 +08:00
|
|
|
(r'^remote_user/$', remote_user_auth_view),
|
2010-09-13 06:38:01 +08:00
|
|
|
(r'^password_reset_from_email/$', 'django.contrib.auth.views.password_reset', dict(from_email='staffmember@example.com')),
|
2010-09-11 03:38:57 +08:00
|
|
|
(r'^login_required/$', login_required(password_reset)),
|
|
|
|
(r'^login_required_login_url/$', login_required(password_reset, login_url='/somewhere/')),
|
2011-04-02 16:44:47 +08:00
|
|
|
|
|
|
|
(r'^auth_processor_no_attr_access/$', auth_processor_no_attr_access),
|
|
|
|
(r'^auth_processor_attr_access/$', auth_processor_attr_access),
|
|
|
|
(r'^auth_processor_user/$', auth_processor_user),
|
|
|
|
(r'^auth_processor_perms/$', auth_processor_perms),
|
2012-09-30 23:13:23 +08:00
|
|
|
(r'^auth_processor_perm_in_perms/$', auth_processor_perm_in_perms),
|
2011-04-02 16:44:47 +08:00
|
|
|
(r'^auth_processor_messages/$', auth_processor_messages),
|
|
|
|
url(r'^userpage/(.+)/$', userpage, name="userpage"),
|
2009-04-02 01:02:32 +08:00
|
|
|
)
|
|
|
|
|