我的设置:Django-3.0、Python-3.8、django_auth_ldap
我的组织中有 LDAP 服务器(Active Directory 服务器)。我正在构建一个 Django 应用程序,它为所有用户提供一些操作。
我知道 Django 具有内置的用户身份验证机制,但它会验证用户是否存在于用户模型数据库中。
但我的要求是。
所有用户条目都在 LDAP 服务器(活动目录)中。使用正确的用户凭据 LDAP 服务器对我进行身份验证。我在 Django 'accounts'应用程序
中创建了一个登录页面,
1. 每当我从登录页面输入用户名和密码时,它都应该使用我的组织 LDAP 服务器进行身份验证。
2. 登录后,我必须为登录用户保留会话 5 分钟。(Django 身份验证会话)
我看到django_auth_ldap包为我的目的提供了一些见解。
我在settings.py中有这些内容。
import ldap
##Ldap settings
AUTH_LDAP_SERVER_URI = "ldap://myldapserver.com"
AUTH_LDAP_CONNECTION_OPTIONS = {ldap.OPT_REFERRALS : 0}
AUTH_LDAP_USER_DN_TEMPLATE = "uid=%(user)s, OU=USERS,dc=myldapserver, dc=com"
AUTH_LDAP_START_TLS = True
#Register authentication backend
AUTHENTICATION_BACKENDS = [
"django_auth_ldap.backend.LDAPBackend",
]
在views.py中调用身份验证。
from django_auth_ldap.backend import LDAPBackend
def accounts_login(request):
username = ""
password = ""
if request.method == "POST":
username = request.POST.get('username')
password = request.POST.get('password')
auth = LDAPBackend()
user = auth.authenticate(request, username=username, password=password)
if user is not None:
login(request, user)
return redirect("/")
else:
error = "Authentication Failed"
return render(request, "accounts/login.html", 'error':error)
return render(request, "accounts/login.html")
但是使用上述方法总是无法通过 LDAP 服务器进行身份验证。
如果我使用普通的 python simple_bind_s() 调用,身份验证对同一个 LDAP 服务器工作正常。
import ldap
def ldap_auth(username, password):
conn = ldap.initialize(myproj.settings.LDAP_AUTH_URI)
try:
ldap.set_option(ldap.OPT_REFERRALS, 0)
#ldap.set_option(ldap.OPT_PROTOCOL_VERSION, 3)
conn.simple_bind_s(username, password)
except ldap.LDAPError as e:
return f'failed to authenticate'
conn.unbind_s()
return "Success"
有人可以建议我按照我的要求使 LDAPBackend 身份验证工作吗?
注意:我没有 LDAP 服务器的管理员权限。