Skip to content

Instantly share code, notes, and snippets.

@mgara
Forked from codeinthehole/decorators.py
Created June 9, 2016 15:04
Show Gist options
  • Save mgara/ff2314c1901beb67da26244b13a218db to your computer and use it in GitHub Desktop.
Save mgara/ff2314c1901beb67da26244b13a218db to your computer and use it in GitHub Desktop.
Basic auth for Django snippet
import base64
from django.http import HttpResponse
from django.contrib.auth import authenticate
from django.conf import settings
def view_or_basicauth(view, request, *args, **kwargs):
# Check for valid basic auth header
if 'HTTP_AUTHORIZATION' in request.META:
auth = request.META['HTTP_AUTHORIZATION'].split()
if len(auth) == 2:
if auth[0].lower() == "basic":
uname, passwd = base64.b64decode(auth[1]).split(':')
user = authenticate(username=uname, password=passwd)
if user is not None and user.is_active:
request.user = user
return view(request, *args, **kwargs)
# Either they did not provide an authorization header or
# something in the authorization attempt failed. Send a 401
# back to them to ask them to authenticate.
response = HttpResponse()
response.status_code = 401
response['WWW-Authenticate'] = 'Basic realm="%s"' % settings.BASIC_AUTH_REALM
return response
def basicauth(view_func):
def wrapper(request, *args, **kwargs):
return view_or_basicauth(view_func, request, *args, **kwargs)
return wrapper(tws)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment