218 lines
8.3 KiB
Python
218 lines
8.3 KiB
Python
import requests
|
|
import time
|
|
|
|
from db_connect import database_connect
|
|
|
|
##########################* DEVICES #######################
|
|
|
|
def load_data(data):
|
|
mydb = database_connect()
|
|
if mydb.is_connected():
|
|
mycursor = mydb.cursor()
|
|
|
|
insert_query = """
|
|
INSERT INTO goodgarden.devices (serial_number, name, label, last_seen, last_battery_voltage)
|
|
VALUES (%s, %s, %s, %s, %s )
|
|
"""
|
|
for record in data['results']:
|
|
serial_number = record.get('serial_number', '')
|
|
name = record.get('name', '')
|
|
label = record.get('label', '')
|
|
last_seen = record.get('last_seen', '')
|
|
last_battery_voltage = record.get('last_battery_voltage', '')
|
|
|
|
print(f"Inserting data: serial_number={serial_number}, name={name}, label={label}, last_seen={last_seen}, last_battery_voltage={last_battery_voltage}")
|
|
|
|
mycursor.execute(insert_query, (serial_number, name, label, last_seen, last_battery_voltage))
|
|
|
|
mydb.commit()
|
|
|
|
mycursor.close()
|
|
mydb.close()
|
|
|
|
print("Data inserted into the database.")
|
|
|
|
############################### EINDE ########################
|
|
# #
|
|
# #
|
|
# #
|
|
# #
|
|
##########################* PAR_EVENTS #######################
|
|
|
|
def load_data(data):
|
|
mydb = database_connect()
|
|
if mydb.is_connected():
|
|
mycursor = mydb.cursor()
|
|
|
|
# Here you need to adjust the correct column names and data formats based on the API response
|
|
insert_query = """
|
|
INSERT INTO goodgarden.par_events (timestamp, gateway_receive_time, device, value)
|
|
VALUES (%s, %s, %s, %s)
|
|
"""
|
|
for record in data['results']:
|
|
timestamp = record.get('timestamp', '')
|
|
gateway_receive_time = record.get('gateway_receive_time', '')
|
|
device = record.get('device', '')
|
|
value = record.get('value', '')
|
|
|
|
print(f"Inserting data: timestamp={timestamp}, gateway_receive_time={gateway_receive_time}, device={device}, value={value}")
|
|
|
|
# Execute the query
|
|
mycursor.execute(insert_query, (timestamp, gateway_receive_time, device, value))
|
|
|
|
# Commit the changes
|
|
mydb.commit()
|
|
|
|
# Close cursor and connection
|
|
mycursor.close()
|
|
mydb.close()
|
|
|
|
print("Data inserted into the database.")
|
|
|
|
############################### EINDE ########################
|
|
# #
|
|
# #
|
|
# #
|
|
# #
|
|
##########################* RELATIVE_HUMIDITY_EVENTS #######################
|
|
|
|
def load_data(data):
|
|
mydb = database_connect()
|
|
if mydb.is_connected():
|
|
mycursor = mydb.cursor()
|
|
|
|
# Here you need to adjust the correct column names and data formats based on the API response
|
|
insert_query = """
|
|
INSERT INTO goodgarden.relative_humidity_events (timestamp, gateway_receive_time, device, value)
|
|
VALUES (%s, %s, %s, %s)
|
|
"""
|
|
for record in data['results']:
|
|
timestamp = record.get('timestamp', '')
|
|
gateway_receive_time = record.get('gateway_receive_time', '')
|
|
device = record.get('device', '')
|
|
value = record.get('value', '')
|
|
|
|
print(f"Inserting data: timestamp={timestamp}, gateway_receive_time={gateway_receive_time}, device={device}, value={value}")
|
|
|
|
# Execute the query
|
|
mycursor.execute(insert_query, (timestamp, gateway_receive_time, device, value))
|
|
|
|
# Commit the changes
|
|
mydb.commit()
|
|
|
|
# Close cursor and connection
|
|
mycursor.close()
|
|
mydb.close()
|
|
|
|
print("Data inserted into the database.")
|
|
|
|
############################### EINDE ########################
|
|
# #
|
|
# #
|
|
# #
|
|
# #
|
|
##########################* SOIL_ELECTRIC_CONDUCTIVITY_EVENTS #######################
|
|
|
|
def load_data(data):
|
|
mydb = database_connect()
|
|
if mydb.is_connected():
|
|
mycursor = mydb.cursor()
|
|
|
|
# Here you need to adjust the correct column names and data formats based on the API response
|
|
insert_query = """
|
|
INSERT INTO goodgarden.soil_electric_conductivity_events (timestamp, gateway_receive_time, device, value)
|
|
VALUES (%s, %s, %s, %s)
|
|
"""
|
|
for record in data['results']:
|
|
timestamp = record.get('timestamp', '')
|
|
gateway_receive_time = record.get('gateway_receive_time', '')
|
|
device = record.get('device', '')
|
|
value = record.get('value', '')
|
|
|
|
print(f"Inserting data: timestamp={timestamp}, gateway_receive_time={gateway_receive_time}, device={device}, value={value}")
|
|
|
|
# Execute the query
|
|
mycursor.execute(insert_query, (timestamp, gateway_receive_time, device, value))
|
|
|
|
# Commit the changes
|
|
mydb.commit()
|
|
|
|
# Close cursor and connection
|
|
mycursor.close()
|
|
mydb.close()
|
|
|
|
print("Data inserted into the database.")
|
|
|
|
############################### EINDE ########################
|
|
# #
|
|
# #
|
|
# #
|
|
# #
|
|
##########################* SOIL_TEMPERATURE_EVENTS #######################
|
|
|
|
def load_data(data):
|
|
mydb = database_connect()
|
|
if mydb.is_connected():
|
|
mycursor = mydb.cursor()
|
|
|
|
# Here you need to adjust the correct column names and data formats based on the API response
|
|
insert_query = """
|
|
INSERT INTO goodgarden.soil_temperature_events (timestamp, gateway_receive_time, device, value)
|
|
VALUES (%s, %s, %s, %s)
|
|
"""
|
|
for record in data['results']:
|
|
timestamp = record.get('timestamp', '')
|
|
gateway_receive_time = record.get('gateway_receive_time', '')
|
|
device = record.get('device', '')
|
|
value = record.get('value', '')
|
|
|
|
print(f"Inserting data: timestamp={timestamp}, gateway_receive_time={gateway_receive_time}, device={device}, value={value}")
|
|
|
|
# Execute the query
|
|
mycursor.execute(insert_query, (timestamp, gateway_receive_time, device, value))
|
|
|
|
# Commit the changes
|
|
mydb.commit()
|
|
|
|
# Close cursor and connection
|
|
mycursor.close()
|
|
mydb.close()
|
|
|
|
print("Data inserted into the database.")
|
|
|
|
############################### EINDE ########################
|
|
# #
|
|
# #
|
|
# #
|
|
# #
|
|
##########################* SOIL_TEMPERATURE_EVENTS #######################
|
|
|
|
def load_data(data):
|
|
mydb = database_connect()
|
|
if mydb.is_connected():
|
|
mycursor = mydb.cursor()
|
|
|
|
# Here you need to adjust the correct column names and data formats based on the API response
|
|
insert_query = """
|
|
INSERT INTO goodgarden.soil_temperature_events (timestamp, gateway_receive_time, device, value)
|
|
VALUES (%s, %s, %s, %s)
|
|
"""
|
|
for record in data['results']:
|
|
timestamp = record.get('timestamp', '')
|
|
gateway_receive_time = record.get('gateway_receive_time', '')
|
|
device = record.get('device', '')
|
|
value = record.get('value', '')
|
|
|
|
print(f"Inserting data: timestamp={timestamp}, gateway_receive_time={gateway_receive_time}, device={device}, value={value}")
|
|
|
|
# Execute the query
|
|
mycursor.execute(insert_query, (timestamp, gateway_receive_time, device, value))
|
|
|
|
# Commit the changes
|
|
mydb.commit()
|
|
|
|
# Close cursor and connection
|
|
mycursor.close()
|
|
mydb.close()
|
|
|
|
print("Data inserted into the database.") |