2019-05-01 20:43:28 +00:00
|
|
|
from flask import Blueprint, request, jsonify
|
2020-01-18 23:37:40 +00:00
|
|
|
import geruecht.controller.ldapController as lc
|
|
|
|
import geruecht.controller.userController as uc
|
2019-05-01 20:43:28 +00:00
|
|
|
from datetime import datetime
|
2020-03-04 20:11:41 +00:00
|
|
|
from geruecht.model import BAR, MONEY, USER, VORSTAND
|
2020-01-19 08:07:45 +00:00
|
|
|
from geruecht.decorator import login_required
|
2020-03-10 08:19:11 +00:00
|
|
|
from geruecht.logger import getDebugLogger, getCreditLogger
|
|
|
|
|
|
|
|
debug = getDebugLogger()
|
|
|
|
creditL = getCreditLogger()
|
2019-05-01 20:43:28 +00:00
|
|
|
|
|
|
|
baruser = Blueprint("baruser", __name__)
|
|
|
|
|
2020-03-10 10:08:24 +00:00
|
|
|
ldap = lc.LDAPController()
|
2020-01-18 23:37:40 +00:00
|
|
|
userController = uc.UserController()
|
|
|
|
|
2020-01-19 08:07:45 +00:00
|
|
|
|
2019-05-01 20:43:28 +00:00
|
|
|
@baruser.route("/bar")
|
2020-01-19 08:07:45 +00:00
|
|
|
@login_required(groups=[BAR])
|
|
|
|
def _bar(**kwargs):
|
2019-05-02 16:50:59 +00:00
|
|
|
""" Main function for Baruser
|
2019-05-02 23:40:13 +00:00
|
|
|
|
2019-05-02 16:50:59 +00:00
|
|
|
Returns JSON-file with all Users, who hast amounts in this month.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON-File with Users, who has amounts in this month
|
|
|
|
or ERROR 401 Permission Denied
|
|
|
|
"""
|
2020-03-10 08:19:11 +00:00
|
|
|
debug.info("/bar")
|
|
|
|
try:
|
|
|
|
dic = {}
|
|
|
|
users = userController.getAllUsersfromDB()
|
|
|
|
for user in users:
|
|
|
|
geruecht = None
|
|
|
|
geruecht = user.getGeruecht(datetime.now().year)
|
|
|
|
if geruecht is not None:
|
|
|
|
all = geruecht.getSchulden()
|
|
|
|
if all != 0:
|
|
|
|
if all >= 0:
|
|
|
|
type = 'credit'
|
|
|
|
else:
|
|
|
|
type = 'amount'
|
|
|
|
dic[user.uid] = {"username": user.uid,
|
2020-03-10 10:08:24 +00:00
|
|
|
"firstname": user.firstname,
|
|
|
|
"lastname": user.lastname,
|
|
|
|
"amount": all,
|
|
|
|
"locked": user.locked,
|
|
|
|
"type": type
|
|
|
|
}
|
|
|
|
debug.debug("return {{ {} }}".format(dic))
|
2020-03-10 08:19:11 +00:00
|
|
|
return jsonify(dic)
|
|
|
|
except Exception as err:
|
|
|
|
debug.debug("exception", exc_info=True)
|
|
|
|
return jsonify({"error": str(err)}), 500
|
2020-01-19 08:07:45 +00:00
|
|
|
|
2019-05-01 20:43:28 +00:00
|
|
|
|
|
|
|
@baruser.route("/baradd", methods=['POST'])
|
2020-01-19 08:07:45 +00:00
|
|
|
@login_required(groups=[BAR])
|
|
|
|
def _baradd(**kwargs):
|
2019-05-02 16:50:59 +00:00
|
|
|
""" Function for Baruser to add amount
|
|
|
|
|
|
|
|
This function added to the user with the posted userID the posted amount.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON-File with userID and the amount
|
|
|
|
or ERROR 401 Permission Denied
|
|
|
|
"""
|
2020-03-10 08:19:11 +00:00
|
|
|
debug.info("/baradd")
|
|
|
|
try:
|
|
|
|
data = request.get_json()
|
|
|
|
userID = data['userId']
|
|
|
|
amount = int(data['amount'])
|
|
|
|
|
|
|
|
date = datetime.now()
|
2020-03-10 10:08:24 +00:00
|
|
|
userController.addAmount(
|
|
|
|
userID, amount, year=date.year, month=date.month)
|
2020-03-10 08:19:11 +00:00
|
|
|
user = userController.getUser(userID)
|
|
|
|
geruecht = user.getGeruecht(year=date.year)
|
|
|
|
month = geruecht.getMonth(month=date.month)
|
|
|
|
amount = abs(month[0] - month[1])
|
|
|
|
all = geruecht.getSchulden()
|
|
|
|
if all >= 0:
|
|
|
|
type = 'credit'
|
|
|
|
else:
|
|
|
|
type = 'amount'
|
|
|
|
dic = user.toJSON()
|
|
|
|
dic['amount'] = abs(all)
|
|
|
|
dic['type'] = type
|
2020-03-10 10:08:24 +00:00
|
|
|
debug.debug("return {{ {} }}".format(dic))
|
|
|
|
creditL.info("{} Baruser {} {} fügt {} {} {} € Schulden hinzu.".format(
|
|
|
|
date, kwargs['accToken'].user.firstname, kwargs['accToken'].user.lastname, user.firstname, user.lastname, amount/100))
|
2020-03-10 08:19:11 +00:00
|
|
|
return jsonify(dic)
|
|
|
|
except Exception as err:
|
|
|
|
debug.debug("exception", exc_info=True)
|
|
|
|
return jsonify({"error": str(err)}), 500
|
2020-01-19 08:07:45 +00:00
|
|
|
|
2019-05-02 13:39:53 +00:00
|
|
|
|
|
|
|
@baruser.route("/barGetUsers")
|
2020-01-19 08:07:45 +00:00
|
|
|
@login_required(groups=[BAR, MONEY])
|
|
|
|
def _getUsers(**kwargs):
|
2019-05-02 16:50:59 +00:00
|
|
|
""" Get Users without amount
|
|
|
|
|
|
|
|
This Function returns all Users, who hasn't an amount in this month.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON-File with Users
|
|
|
|
or ERROR 401 Permission Denied
|
|
|
|
"""
|
2020-03-10 08:19:11 +00:00
|
|
|
debug.info("/barGetUsers")
|
|
|
|
try:
|
|
|
|
retVal = {}
|
|
|
|
retVal = ldap.getAllUser()
|
2020-03-10 10:08:24 +00:00
|
|
|
debug.debug("return {{ {} }}".format(retVal))
|
2020-03-10 08:19:11 +00:00
|
|
|
return jsonify(retVal)
|
|
|
|
except Exception as err:
|
|
|
|
debug.debug("exception", exc_info=True)
|
|
|
|
return jsonify({"error": str(err)}), 500
|
2019-05-02 13:39:53 +00:00
|
|
|
|
2020-03-10 10:08:24 +00:00
|
|
|
|
2020-02-19 22:11:24 +00:00
|
|
|
@baruser.route("/bar/storno", methods=['POST'])
|
|
|
|
@login_required(groups=[BAR])
|
|
|
|
def _storno(**kwargs):
|
|
|
|
""" Function for Baruser to storno amount
|
|
|
|
|
|
|
|
This function added to the user with the posted userID the posted amount.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON-File with userID and the amount
|
|
|
|
or ERROR 401 Permission Denied
|
|
|
|
"""
|
2020-03-10 08:19:11 +00:00
|
|
|
debug.info("/bar/storno")
|
|
|
|
try:
|
|
|
|
data = request.get_json()
|
|
|
|
userID = data['userId']
|
|
|
|
amount = int(data['amount'])
|
|
|
|
|
|
|
|
date = datetime.now()
|
2020-03-10 10:08:24 +00:00
|
|
|
userController.addCredit(
|
|
|
|
userID, amount, year=date.year, month=date.month)
|
2020-03-10 08:19:11 +00:00
|
|
|
user = userController.getUser(userID)
|
|
|
|
geruecht = user.getGeruecht(year=date.year)
|
|
|
|
month = geruecht.getMonth(month=date.month)
|
|
|
|
amount = abs(month[0] - month[1])
|
|
|
|
all = geruecht.getSchulden()
|
|
|
|
if all >= 0:
|
|
|
|
type = 'credit'
|
|
|
|
else:
|
|
|
|
type = 'amount'
|
|
|
|
dic = user.toJSON()
|
|
|
|
dic['amount'] = abs(all)
|
|
|
|
dic['type'] = type
|
2020-03-10 10:08:24 +00:00
|
|
|
debug.debug("return {{ {} }}".format(dic))
|
|
|
|
creditL.info("{} Baruser {} {} storniert {} € von {} {}".format(
|
|
|
|
date, kwargs['accToken'].user.firstname, kwargs['accToken'].user.lastname, amount/100, user.firstname, user.lastname))
|
2020-03-10 08:19:11 +00:00
|
|
|
return jsonify(dic)
|
|
|
|
except Exception as err:
|
|
|
|
debug.debug("exception", exc_info=True)
|
|
|
|
return jsonify({"error": str(err)}), 500
|
2019-12-29 16:55:21 +00:00
|
|
|
|
2020-03-10 10:08:24 +00:00
|
|
|
|
2020-01-19 08:07:45 +00:00
|
|
|
@baruser.route("/barGetUser", methods=['POST'])
|
|
|
|
@login_required(groups=[BAR])
|
|
|
|
def _getUser(**kwargs):
|
2020-03-10 08:19:11 +00:00
|
|
|
debug.info("/barGetUser")
|
|
|
|
try:
|
|
|
|
data = request.get_json()
|
|
|
|
username = data['userId']
|
|
|
|
user = userController.getUser(username)
|
|
|
|
amount = user.getGeruecht(datetime.now().year).getSchulden()
|
|
|
|
if amount >= 0:
|
|
|
|
type = 'credit'
|
|
|
|
else:
|
|
|
|
type = 'amount'
|
|
|
|
|
|
|
|
retVal = user.toJSON()
|
|
|
|
retVal['amount'] = amount
|
|
|
|
retVal['type'] = type
|
2020-03-10 10:08:24 +00:00
|
|
|
debug.debug("return {{ {} }}".format(retVal))
|
2020-03-10 08:19:11 +00:00
|
|
|
return jsonify(retVal)
|
|
|
|
except Exception as err:
|
|
|
|
debug.debug("exception", exc_info=True)
|
|
|
|
return jsonify({"error": str(err)}), 500
|
2019-05-02 13:39:53 +00:00
|
|
|
|
2020-03-10 10:08:24 +00:00
|
|
|
|
2020-03-04 20:11:41 +00:00
|
|
|
@baruser.route("/search", methods=['GET'])
|
2020-03-10 10:08:24 +00:00
|
|
|
@login_required(groups=[BAR, MONEY, USER, VORSTAND])
|
2020-01-19 08:07:45 +00:00
|
|
|
def _search(**kwargs):
|
2020-03-10 08:19:11 +00:00
|
|
|
debug.info("/search")
|
|
|
|
try:
|
|
|
|
retVal = ldap.getAllUser()
|
|
|
|
for user in retVal:
|
|
|
|
if user['username'] == 'extern':
|
|
|
|
retVal.remove(user)
|
|
|
|
break
|
2020-03-10 10:08:24 +00:00
|
|
|
debug.debug("return {{ {} }}".format(retVal))
|
2020-03-10 08:19:11 +00:00
|
|
|
return jsonify(retVal)
|
|
|
|
except Exception as err:
|
|
|
|
debug.debug("exception", exc_info=True)
|
|
|
|
return jsonify({"error": str(err)}), 500
|