summaryrefslogtreecommitdiffstats
path: root/appengine_django/auth/templatetags.py
blob: 82378905bf2842f3a54ba771728d5e142114a3a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright 2008 Google Inc.
#
# 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.

"""
Template tags for the auth module. These are inserted into Django as "built-in"
tags so you do not need to use the load statement in your template to get
access to them.
"""

from django.template import Library
from django.template import Node

from google.appengine.api import users


class AuthLoginUrlsNode(Node):
  """Template node that creates an App Engine login or logout URL.

  If create_login_url is True the App Engine's login URL is rendered into
  the template, otherwise the logout URL.
  """
  def __init__(self, create_login_url, redirect):
    self.redirect = redirect
    self.create_login_url = create_login_url

  def render(self, context):
    if self.create_login_url:
      return users.create_login_url(self.redirect)
    else:
      return users.create_logout_url(self.redirect)


def auth_login_urls(parser, token):
  """Template tag registered as 'auth_login_url' and 'auth_logout_url'
  when the module is imported.

  Both tags take an optional argument that specifies the redirect URL and
  defaults to '/'.
  """
  bits = list(token.split_contents())
  if len(bits) == 2:
    redirect = bits[1]
  else:
    redirect = "/"
  login = bits[0] == "auth_login_url"
  return AuthLoginUrlsNode(login, redirect)


register = Library()
register.tag("auth_login_url", auth_login_urls)
register.tag("auth_logout_url", auth_login_urls)