Close #11 : Make the signature optionnal, lint file

This commit is contained in:
n07070
2026-05-17 12:56:56 +02:00
parent 0f9135707a
commit 6888a69ee7

View File

@@ -82,6 +82,7 @@ except FileExistsError:
app.logger.debug("Directory %s already exists.", UPLOAD_FOLDER)
except PermissionError:
app.logger.error("Permission denied: Unable to create %s", UPLOAD_FOLDER)
exit(77)
# Output the config file
if os.getenv("LIPY_DEBUG") is True:
@@ -165,14 +166,20 @@ def api_print_sms():
app.logger.debug("Printing an sms")
try:
txt = request.form["txt"]
sign = request.form["signature"]
except werkzeug.exceptions.BadRequestKeyError as e:
app.logger.error(
"Whoops, no forms submitted or missing signature : %s ", str(e)
)
app.logger.error("Whoops, we are missing the txt input field. : %s ", str(e))
flash("Whoops, no forms submitted or missing signature : %s", str(e))
return redirect(url_for("index"))
try:
# comment: We try to get a signature
sign = request.form["signature"]
except werkzeug.exceptions.BadRequestKeyError as e:
app.logger.warning(
"No signature found for this print, using default signature.", str(e)
)
sign = configuration_file["defaults"]["signature"]
web.print_sms(txt, sign)
return redirect(url_for("index"))
@@ -184,11 +191,13 @@ def api_print_image():
app.logger.debug("Printing an image")
try:
# comment: We try to get a signature
sign = request.form["signature"]
except Exception as e:
app.logger.error("Whoops, no forms submitted or missing signature : %s", str(e))
flash("Whoops, no forms submitted or missing signature : %s ", str(e))
return redirect(url_for("index"))
except werkzeug.exceptions.BadRequestKeyError as e:
app.logger.warning(
"No signature found for this print, using default signature.", str(e)
)
sign = configuration_file["defaults"]["signature"]
if request.method == "POST":
# check if the post request has the file part