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
|
|
|
|
2021-04-01 20:45:28 +00:00
|
|
|
from flaschengeist import logger
|
2021-04-15 20:05:34 +00:00
|
|
|
from flaschengeist.controller import userController
|
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
|
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"
|
2021-03-29 18:26:15 +00:00
|
|
|
permissions = permissions.permissions
|
2021-03-29 05:30:56 +00:00
|
|
|
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-04-14 20:42:57 +00:00
|
|
|
"""Get DrinkType(s)
|
|
|
|
|
|
|
|
Route: ``/pricelist/drink-types`` | Method: ``GET``
|
|
|
|
Route: ``/pricelist/drink-types/<identifier>`` | Method: ``GET``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: If querying a spicific DrinkType
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded (list of) DrinkType(s) or HTTP-error
|
|
|
|
"""
|
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):
|
2021-04-14 20:42:57 +00:00
|
|
|
"""Create new DrinkType
|
|
|
|
|
|
|
|
Route ``/pricelist/drink-types`` | Method: ``POST``
|
|
|
|
|
|
|
|
POST-data: ``{name: string}``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded DrinkType or HTTP-error
|
|
|
|
"""
|
2021-02-13 13:13:46 +00:00
|
|
|
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):
|
2021-04-14 20:42:57 +00:00
|
|
|
"""Modify DrinkType
|
|
|
|
|
|
|
|
Route ``/pricelist/drink-types/<identifier>`` | METHOD ``PUT``
|
|
|
|
|
|
|
|
POST-data: ``{name: string}``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of DrinkType
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded DrinkType or HTTP-error
|
|
|
|
"""
|
2021-02-13 13:13:46 +00:00
|
|
|
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):
|
2021-04-14 20:42:57 +00:00
|
|
|
"""Delete DrinkType
|
|
|
|
|
|
|
|
Route: ``/pricelist/drink-types/<identifier>`` | Method: ``DELETE``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of DrinkType
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
HTTP-NoContent or HTTP-error
|
|
|
|
"""
|
2021-02-13 13:13:46 +00:00
|
|
|
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):
|
2021-04-14 20:42:57 +00:00
|
|
|
"""Get Tag(s)
|
|
|
|
|
|
|
|
Route: ``/pricelist/tags`` | Method: ``GET``
|
|
|
|
Route: ``/pricelist/tags/<identifier>`` | Method: ``GET``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of Tag
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded (list of) Tag(s) or HTTP-error
|
|
|
|
"""
|
2021-02-13 13:13:46 +00:00
|
|
|
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):
|
2021-04-14 20:42:57 +00:00
|
|
|
"""Create Tag
|
|
|
|
|
|
|
|
Route: ``/pricelist/tags`` | Method: ``POST``
|
|
|
|
|
|
|
|
POST-data: ``{name: string, color: string}``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded Tag or HTTP-error
|
|
|
|
"""
|
2021-02-13 13:13:46 +00:00
|
|
|
data = request.get_json()
|
2021-04-01 20:45:28 +00:00
|
|
|
drink_type = pricelist_controller.create_tag(data)
|
2021-02-13 13:13:46 +00:00
|
|
|
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):
|
2021-04-14 20:42:57 +00:00
|
|
|
"""Modify Tag
|
|
|
|
|
|
|
|
Route: ``/pricelist/tags/<identifier>`` | Methods: ``PUT``
|
|
|
|
|
|
|
|
POST-data: ``{name: string, color: string}``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of Tag
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded Tag or HTTP-error
|
|
|
|
"""
|
2021-02-13 13:13:46 +00:00
|
|
|
data = request.get_json()
|
2021-04-01 20:45:28 +00:00
|
|
|
tag = pricelist_controller.update_tag(identifier, data)
|
2021-03-28 21:14:03 +00:00
|
|
|
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):
|
2021-04-14 20:42:57 +00:00
|
|
|
"""Delete Tag
|
|
|
|
|
|
|
|
Route: ``/pricelist/tags/<identifier>`` | Methods: ``DELETE``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of Tag
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
HTTP-NoContent or HTTP-error
|
|
|
|
"""
|
2021-02-13 13:13:46 +00:00
|
|
|
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-04-14 20:42:57 +00:00
|
|
|
"""Get Drink(s)
|
|
|
|
|
|
|
|
Route: ``/pricelist/drinks`` | Method: ``GET``
|
|
|
|
Route: ``/pricelist/drinks/<identifier>`` | Method: ``GET``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of Drink
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded (list of) Drink(s) or HTTP-error
|
|
|
|
"""
|
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-04-01 20:45:28 +00:00
|
|
|
logger.debug(f"GET drink {result}")
|
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):
|
2021-04-14 20:42:57 +00:00
|
|
|
"""Search Drink
|
|
|
|
|
|
|
|
Route: ``/pricelist/drinks/search/<name>`` | Method: ``GET``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
name: Name to search
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded list of Drinks or HTTP-error
|
|
|
|
"""
|
|
|
|
public = True
|
|
|
|
try:
|
|
|
|
extract_session()
|
|
|
|
public = False
|
|
|
|
except Unauthorized:
|
|
|
|
public = True
|
|
|
|
return jsonify(pricelist_controller.get_drinks(name, public=public))
|
2021-02-13 13:13:46 +00:00
|
|
|
|
|
|
|
|
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):
|
2021-04-14 20:42:57 +00:00
|
|
|
"""Create Drink
|
|
|
|
|
2021-04-14 20:43:28 +00:00
|
|
|
Route: ``/pricelist/drinks`` | Method: ``POST``
|
|
|
|
|
|
|
|
POST-data :
|
|
|
|
``{
|
|
|
|
article_id?: string
|
|
|
|
cost_per_package?: float,
|
|
|
|
cost_per_volume?: float,
|
|
|
|
name: string,
|
|
|
|
package_size?: number,
|
|
|
|
receipt?: list[string],
|
|
|
|
tags?: list[Tag],
|
|
|
|
type: DrinkType,
|
|
|
|
uuid?: string,
|
|
|
|
volume?: float,
|
|
|
|
volumes?: list[
|
|
|
|
{
|
|
|
|
ingredients?: list[{
|
|
|
|
id: int
|
|
|
|
drink_ingredient?: {
|
|
|
|
ingredient_id: int,
|
|
|
|
volume: float
|
|
|
|
},
|
|
|
|
extra_ingredient?: {
|
|
|
|
id: number,
|
|
|
|
}
|
|
|
|
}],
|
|
|
|
prices?: list[
|
|
|
|
{
|
|
|
|
price: float
|
|
|
|
public: boolean
|
|
|
|
}
|
|
|
|
],
|
|
|
|
volume: float
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded Drink or HTTP-error
|
2021-04-14 20:42:57 +00:00
|
|
|
"""
|
2021-02-13 13:13:46 +00:00
|
|
|
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-04-14 20:42:57 +00:00
|
|
|
@login_required(permission=permissions.EDIT)
|
|
|
|
def update_drink(identifier, current_session):
|
|
|
|
"""Modify Drink
|
|
|
|
|
2021-04-14 20:43:28 +00:00
|
|
|
Route: ``/pricelist/drinks/<identifier>`` | Method: ``PUT``
|
|
|
|
|
|
|
|
POST-data :
|
|
|
|
``{
|
|
|
|
article_id?: string
|
|
|
|
cost_per_package?: float,
|
|
|
|
cost_per_volume?: float,
|
|
|
|
name: string,
|
|
|
|
package_size?: number,
|
|
|
|
receipt?: list[string],
|
|
|
|
tags?: list[Tag],
|
|
|
|
type: DrinkType,
|
|
|
|
uuid?: string,
|
|
|
|
volume?: float,
|
|
|
|
volumes?: list[
|
|
|
|
{
|
|
|
|
ingredients?: list[{
|
|
|
|
id: int
|
|
|
|
drink_ingredient?: {
|
|
|
|
ingredient_id: int,
|
|
|
|
volume: float
|
|
|
|
},
|
|
|
|
extra_ingredient?: {
|
|
|
|
id: number,
|
|
|
|
}
|
|
|
|
}],
|
|
|
|
prices?: list[
|
|
|
|
{
|
|
|
|
price: float
|
|
|
|
public: boolean
|
|
|
|
}
|
|
|
|
],
|
|
|
|
volume: float
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of Drink
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded Drink or HTTP-error
|
2021-04-14 20:42:57 +00:00
|
|
|
"""
|
2021-03-17 20:36:51 +00:00
|
|
|
data = request.get_json()
|
2021-04-01 20:45:28 +00:00
|
|
|
logger.debug(f"update drink {data}")
|
2021-03-17 20:36:51 +00:00
|
|
|
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-04-14 20:42:57 +00:00
|
|
|
@login_required(permission=permissions.DELETE)
|
|
|
|
def delete_drink(identifier, current_session):
|
|
|
|
"""Delete Drink
|
|
|
|
|
|
|
|
Route: ``/pricelist/drinks/<identifier>`` | Method: ``DELETE``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of Drink
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
HTTP-NoContent or HTTP-error
|
|
|
|
"""
|
2021-03-17 20:36:51 +00:00
|
|
|
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-04-14 20:42:57 +00:00
|
|
|
@login_required(permission=permissions.DELETE_PRICE)
|
|
|
|
def delete_price(identifier, current_session):
|
|
|
|
"""Delete Price
|
|
|
|
|
|
|
|
Route: ``/pricelist/prices/<identifier>`` | Methods: ``DELETE``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identiefer of Price
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
HTTP-NoContent or HTTP-error
|
|
|
|
"""
|
2021-03-15 18:56:51 +00:00
|
|
|
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-04-14 20:42:57 +00:00
|
|
|
@login_required(permission=permissions.DELETE_VOLUME)
|
|
|
|
def delete_volume(identifier, current_session):
|
|
|
|
"""Delete DrinkPriceVolume
|
|
|
|
|
|
|
|
Route: ``/pricelist/volumes/<identifier>`` | Method: ``DELETE``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of DrinkPriceVolume
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
HTTP-NoContent or HTTP-error
|
|
|
|
"""
|
2021-03-15 22:53:21 +00:00
|
|
|
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-04-14 20:42:57 +00:00
|
|
|
@login_required()
|
|
|
|
def get_extra_ingredients(current_session):
|
|
|
|
"""Get ExtraIngredients
|
|
|
|
|
|
|
|
Route: ``/pricelist/ingredients/extraIngredients`` | Method: ``GET``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded list of ExtraIngredients or HTTP-error
|
|
|
|
"""
|
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-04-14 20:42:57 +00:00
|
|
|
@login_required(permission=permissions.DELETE_INGREDIENTS_DRINK)
|
|
|
|
def delete_ingredient(identifier, current_session):
|
|
|
|
"""Delete Ingredient
|
|
|
|
|
|
|
|
Route: ``/pricelist/ingredients/<identifier>`` | Method: ``DELETE``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of Ingredient
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
HTTP-NoContent or HTTP-error
|
|
|
|
"""
|
2021-03-16 22:27:54 +00:00
|
|
|
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-04-14 20:42:57 +00:00
|
|
|
@login_required(permission=permissions.EDIT_INGREDIENTS)
|
|
|
|
def set_extra_ingredient(current_session):
|
|
|
|
"""Create ExtraIngredient
|
|
|
|
|
|
|
|
Route: ``/pricelist/ingredients/extraIngredients`` | Method: ``POST``
|
|
|
|
|
|
|
|
POST-data: ``{ name: string, price: float }``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded ExtraIngredient or HTTP-error
|
|
|
|
"""
|
2021-03-17 21:49:54 +00:00
|
|
|
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-04-14 20:42:57 +00:00
|
|
|
@login_required(permission=permissions.EDIT_INGREDIENTS)
|
|
|
|
def update_extra_ingredient(identifier, current_session):
|
|
|
|
"""Modify ExtraIngredient
|
|
|
|
|
|
|
|
Route: ``/pricelist/ingredients/extraIngredients`` | Method: ``PUT``
|
|
|
|
|
|
|
|
POST-data: ``{ name: string, price: float }``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of ExtraIngredient
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded ExtraIngredient or HTTP-error
|
|
|
|
"""
|
2021-03-17 21:49:54 +00:00
|
|
|
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-04-14 20:42:57 +00:00
|
|
|
@login_required(permission=permissions.DELETE_INGREDIENTS)
|
|
|
|
def delete_extra_ingredient(identifier, current_session):
|
|
|
|
"""Delete ExtraIngredient
|
|
|
|
|
|
|
|
Route: ``/pricelist/ingredients/extraIngredients`` | Method: ``DELETE``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of ExtraIngredient
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
HTTP-NoContent or HTTP-error
|
|
|
|
"""
|
2021-03-17 21:49:54 +00:00
|
|
|
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-04-14 20:42:57 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/settings/min_prices", methods=["GET"])
|
|
|
|
@login_required()
|
|
|
|
def get_pricelist_settings_min_prices(current_session):
|
|
|
|
"""Get MinPrices
|
|
|
|
|
|
|
|
Route: ``/pricelist/settings/min_prices`` | Method: ``GET``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JSON encoded list of MinPrices
|
|
|
|
"""
|
|
|
|
# TODO: Handle if no prices are set!
|
|
|
|
try:
|
|
|
|
min_prices = PriceListPlugin.plugin.get_setting("min_prices")
|
|
|
|
except KeyError:
|
|
|
|
min_prices = []
|
|
|
|
return jsonify(min_prices)
|
|
|
|
|
2021-04-14 20:43:28 +00:00
|
|
|
|
2021-04-14 20:42:57 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/settings/min_prices", methods=["POST"])
|
|
|
|
@login_required(permission=permissions.EDIT_MIN_PRICES)
|
|
|
|
def post_pricelist_settings_min_prices(current_session):
|
|
|
|
"""Create MinPrices
|
|
|
|
|
|
|
|
Route: ``/pricelist/settings/min_prices`` | Method: ``POST``
|
|
|
|
|
|
|
|
POST-data: ``list[int]``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
current_session: Session sent with Authorization Header
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
HTTP-NoContent or HTTP-error
|
|
|
|
"""
|
|
|
|
data = request.get_json()
|
|
|
|
if not isinstance(data, list) or not all(isinstance(n, int) for n in data):
|
|
|
|
raise BadRequest
|
|
|
|
data.sort()
|
|
|
|
PriceListPlugin.plugin.set_setting("min_prices", data)
|
|
|
|
return no_content()
|
|
|
|
|
2021-04-01 20:45:28 +00:00
|
|
|
|
2021-04-15 20:05:34 +00:00
|
|
|
|
|
|
|
@PriceListPlugin.blueprint.route("/users/<userid>/pricecalc_columns", methods=["GET", "PUT"])
|
|
|
|
@login_required()
|
|
|
|
def get_columns(userid, current_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
|
|
|
|
"""
|
|
|
|
if userid != current_session.user_.userid:
|
|
|
|
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-29 18:26:15 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/drinks/<int:identifier>/picture", methods=["POST", "GET", "DELETE"])
|
2021-04-14 20:42:57 +00:00
|
|
|
@login_required(permission=permissions.EDIT)
|
|
|
|
def set_picture(identifier, current_session):
|
|
|
|
"""Get, Create, Delete Drink Picture
|
2021-03-25 19:32:21 +00:00
|
|
|
|
2021-04-14 20:42:57 +00:00
|
|
|
Route: ``/pricelist/<identifier>/picture`` | Method: ``GET,POST,DELETE``
|
|
|
|
|
|
|
|
POST-data: (if remaining) ``Form-Data: mime: 'image/*'``
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of Drink
|
|
|
|
current_session: Session sent with Authorization
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Picture or HTTP-error
|
|
|
|
"""
|
2021-03-25 19:32:21 +00:00
|
|
|
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-04-01 20:45:28 +00:00
|
|
|
|
2021-03-29 18:26:15 +00:00
|
|
|
@PriceListPlugin.blueprint.route("/picture/<identifier>", methods=["GET"])
|
2021-03-28 10:47:02 +00:00
|
|
|
def _get_picture(identifier):
|
2021-04-14 20:42:57 +00:00
|
|
|
"""Get Picture
|
|
|
|
|
|
|
|
Args:
|
|
|
|
identifier: Identifier of Picture
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Picture or HTTP-error
|
|
|
|
"""
|
2021-03-28 10:47:02 +00:00
|
|
|
if request.method == "GET":
|
|
|
|
size = request.args.get("size")
|
|
|
|
response = pricelist_controller.get_drink_picture(identifier, size)
|
2021-04-01 20:45:28 +00:00
|
|
|
return response.make_conditional(request)
|