Skip to content

Instantly share code, notes, and snippets.

@aoshiman
Created June 13, 2013 09:33
Show Gist options
  • Save aoshiman/5772451 to your computer and use it in GitHub Desktop.
Save aoshiman/5772451 to your computer and use it in GitHub Desktop.
FlaskでBASIC認証をかけるデコレータ
from functools import wraps
from flask import request, Response
from setting import USERNAME, PASSWORD
def check_auth(username, password):
"""This function is called to check if a username /
password combination is valid.
"""
return username == USERNAME and password == PASSWORD
def authenticate():
"""Sends a 401 response that enables basic auth"""
return Response(
'Could not verify your access level for that URL.\n'
'You have to login with proper credentials', 401,
{'WWW-Authenticate': 'Basic realm="Login Required"'})
def requires_auth(f):
@wraps(f)
def decorated(*args, **kwargs):
auth = request.authorization
if not auth or not check_auth(auth.username, auth.password):
return authenticate()
return f(*args, **kwargs)
return decorated
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment