2021-02-13 13:13:46 +00:00
|
|
|
"""Pricelist plugin"""
|
|
|
|
|
2021-03-28 21:14:03 +00:00
|
|
|
from flask import Blueprint, jsonify, request, current_app
|
|
|
|
from werkzeug.local import LocalProxy
|
2021-03-29 10:50:04 +00:00
|
|
|
from werkzeug.exceptions import BadRequest, Forbidden, Unauthorized
|
2021-02-13 13:13:46 +00:00
|
|
|
|
|
|
|
from flaschengeist.plugins import Plugin
|
2021-03-29 10:50:04 +00:00
|
|
|
from flaschengeist.utils.decorators import login_required, extract_session
|
2021-03-28 21:14:03 +00:00
|
|
|
from flaschengeist.utils.HTTP import no_content
|
|
|
|
from flaschengeist.models.session import Session
|
|
|
|
from flaschengeist.controller import userController
|
2021-02-13 13:13:46 +00:00
|
|
|
|
|
|
|
from . import models
|
|
|
|
from . import pricelist_controller, permissions
|
|
|
|
|
|
|
|
|
|
|
|
class PriceListPlugin(Plugin):
|
2021-03-29 05:30:56 +00:00
|
|
|
name = "pricelist"
|
|
|
|
blueprint = Blueprint(name, __name__, url_prefix="/pricelist")
|
|
|
|
plugin = LocalProxy(lambda: current_app.config["FG_PLUGINS"][PriceListPlugin.name])
|
2021-02-13 13:13:46 +00:00
|
|
|
models = models
|
|
|
|
|
|
|
|
def __init__(self, cfg):
|
2021-03-29 05:30:56 +00:00
|
|
|
super().__init__(cfg)
|
2021-02-13 13:13:46 +00:00
|
|
|
config = {"discount": 0}
|
|
|
|
config.update(cfg)
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/drink-types", methods=["GET"])
|
|
|
|
@PriceListPlugin.blueprint.route("/drink-types/<int:identifier>", methods=["GET"])
|
2021-02-13 13:13:46 +00:00
|
|
|
def get_drink_types(identifier=None):
|
2021-03-28 21:14:03 +00:00
|
|
|
if identifier is None:
|
2021-02-13 13:13:46 +00:00
|
|
|
result = pricelist_controller.get_drink_types()
|
2021-03-28 21:14:03 +00:00
|
|
|
else:
|
|
|
|
result = pricelist_controller.get_drink_type(identifier)
|
2021-02-13 13:13:46 +00:00
|
|
|
return jsonify(result)
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/drink-types", methods=["POST"])
|
2021-02-13 13:13:46 +00:00
|
|
|
@login_required(permission=permissions.CREATE_TYPE)
|
|
|
|
def new_drink_type(current_session):
|
|
|
|
data = request.get_json()
|
|
|
|
if "name" not in data:
|
|
|
|
raise BadRequest
|
|
|
|
drink_type = pricelist_controller.create_drink_type(data["name"])
|
|
|
|
return jsonify(drink_type)
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/drink-types/<int:identifier>", methods=["PUT"])
|
2021-02-13 13:13:46 +00:00
|
|
|
@login_required(permission=permissions.EDIT_TYPE)
|
|
|
|
def update_drink_type(identifier, current_session):
|
|
|
|
data = request.get_json()
|
|
|
|
if "name" not in data:
|
|
|
|
raise BadRequest
|
2021-03-28 21:14:03 +00:00
|
|
|
drink_type = pricelist_controller.rename_drink_type(identifier, data["name"])
|
2021-02-13 13:13:46 +00:00
|
|
|
return jsonify(drink_type)
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/drink-types/<int:identifier>", methods=["DELETE"])
|
2021-02-13 13:13:46 +00:00
|
|
|
@login_required(permission=permissions.DELETE_TYPE)
|
|
|
|
def delete_drink_type(identifier, current_session):
|
|
|
|
pricelist_controller.delete_drink_type(identifier)
|
2021-03-28 21:14:03 +00:00
|
|
|
return no_content()
|
2021-02-13 13:13:46 +00:00
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/tags", methods=["GET"])
|
|
|
|
@PriceListPlugin.blueprint.route("/tags/<int:identifier>", methods=["GET"])
|
2021-02-13 13:13:46 +00:00
|
|
|
def get_tags(identifier=None):
|
|
|
|
if identifier:
|
|
|
|
result = pricelist_controller.get_tag(identifier)
|
|
|
|
else:
|
|
|
|
result = pricelist_controller.get_tags()
|
|
|
|
return jsonify(result)
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/tags", methods=["POST"])
|
2021-02-13 13:13:46 +00:00
|
|
|
@login_required(permission=permissions.CREATE_TAG)
|
|
|
|
def new_tag(current_session):
|
|
|
|
data = request.get_json()
|
|
|
|
if "name" not in data:
|
|
|
|
raise BadRequest
|
|
|
|
drink_type = pricelist_controller.create_tag(data["name"])
|
|
|
|
return jsonify(drink_type)
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/tags/<int:identifier>", methods=["PUT"])
|
2021-02-13 13:13:46 +00:00
|
|
|
@login_required(permission=permissions.EDIT_TAG)
|
|
|
|
def update_tag(identifier, current_session):
|
|
|
|
data = request.get_json()
|
|
|
|
if "name" not in data:
|
|
|
|
raise BadRequest
|
2021-03-28 21:14:03 +00:00
|
|
|
tag = pricelist_controller.rename_tag(identifier, data["name"])
|
|
|
|
return jsonify(tag)
|
2021-02-13 13:13:46 +00:00
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/tags/<int:identifier>", methods=["DELETE"])
|
2021-02-13 13:13:46 +00:00
|
|
|
@login_required(permission=permissions.DELETE_TAG)
|
|
|
|
def delete_tag(identifier, current_session):
|
|
|
|
pricelist_controller.delete_tag(identifier)
|
2021-03-28 21:14:03 +00:00
|
|
|
return no_content()
|
2021-02-13 13:13:46 +00:00
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/drinks", methods=["GET"])
|
|
|
|
@PriceListPlugin.blueprint.route("/drinks/<int:identifier>", methods=["GET"])
|
2021-02-13 13:13:46 +00:00
|
|
|
def get_drinks(identifier=None):
|
2021-03-28 14:41:20 +00:00
|
|
|
public = True
|
|
|
|
try:
|
|
|
|
extract_session()
|
|
|
|
public = False
|
|
|
|
except Unauthorized:
|
|
|
|
public = True
|
|
|
|
|
2021-02-13 13:13:46 +00:00
|
|
|
if identifier:
|
2021-03-28 14:41:20 +00:00
|
|
|
result = pricelist_controller.get_drink(identifier, public=public)
|
2021-02-13 13:13:46 +00:00
|
|
|
else:
|
2021-03-28 14:41:20 +00:00
|
|
|
result = pricelist_controller.get_drinks(public=public)
|
2021-02-13 13:13:46 +00:00
|
|
|
return jsonify(result)
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/drinks/search/<string:name>", methods=["GET"])
|
2021-02-13 13:13:46 +00:00
|
|
|
def search_drinks(name):
|
|
|
|
return jsonify(pricelist_controller.get_drinks(name))
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/drinks", methods=["POST"])
|
2021-02-13 13:13:46 +00:00
|
|
|
@login_required(permission=permissions.CREATE)
|
|
|
|
def create_drink(current_session):
|
|
|
|
data = request.get_json()
|
2021-03-17 20:36:51 +00:00
|
|
|
return jsonify(pricelist_controller.set_drink(data))
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/drinks/<int:identifier>", methods=["PUT"])
|
2021-03-17 20:36:51 +00:00
|
|
|
def update_drink(identifier):
|
|
|
|
data = request.get_json()
|
|
|
|
return jsonify(pricelist_controller.update_drink(identifier, data))
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/drinks/<int:identifier>", methods=["DELETE"])
|
2021-03-17 20:36:51 +00:00
|
|
|
def delete_drink(identifier):
|
|
|
|
pricelist_controller.delete_drink(identifier)
|
2021-03-28 21:14:03 +00:00
|
|
|
return no_content()
|
2021-03-15 18:56:51 +00:00
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/prices/<int:identifier>", methods=["DELETE"])
|
2021-03-15 18:56:51 +00:00
|
|
|
def delete_price(identifier):
|
|
|
|
pricelist_controller.delete_price(identifier)
|
2021-03-28 21:14:03 +00:00
|
|
|
return no_content()
|
2021-03-15 22:53:21 +00:00
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/volumes/<int:identifier>", methods=["DELETE"])
|
2021-03-15 22:53:21 +00:00
|
|
|
def delete_volume(identifier):
|
|
|
|
pricelist_controller.delete_volume(identifier)
|
2021-03-28 21:14:03 +00:00
|
|
|
return no_content()
|
2021-03-16 22:27:54 +00:00
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/ingredients/extraIngredients", methods=["GET"])
|
2021-03-28 21:14:03 +00:00
|
|
|
def get_extra_ingredients():
|
2021-03-16 22:27:54 +00:00
|
|
|
return jsonify(pricelist_controller.get_extra_ingredients())
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/ingredients/<int:identifier>", methods=["DELETE"])
|
2021-03-16 22:27:54 +00:00
|
|
|
def delete_ingredient(identifier):
|
|
|
|
pricelist_controller.delete_ingredient(identifier)
|
2021-03-28 21:14:03 +00:00
|
|
|
return no_content()
|
2021-03-17 21:49:54 +00:00
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/ingredients/extraIngredients", methods=["POST"])
|
2021-03-17 21:49:54 +00:00
|
|
|
def set_extra_ingredient():
|
|
|
|
data = request.get_json()
|
|
|
|
return jsonify(pricelist_controller.set_extra_ingredient(data))
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/ingredients/extraIngredients/<int:identifier>", methods=["PUT"])
|
2021-03-17 21:49:54 +00:00
|
|
|
def update_extra_ingredient(identifier):
|
|
|
|
data = request.get_json()
|
|
|
|
return jsonify(pricelist_controller.update_extra_ingredient(identifier, data))
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/ingredients/extraIngredients/<int:identifier>", methods=["DELETE"])
|
2021-03-17 21:49:54 +00:00
|
|
|
def delete_extra_ingredient(identifier):
|
|
|
|
pricelist_controller.delete_extra_ingredient(identifier)
|
2021-03-28 21:14:03 +00:00
|
|
|
return no_content()
|
2021-03-18 21:34:18 +00:00
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/settings/min_prices", methods=["POST", "GET"])
|
2021-03-21 21:06:24 +00:00
|
|
|
def pricelist_settings_min_prices():
|
|
|
|
if request.method == "GET":
|
2021-03-29 05:30:56 +00:00
|
|
|
# TODO: Handle if no prices are set!
|
|
|
|
return jsonify(PriceListPlugin.plugin.get_setting("min_prices"))
|
2021-03-21 21:06:24 +00:00
|
|
|
else:
|
|
|
|
data = request.get_json()
|
|
|
|
if not isinstance(data, list) or not all(isinstance(n, int) for n in data):
|
|
|
|
raise BadRequest
|
|
|
|
data.sort()
|
2021-03-29 05:30:56 +00:00
|
|
|
PriceListPlugin.plugin.set_setting("min_prices", data)
|
2021-03-21 21:06:24 +00:00
|
|
|
return no_content()
|
|
|
|
|
|
|
|
|
2021-03-29 05:30:56 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/users/<userid>/pricecalc_columns", methods=["GET", "PUT"])
|
2021-03-18 21:34:18 +00:00
|
|
|
@login_required()
|
|
|
|
def get_columns(userid, current_session: Session):
|
|
|
|
"""Get pricecalc_columns of an user
|
|
|
|
|
|
|
|
Route: ``/users/<userid>/pricelist/pricecac_columns`` | Method: ``GET`` or ``PUT``
|
|
|
|
POST-data: On ``PUT`` json encoded array of floats
|
|
|
|
|
|
|
|
Args:
|
|
|
|
userid: Userid identifying the user
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
GET: JSON object containing the shortcuts as float array or HTTP error
|
|
|
|
PUT: HTTP-created or HTTP error
|
|
|
|
"""
|
2021-03-19 21:40:36 +00:00
|
|
|
if userid != current_session.user_.userid:
|
2021-03-18 21:34:18 +00:00
|
|
|
raise Forbidden
|
|
|
|
|
|
|
|
user = userController.get_user(userid)
|
|
|
|
if request.method == "GET":
|
|
|
|
return jsonify(user.get_attribute("pricecalc_columns", []))
|
|
|
|
else:
|
|
|
|
data = request.get_json()
|
|
|
|
if not isinstance(data, list) or not all(isinstance(n, str) for n in data):
|
|
|
|
raise BadRequest
|
|
|
|
data.sort(reverse=True)
|
|
|
|
user.set_attribute("pricecalc_columns", data)
|
|
|
|
userController.persist()
|
|
|
|
return no_content()
|
2021-03-25 19:32:21 +00:00
|
|
|
|
2021-03-29 10:50:04 +00:00
|
|
|
@PriceListPlugin.route("/drinks/<int:identifier>/picture", methods=["POST", "GET", "DELETE"])
|
2021-03-25 19:32:21 +00:00
|
|
|
def set_picture(identifier):
|
|
|
|
|
|
|
|
if request.method == "DELETE":
|
|
|
|
pricelist_controller.delete_drink_picture(identifier)
|
|
|
|
return no_content()
|
|
|
|
|
|
|
|
file = request.files.get("file")
|
|
|
|
if file:
|
|
|
|
picture = models._Picture()
|
|
|
|
picture.mimetype = file.content_type
|
|
|
|
picture.binary = bytearray(file.stream.read())
|
2021-03-28 10:47:02 +00:00
|
|
|
return jsonify(pricelist_controller.save_drink_picture(identifier, picture))
|
2021-03-25 19:32:21 +00:00
|
|
|
else:
|
|
|
|
raise BadRequest
|
|
|
|
|
2021-03-29 10:50:04 +00:00
|
|
|
@PriceListPlugin.route("/picture/<identifier>", methods=["GET"])
|
2021-03-28 10:47:02 +00:00
|
|
|
def _get_picture(identifier):
|
|
|
|
if request.method == "GET":
|
|
|
|
size = request.args.get("size")
|
2021-03-29 10:50:04 +00:00
|
|
|
path = PriceListPlugin.plugin["path"]
|
2021-03-28 10:47:02 +00:00
|
|
|
response = pricelist_controller.get_drink_picture(identifier, size)
|
|
|
|
return response.make_conditional(request)
|