aboutsummaryrefslogtreecommitdiffstats
path: root/PI.PI.old.py
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2022-02-18 07:17:29 -0600
committerMatt Strapp <matt@mattstrapp.net>2022-02-18 07:17:29 -0600
commit11b12e1e32a063671b2f9ea66273e426c67113a7 (patch)
tree9c6a43bae80613d7eb5267869d44a936b9c0aaf2 /PI.PI.old.py
parentReplace SSH with HTTPS (diff)
downloadee4511w-11b12e1e32a063671b2f9ea66273e426c67113a7.tar
ee4511w-11b12e1e32a063671b2f9ea66273e426c67113a7.tar.gz
ee4511w-11b12e1e32a063671b2f9ea66273e426c67113a7.tar.bz2
ee4511w-11b12e1e32a063671b2f9ea66273e426c67113a7.tar.lz
ee4511w-11b12e1e32a063671b2f9ea66273e426c67113a7.tar.xz
ee4511w-11b12e1e32a063671b2f9ea66273e426c67113a7.tar.zst
ee4511w-11b12e1e32a063671b2f9ea66273e426c67113a7.zip
Get rid of old webapp
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'PI.PI.old.py')
-rw-r--r--PI.PI.old.py64
1 files changed, 0 insertions, 64 deletions
diff --git a/PI.PI.old.py b/PI.PI.old.py
deleted file mode 100644
index 52e16ab..0000000
--- a/PI.PI.old.py
+++ /dev/null
@@ -1,64 +0,0 @@
-#handle a POST request
-from flask import Flask, render_template, request, url_for, jsonify
-import subprocess
-import os
-import RPi.GPIO as GPIO
-app = Flask(__name__)
-
-UPLOAD_DESTINATION = "Uploads/ee4951W_pendulum_web/app/app/FileProcessing/Uploads"
-SYSTEM_DESTINATION = "System/"
-RESULTS_DESTINATION = "Uploads/ee4951W_pendulum_web/app/app/FileProcessing/Results"
-
-INITIALIZE_SYSTEM = "initialize_system.py"
-
-@app.route('/')
-def home():
- return "ANDI'S PIE"
-
-@app.route('/tests/endpoint', methods=['POST'])
-def my_test_endpoint():
- # Receive post
- input_json = request.get_json(force=True)
-
- # Put file content into a file caled upload.py
- filename=input_json['filename'].encode("ascii")
- file_content=input_json['file_content'].encode("ascii")
- filename=input_json['filename']
- file_content=input_json['file_content']
- upload = open(UPLOAD_DESTINATION + filename, "w+")
- upload.write(file_content)
- upload.close()
-
- # Run python script
- process = subprocess.Popen(["python3", UPLOAD_DESTINATION + filename])
- try:
- process.wait()
- print("Program exited normally!\n")
- except:
- print("Exception occurred running program!\n")
- process.terminate()
- finally:
- GPIO.cleanup()
-
- # Get results file
- results_filename = filename.split(".")[0]
- results_filename = results_filename + "_results.csv"
- with open(RESULTS_DESTINATION + results_filename, 'r') as results:
- results_content = results.read()
- results.close()
-
- # Remove test file and results file now that were done with them
- os.remove(UPLOAD_DESTINATION + filename)
- os.remove(RESULTS_DESTINATION + results_filename)
-
- # Return results file content
- dictToReturn = {'results_filename':results_filename, 'results_content':results_content}
- return jsonify(dictToReturn)
-
-# This will run on system bootup.
-if __name__ == '__main__':
- os.chdir('/home/pi/pendulum')
- # Initialize the system before accepting any files.
- subprocess.call(["python3", SYSTEM_DESTINATION + INITIALIZE_SYSTEM])
- # Run the web client to start receiving files.
- app.run(host="192.168.1.10", port=8000)