app/soc/views/sponsor/profile.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Wed, 01 Oct 2008 22:19:22 +0000
changeset 259 74eb6b01c82c
child 270 7dd6d8347b56
permissions -rw-r--r--
Add basic Sponsors List, Create New Sponsor, Sponsor Public Profile views. Change all properties in Group model as required for now. Remaining TODO: write validation functions for Sponsor edit and create form fields that need additional validation (like address, phone number format). Patch by: Pawel Solyga Review by: to-be-reviewed

#!/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.

"""Views for displaying public Sponsor profiles.
"""

__authors__ = [
  '"Pawel Solyga" <pawel.solyga@gmail.com>',
  ]


from soc.logic import out_of_band
from soc.logic import sponsor
from soc.views import simple
from soc.views.helpers import response_helpers
from soc.views.helpers import template_helpers


DEF_SPONSOR_PUBLIC_TMPL = 'soc/group/profile/public.html'

def public(request, linkname=None, template=DEF_SPONSOR_PUBLIC_TMPL):
  """How the "general public" sees the Sponsor profile.

  Args:
    request: the standard django request object.
    linkname: the Sponsor's site-unique "linkname" extracted from the URL
    template: the template path to use for rendering the template.

  Returns:
    A subclass of django.http.HttpResponse with generated template.
  """
  # create default template context for use with any templates
  context = response_helpers.getUniversalContext(request)

  try:
    linkname_sponsor = sponsor.getSponsorIfLinkName(linkname)
  except out_of_band.ErrorResponse, error:
    # show custom 404 page when link name doesn't exist in Datastore
    return simple.errorResponse(request, error, template, context)

  linkname_sponsor.description = \
      template_helpers.unescape(linkname_sponsor.description)
  
  context.update({'linkname_group': linkname_sponsor,
                  'group_type': 'Sponsor'})

  return response_helpers.respond(request, template, context)