Skip to content
This repository has been archived by the owner on Nov 4, 2021. It is now read-only.

sdfsdhgjkbmnmxc/django-googleauth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-googleauth

Install

pip install -e git+git://github.com/sdfsdhgjkbmnmxc/django-googleauth.git#egg=googleauth

Setup settings.py

root = os.path.realpath(os.path.dirname(__file__))

MIDDLEWARE_CLASSES = (
    # ....
    'googleauth.middleware.AuthenticationMiddleware',
)

INSTALLED_APPS = (
    # ....
    'googleauth',
)

# get client_secrets.json from http://code.google.com/apis/console
GOOGLEAUTH_CLIENT_SECRETS_FILE = os.path.join(root, 'client_secrets.json')
#GOOGLEAUTH_MODEL = 'myapp.models.MyUser'
GOOGLEAUTH_USERNAME_IN_REQUEST = 'googleauth_user'
GOOGLEAUTH_START_PAGE = '/profile/'
GOOGLEAUTH_LOGIN_PAGE = '/login/'

Setup models.py

import googleauth

class MyUser(googleauth.User):
    pass

Setup urls.py

urlpatterns = patterns(
    '',
    url(r'^googleauth/', include('googleauth.urls')),
    # ...
)

Usage in views.py

from django.conf import settings
import googleauth


@googleauth.required
def mypage(request):
    return HttpResponse('Welcome, {}!'.format(request.myuser)


def index(request):
    if not request.myuser:
        return HttpResponseRedirect(settings.GOOGLEAUTH_LOGIN_PAGE)
    return render(request, 'index.html')

Usage in index.html

<form method="post" action="{% url googleauth_login %}">
    {% csrf_token %}
    <input type="submit" value="Login via Google">
</form>

{#  <a href="{% url googleauth_logout %}">logout</a> #}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages