-
Notifications
You must be signed in to change notification settings - Fork 69
/
database.py
executable file
·179 lines (151 loc) · 6.8 KB
/
database.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#!/usr/bin/python3
import MySQLdb, datetime, http.client, json, os
import io
import gzip
def gunzip_bytes(bytes_obj):
in_ = io.BytesIO()
in_.write(bytes_obj)
in_.seek(0)
with gzip.GzipFile(fileobj=in_, mode='rb') as fo:
gunzipped_bytes_obj = fo.read()
return gunzipped_bytes_obj.decode()
class mysql_database:
def __init__(self):
credentials_file = os.path.join(os.path.dirname(__file__), "credentials.mysql")
f = open(credentials_file, "r")
credentials = json.load(f)
f.close()
for key, value in credentials.items(): #remove whitespace
credentials[key] = value.strip()
self.connection = MySQLdb.connect(user=credentials["USERNAME"], password=credentials["PASSWORD"], database=credentials["DATABASE"])
self.cursor = self.connection.cursor()
def execute(self, query, params = []):
try:
self.cursor.execute(query, params)
self.connection.commit()
except:
self.connection.rollback()
raise
def query(self, query):
cursor = self.connection.cursor(MySQLdb.cursors.DictCursor)
cursor.execute(query)
return cursor.fetchall()
def __del__(self):
self.connection.close()
class oracle_apex_database:
def __init__(self, path, host = "apex.oracle.com"):
self.host = host
self.path = path
#self.conn = httplib.HTTPSConnection(self.host)
self.conn = http.client.HTTPSConnection(self.host)
self.credentials = None
credentials_file = os.path.join(os.path.dirname(__file__), "credentials.oracle")
if os.path.isfile(credentials_file):
f = open(credentials_file, "r")
self.credentials = json.load(f)
f.close()
for key, value in self.credentials.items(): #remove whitespace
self.credentials[key] = value.strip()
else:
print("Credentials file not found")
self.default_data = { "Content-type": "text/plain", "Accept": "text/plain" }
def upload(self, id, ambient_temperature, ground_temperature, air_quality, air_pressure, humidity, wind_direction, wind_speed, wind_gust_speed, rainfall, created):
#keys must follow the names expected by the Orcale Apex REST service
oracle_data = {
"LOCAL_ID": str(id),
"AMB_TEMP": str(ambient_temperature),
"GND_TEMP": str(ground_temperature),
"AIR_QUALITY": str(air_quality),
"AIR_PRESSURE": str(air_pressure),
"HUMIDITY": str(humidity),
"WIND_DIRECTION": str(wind_direction),
"WIND_SPEED": str(wind_speed),
"WIND_GUST_SPEED": str(wind_gust_speed),
"RAINFALL": str(rainfall),
"READING_TIMESTAMP": str(created) }
for key in oracle_data.keys():
if oracle_data[key] == str(None):
del oracle_data[key]
return self.https_post(oracle_data)
def https_post(self, data, attempts = 3):
attempt = 0
headers = self.default_data.copy()
headers.update(self.credentials)
headers.update(data)
#headers = dict(self.default_data.items() + self.credentials.items() + data.items())
success = False
response_data = None
while not success and attempt < attempts:
try:
self.conn.request("POST", self.path, None, headers)
response = self.conn.getresponse()
response_data = response.read()
print("Response status: %s, Response reason: %s, Response data: %s" % (response.status, response.reason, response_data))
success = response.status == 200 or response.status == 201
except Exception as e:
print("Unexpected error", e)
finally:
attempt += 1
return response_data if success else None
def __del__(self):
self.conn.close()
class weather_database:
def __init__(self):
self.db = mysql_database()
self.insert_template = "INSERT INTO WEATHER_MEASUREMENT (AMBIENT_TEMPERATURE, GROUND_TEMPERATURE, AIR_QUALITY, AIR_PRESSURE, HUMIDITY, WIND_DIRECTION, WIND_SPEED, WIND_GUST_SPEED, RAINFALL, CREATED) VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s);"
self.update_template = "UPDATE WEATHER_MEASUREMENT SET REMOTE_ID=%s WHERE ID=%s;"
self.upload_select_template = "SELECT * FROM WEATHER_MEASUREMENT WHERE REMOTE_ID IS NULL;"
def is_number(self, s):
try:
float(s)
return True
except ValueError:
return False
def is_none(self, val):
return val if val != None else "NULL"
def insert(self, ambient_temperature, ground_temperature, air_quality, air_pressure, humidity, wind_direction, wind_speed, wind_gust_speed, rainfall, created = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")):
params = ( ambient_temperature,
ground_temperature,
air_quality,
air_pressure,
humidity,
wind_direction,
wind_speed,
wind_gust_speed,
rainfall,
created )
print(self.insert_template % params)
self.db.execute(self.insert_template, params)
def upload(self):
results = self.db.query(self.upload_select_template)
rows_count = len(results)
if rows_count > 0:
print("%d rows to send..." % rows_count)
odb = oracle_apex_database(path = "/pls/apex/raspberrypi/weatherstation/submitmeasurement")
if odb.credentials == None:
return #cannot upload
for row in results:
response_data = odb.upload(
row["ID"],
row["AMBIENT_TEMPERATURE"],
row["GROUND_TEMPERATURE"],
row["AIR_QUALITY"],
row["AIR_PRESSURE"],
row["HUMIDITY"],
row["WIND_DIRECTION"],
row["WIND_SPEED"],
row["WIND_GUST_SPEED"],
row["RAINFALL"],
row["CREATED"].strftime("%Y-%m-%dT%H:%M:%S"))
if response_data != None and response_data != "-1":
json_dict = json.loads(gunzip_bytes(response_data)) # 2019 post-apex upgrade change
#json_dict = json.loads(response_data.decode()) # Python3 change
oracle_id = json_dict["ORCL_RECORD_ID"]
if self.is_number(oracle_id):
local_id = str(row["ID"])
self.db.execute(self.update_template, (oracle_id, local_id))
print("ID: %s updated with REMOTE_ID = %s" % (local_id, oracle_id))
else:
print("Bad response from Oracle")
else:
print("Nothing to upload")