Fixed redirects to work consistently
Revision 1133 broke 'Edit Site Settings' by relying on the
fact that the url for create pages is '<entity>/create', which
it is not for 'Edit Site Settings'.
#!/usr/bin/python2.5## Copyright 2008 the Melange authors.## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License."""Access control helper.The functions in this module can be used to check access controlrelated requirements. When the specified required conditions are notmet, an exception is raised. This exception contains a views thateither prompts for authentication, or informs the user that theydo not meet the required criteria."""__authors__ = [ '"Todd Larsen" <tlarsen@google.com>', '"Sverre Rabbelier" <sverre@rabbelier.nl>', '"Pawel Solyga" <pawel.solyga@gmail.com>', ]from google.appengine.api import usersfrom django.utils.translation import ugettext_lazyfrom soc.logic import accountsfrom soc.logic.models import user as user_logicfrom soc.logic.models import request as request_logicfrom soc.views import helperfrom soc.views import out_of_bandDEF_NO_USER_LOGIN_MSG_FMT = ugettext_lazy( 'Please create <a href="/user/edit">User Profile</a>' ' in order to view this page.')DEF_DEV_LOGOUT_LOGIN_MSG_FMT = ugettext_lazy( 'Please <a href="%%(sign_out)s">sign out</a>' ' and <a href="%%(sign_in)s">sign in</a>' ' again as %(role)s to view this page.')DEF_PAGE_DENIED_MSG = ugettext_lazy( 'Access to this page has been restricted')def allow(request): """Never returns an alternate HTTP response Args: request: a Django HTTP request """ returndef deny(request): """Returns an alternate HTTP response Args: request: a Django HTTP request Returns: a subclass of django.http.HttpResponse which contains the alternate response that should be returned by the calling view. """ context = helper.responses.getUniversalContext(request) context['title'] = 'Access denied' raise out_of_band.AccessViolation(DEF_PAGE_DENIED_MSG, context=context)def checkIsLoggedIn(request): """Returns an alternate HTTP response if Google Account is not logged in. Args: request: a Django HTTP request Raises: AccessViolationResponse: If the required authorization is not met. Returns: None if the user is logged in, or a subclass of django.http.HttpResponse which contains the alternate response that should be returned by the calling view. """ if users.get_current_user(): return raise out_of_band.LoginRequest()def checkIsUser(request): """Returns an alternate HTTP response if Google Account has no User entity. Args: request: a Django HTTP request Raises: AccessViolationResponse: If the required authorization is not met. Returns: None if User exists for a Google Account, or a subclass of django.http.HttpResponse which contains the alternate response should be returned by the calling view. """ checkIsLoggedIn(request) user = user_logic.logic.getForFields( {'account': users.get_current_user()}, unique=True) if user: return raise out_of_band.LoginRequest(message_fmt=DEF_NO_USER_LOGIN_MSG_FMT)def checkIsDeveloper(request): """Returns an alternate HTTP response if Google Account is not a Developer. Args: request: A Django HTTP request Raises: AccessViolationResponse: If the required authorization is not met. Returns: None if Google Account is logged in and logged-in user is a Developer, or a subclass of django.http.HttpResponse which contains the alternate response should be returned by the calling view. """ checkIsUser(request) if accounts.isDeveloper(account=users.get_current_user()): return None login_message_fmt = DEF_DEV_LOGOUT_LOGIN_MSG_FMT % { 'role': 'a site developer '} raise out_of_band.LoginRequest(message_fmt=login_message_fmt)def checkIsInvited(request, role): """Returns an alternate HTTP response if Google Account has no Host entity for the specified program. Args: request: A Django HTTP request Raises: AccessViolationResponse: If the required authorization is not met. Returns: None if Host exists for the specified program, or a subclass of django.http.HttpResponse which contains the alternate response should be returned by the calling view. """ checkIsUser(request) user = user_logic.logic.getForFields( {'account': users.get_current_user()}, unique=True) properties = { 'requester': user, 'role': role, 'accepted': True, } request = request_logic.logic.getForFields(properties, unique=True) if request: return login_message_fmt = DEF_DEV_LOGOUT_LOGIN_MSG_FMT % { 'role': 'a host for this program'} raise out_of_band.LoginRequest(message_fmt=login_message_fmt)