1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 19:01:03 +00:00
supysonic/user.py

68 lines
1.9 KiB
Python
Raw Normal View History

# coding: utf-8
from flask import Flask, request, flash, render_template, redirect, url_for
import string, random, hashlib
import uuid
from web import app
import db
@app.route('/user')
def user_index():
return render_template('users.html', users = db.User.query.all())
@app.route('/user/add', methods = [ 'GET', 'POST' ])
def add_user():
if request.method == 'GET':
return render_template('adduser.html')
error = False
(name, passwd, passwd_confirm, mail, admin) = map(request.form.get, [ 'name', 'passwd', 'passwd_confirm', 'mail', 'admin' ])
if name in (None, ''):
flash('The name is required.')
error = True
elif db.User.query.filter(db.User.name == name).first():
flash('There is already a user with that name. Please pick another one.')
error = True
if passwd in (None, ''):
flash('Please provide a password.')
error = True
elif passwd != passwd_confirm:
flash("The passwords don't match.")
error = True
if admin is None:
admin = True if db.User.query.filter(db.User.admin == True).count() == 0 else False
else:
admin = True
if error:
return render_template('adduser.html')
salt = ''.join(random.choice(string.printable.strip()) for i in xrange(6))
crypt = hashlib.sha1(salt + passwd).hexdigest()
user = db.User(name = name, mail = mail, password = crypt, salt = salt, admin = admin)
db.session.add(user)
db.session.commit()
flash("User '%s' successfully added" % name)
return redirect(url_for('index'))
@app.route('/user/del/<id>')
def del_user(id):
try:
idid = uuid.UUID(id)
except ValueError:
flash('Invalid user id')
return redirect(url_for('index'))
user = db.User.query.get(idid)
if user is None:
flash('No such user')
return redirect(url_for('index'))
db.session.delete(user)
db.session.commit()
flash("Deleted user '%s'" % user.name)
return redirect(url_for('index'))