mirror of
https://github.com/moepman/bk-dss
synced 2024-12-22 23:04:26 +01:00
Start implementation of a create user dialog.
This commit is contained in:
parent
4fff031fc4
commit
71bfe671ed
@ -5,5 +5,7 @@ SESSION_TIMEOUT = 3600
|
|||||||
LDAP_URI = "ldaps://ldap.example.com"
|
LDAP_URI = "ldaps://ldap.example.com"
|
||||||
LDAP_BASE = "ou=people,dc=example,dc=com"
|
LDAP_BASE = "ou=people,dc=example,dc=com"
|
||||||
|
|
||||||
|
ADMINS = [ "cn=admin,ou=people,dc=example,dc=com" ]
|
||||||
|
|
||||||
REDIS_HOST = "127.0.0.1"
|
REDIS_HOST = "127.0.0.1"
|
||||||
REDIS_PSWD = "foobared"
|
REDIS_PSWD = "foobared"
|
||||||
|
39
index.py
39
index.py
@ -5,7 +5,7 @@ from flask_wtf import Form
|
|||||||
import ldap
|
import ldap
|
||||||
from redis import Redis
|
from redis import Redis
|
||||||
import uuid
|
import uuid
|
||||||
from wtforms.fields import PasswordField, SelectField, StringField, SubmitField
|
from wtforms.fields import IntegerField, PasswordField, SelectField, StringField, SubmitField
|
||||||
from wtforms.validators import EqualTo, Required
|
from wtforms.validators import EqualTo, Required
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
@ -21,6 +21,15 @@ class ReadonlyStringField(StringField):
|
|||||||
kwargs.setdefault('readonly', True)
|
kwargs.setdefault('readonly', True)
|
||||||
return super(ReadonlyStringField, self).__call__(*args, **kwargs)
|
return super(ReadonlyStringField, self).__call__(*args, **kwargs)
|
||||||
|
|
||||||
|
class CreateForm(Form):
|
||||||
|
user = StringField('Username', validators = [Required()])
|
||||||
|
uid = IntegerField('User ID', validators = [Required()])
|
||||||
|
gn = StringField('Given Name', validators = [Required()])
|
||||||
|
sn = StringField('Family Name', validators = [Required()])
|
||||||
|
pwd1 = PasswordField('Password', validators = [Required()])
|
||||||
|
pwd2 = PasswordField('Password (repeat)', validators = [Required(), EqualTo('pwd1', "Passwords must match")])
|
||||||
|
submit = SubmitField('Submit')
|
||||||
|
|
||||||
class EditForm(Form):
|
class EditForm(Form):
|
||||||
user = ReadonlyStringField('Username')
|
user = ReadonlyStringField('Username')
|
||||||
pwd1 = PasswordField('New Password', validators = [Required()])
|
pwd1 = PasswordField('New Password', validators = [Required()])
|
||||||
@ -33,6 +42,9 @@ class LoginForm(Form):
|
|||||||
submit = SubmitField('Login')
|
submit = SubmitField('Login')
|
||||||
|
|
||||||
|
|
||||||
|
def isAdmin():
|
||||||
|
return isLoggedin() and rdb.hget(session['uuid'], 'user') in app.config.get('ADMINS', [])
|
||||||
|
|
||||||
def isLoggedin():
|
def isLoggedin():
|
||||||
return 'uuid' in session and rdb.exists(session['uuid'])
|
return 'uuid' in session and rdb.exists(session['uuid'])
|
||||||
|
|
||||||
@ -41,6 +53,8 @@ def buildNav():
|
|||||||
nav = []
|
nav = []
|
||||||
if isLoggedin():
|
if isLoggedin():
|
||||||
nav.append('edit')
|
nav.append('edit')
|
||||||
|
if isAdmin():
|
||||||
|
nav.append('create')
|
||||||
nav.append('logout')
|
nav.append('logout')
|
||||||
else:
|
else:
|
||||||
nav.append('login')
|
nav.append('login')
|
||||||
@ -53,6 +67,29 @@ def index():
|
|||||||
return render_template('index.html', nav=buildNav())
|
return render_template('index.html', nav=buildNav())
|
||||||
|
|
||||||
|
|
||||||
|
@app.route('/create', methods=['GET', 'POST'])
|
||||||
|
def create():
|
||||||
|
if not isLoggedin():
|
||||||
|
return render_template('error.html', message="You are not logged in. Please log in first.", nav=buildNav())
|
||||||
|
|
||||||
|
form = CreateForm()
|
||||||
|
|
||||||
|
if form.validate_on_submit():
|
||||||
|
l = ldap.initialize(app.config.get('LDAP_URI', 'ldaps://127.0.0.1'))
|
||||||
|
try:
|
||||||
|
l.simple_bind_s(rdb.hget(session['uuid'], 'user'), rdb.hget(session['uuid'], 'pswd'))
|
||||||
|
# TODO implement
|
||||||
|
#l.add_s()
|
||||||
|
except:
|
||||||
|
l.unbind_s()
|
||||||
|
else:
|
||||||
|
# TODO display success message
|
||||||
|
l.unbind_s()
|
||||||
|
pass
|
||||||
|
|
||||||
|
return render_template('create.html', form=form, nav=buildNav())
|
||||||
|
|
||||||
|
|
||||||
@app.route('/edit', methods=['GET', 'POST'])
|
@app.route('/edit', methods=['GET', 'POST'])
|
||||||
def edit():
|
def edit():
|
||||||
if not isLoggedin():
|
if not isLoggedin():
|
||||||
|
14
templates/create.html
Normal file
14
templates/create.html
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{% from "_helpers.html" import render_field %}
|
||||||
|
{% extends "base.html" %}
|
||||||
|
{% block content %}
|
||||||
|
<form method="POST">
|
||||||
|
{{ form.hidden_tag() }}
|
||||||
|
{{ render_field(form.user) }}
|
||||||
|
{{ render_field(form.uid) }}
|
||||||
|
{{ render_field(form.sn) }}
|
||||||
|
{{ render_field(form.gn) }}
|
||||||
|
{{ render_field(form.pwd1) }}
|
||||||
|
{{ render_field(form.pwd2) }}
|
||||||
|
<div class="form-group">{{ form.submit(class_="btn btn-default") }}</div>
|
||||||
|
</form>
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue
Block a user