influx_stats/influx_frontend.py

80 lines
1.9 KiB
Python
Raw Normal View History

2017-01-28 07:09:09 +00:00
from flask import Flask, request, render_template, redirect, url_for
2017-01-29 05:37:38 +00:00
from time import strftime
import datetime
2016-12-20 06:50:26 +00:00
2016-12-06 12:46:40 +00:00
app = Flask(__name__)
from influxdb import InfluxDBClient
def db_main(host='localhost', port=8086):
user = 'root'
password = 'root'
dbname = 'gas'
2016-12-20 06:50:26 +00:00
@app.route('/success')
def success():
return "Form success!"
@app.route('/', methods=['GET', 'POST'])
2016-12-20 06:50:26 +00:00
def main_page():
return render_template('index.html')
2017-01-28 07:09:09 +00:00
@app.route('/add_time', methods=['POST', 'GET'])
def add_time():
2017-01-29 05:37:38 +00:00
today = strftime("%Y-%m-%d")
now = strftime("%H:%M:%S")
# database = request.form['db']
# table = request.form['table']
date = request.form['date']
2017-01-29 05:37:38 +00:00
if date == '':
date = today
time = request.form['time']
2017-01-29 05:37:38 +00:00
if time == '':
time = now
odometer = request.form['odometer']
oilhealth= request.form['oilhealth']
fuel = request.form['fuel']
if fuel != '':
fuel = float(fuel)
fuelcost = request.form['fuelcost']
if fuelcost != '':
fuelcost = float(fuelcost)
winter = request.form['winter']
json_body = [
{
"time": date + "T" + time + "Z",
"measurement": "odyssey",
"fields": {
2017-01-28 07:09:09 +00:00
"odometer": float(odometer),
"oilhealth": oilhealth,
"fuel": fuel,
"fuelcost": fuelcost,
2017-01-28 07:09:09 +00:00
"winter": bool(winter)
}
}
]
client = InfluxDBClient('localhost', 8086, 'root', 'root', 'gas')
print ("Submitting data to DB: {0}".format(json_body))
client.write_points(json_body)
2017-01-28 07:09:09 +00:00
return redirect(url_for('main_page'))
@app.route('/admin')
def admin_index():
return 'admin'
@app.route('/login')
def login():
pass
@app.route('/logout')
def logout():
pass
if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0')