]> OzVa Git service - shopping-channel/commitdiff
Added regeneration function
authorMax Value <greenwoodw50@gmail.com>
Tue, 18 Mar 2025 03:38:10 +0000 (03:38 +0000)
committerMax Value <greenwoodw50@gmail.com>
Tue, 18 Mar 2025 03:38:10 +0000 (03:38 +0000)
teleshopping.py

index bc1cd41327c761715680e557d7d88e2e5b273f39..57470007f6ee963f5c9effa05a2b13547fe927d4 100755 (executable)
@@ -189,10 +189,29 @@ def api_clock():
        else:
                return "", 404
 
+@app.route("/api/regenerate")
+@auth.login_required
+def check_generate():
+       # sanity check the db
+       with open(path.join(app.root_path, "schema"), "r", encoding="utf-8") as f:
+       schema, load = f.read().split("\n\n")
+       with sqlite3.connect(path.join(app.root_path, "data.db")) as connection:
+               cursor = connection.cursor()
+               try:
+                       cursor.execute(load)
+               except sqlite3.IntegrityError:
+                       print("Database is setup correctly")
+                       pass
+               except sqlite3.OperationalError:
+                       print("Table missing or corrupt...")
+                       try: cursor.execute("DROP TABLE state;") # catch if there is no table "state"
+                       except: pass
+                       cursor.execute(schema)
+                       cursor.execute(load)
+               connection.commit()
 
-
-
-def generate_docs():
+       # generate docs
+       print("Generating static documentation...")
        latex_enviroment = Environment(
                loader=FileSystemLoader(path.join(app.root_path, "templates")),
                block_start_string = "|%",
@@ -217,26 +236,7 @@ def generate_docs():
 
                print(f" - Generated {document}")
 
-# sanity check on the db
-with open(path.join(app.root_path, "schema"), "r", encoding="utf-8") as f:
-       schema, load = f.read().split("\n\n")
-       with sqlite3.connect(path.join(app.root_path, "data.db")) as connection:
-               cursor = connection.cursor()
-               try:
-                       cursor.execute(load)
-               except sqlite3.IntegrityError:
-                       print("Database is setup correctly")
-                       pass
-               except sqlite3.OperationalError:
-                       print("Table missing or corrupt...")
-                       try: cursor.execute("DROP TABLE state;") # catch if there is no table "state"
-                       except: pass
-                       cursor.execute(schema)
-                       cursor.execute(load)
-               connection.commit()
-
-print("Generating static documentation...")
-generate_docs()
+       return "", 200
 
 if __name__ == "__main__":
        app.run(host='192.168.0.144', port=8000, debug=True)