-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
db.py
201 lines (153 loc) · 10.3 KB
/
db.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
import MySQLdb
import MySQLdb.cursors
import config.config as config
# db = MySQLdb.connect("localhost","uptime","password123!","uptime")
db = MySQLdb.connect(config.DATABASE_CONFIG['host'], config.DATABASE_CONFIG['dbuser'], config.DATABASE_CONFIG['dbpass'],
config.DATABASE_CONFIG['dbname'],
cursorclass=MySQLdb.cursors.DictCursor)
cursor = db.cursor()
###########################################################################################
# #
# Begin Activity Queries #
# #
###########################################################################################
# Add all activities to `activity` table for historical purposes and reporting
def addActivity(statustype, sites):
cursor.execute("""INSERT INTO activity (activityType, sitesAffected) VALUES (%s, %s)""", (statustype, sites))
db.commit()
# Get current status of all sites
def currentStatus(site, status):
cursor.execute("""INSERT INTO currentStatus (site, status) VALUES (%s,%s)
ON DUPLICATE KEY UPDATE status = %s""", (site, status, status))
# Add site into sites table - newer than currentStatus
def addSite(name, url, status, active, email, visible):
cursor.execute("""INSERT INTO sites (siteName, url, status, active, email, visible)
VALUES (%s, %s, %s, %s, %s, %s) ON DUPLICATE KEY UPDATE siteName = %s, url = %s, status = %s,
active = %s, email = %s, visible = %s""",
(name, url, status, active, email, visible, name, url, status, active, email, visible))
db.commit()
cursor.execute("""SELECT * FROM sites where url = %s""", [url])
data = cursor.fetchone()
return data
# Update sites and return site after edit
def updateSite(id, name, url, active, email, visible):
cursor.execute("""UPDATE sites SET siteName = %s, url = %s,
active = %s, email = %s, visible = %s WHERE id = %s""",
(name, url, active, email, visible, id))
db.commit()
cursor.execute("""SELECT * FROM sites where id = %s""", [id])
data = cursor.fetchone()
return data
# Update status of site if it's down
def updateSiteStatus(id, status):
cursor.execute("""UPDATE sites SET status = %s WHERE id = %s""",
(status, id))
db.commit()
###########################################################################################
# #
# End Activity Queries #
# #
###########################################################################################
###########################################################################################
# #
# Begin Outage Queries #
# #
###########################################################################################
# Insert sites into `outages` as an array
def insertSites(sites, numSites):
cursor.execute("""INSERT INTO outages (sitesAffected, numberOfSites) values (%s,%s)""", (sites, numSites))
db.commit()
# Insert sites that are offline to `downtimeCounts` - if they already exist, increase the downCount by 1
# Should trigger an email after 3
def insertDownSite(site):
cursor.execute("""INSERT INTO downtimeCounts (site, downCount) VALUES(%s, 1)
ON DUPLICATE KEY UPDATE downCount=downCount+1""", [site])
db.commit()
# first checks to see if site exists in the `downtimeCounts` table -
# only triggered if site is found in the uptime array in uptime.py
# if entry exists, set the downCount to 0
# table should be truncated overnight (need to implement archive table)
def checkSite(site):
data = cursor.execute("""SELECT 1 FROM downtimeCounts where site = %s""", [site])
# print(data)
if data >= 1:
cursor.execute("""UPDATE downtimeCounts set downCount = 0 where site = %s""", [site])
# print(site + " is back up!")
db.commit()
###########################################################################################
# #
# End Outage Queries #
# #
###########################################################################################
###########################################################################################
# #
# Begin LED Queries #
# #
###########################################################################################
# LED Table
def changeLedStatus(color, status):
cursor.execute("""UPDATE ledStatus set status = %s where pin = %s""", (status, color))
db.commit()
# Override led
def overrideLedActive(color, active):
cursor.execute("""UPDATE ledStatus set active = %s where color = %s""", (active, color))
db.commit()
###########################################################################################
# #
# End LED Queries #
# #
###########################################################################################
###########################################################################################
# #
# Begin Cron Queries #
# #
###########################################################################################
# Add new cronjob to database
def addCron(comment, cronName, cronVal, cronScript, enabled):
cursor.execute("""INSERT INTO cronSettings (comment, cronName, cronVal, cronScript, enabled)
VALUES (%s, %s, %s, %s, %s) ON DUPLICATE KEY UPDATE cronName = %s, cronVal = %s,
enabled = %s""", (comment, cronName, cronVal, cronScript, enabled, cronName, cronVal, enabled))
db.commit()
# Find and update cron job in database
def updateCron(comment, cronName, cronVal, enabled):
cursor.execute("""UPDATE cronSettings set cronName = %s, cronVal = %s, enabled = %s WHERE
comment = %s""", (cronName, cronVal, enabled, comment))
db.commit()
cursor.execute("""SELECT * FROM cronSettings where comment = %s""", [comment])
data = cursor.fetchone()
return data
###########################################################################################
# #
# End Cron Queries #
# #
###########################################################################################
###########################################################################################
# #
# Begin Notifications Queries #
# #
###########################################################################################
def addNotification(content, status):
cursor.execute("""INSERT INTO notifications (content, status) values (%s,%s)""", (content, status))
db.commit()
###########################################################################################
# #
# End Notifications Queries #
# #
###########################################################################################
###########################################################################################
# #
# Begin archiving queries #
# #
###########################################################################################
# Archive records from downtime counts when records are more than 3 days old
def archiveDowntimeCounts():
cursor.execute("""INSERT INTO archive_downtimeCounts (created_at, site, downCount)
(SELECT created_at,site,downCount FROM downtimeCounts where created_at < (CURDATE() - 3))""")
db.commit()
cursor.execute("""DELETE FROM downtimeCounts where created_at < (CURDATE() - 3))""")
db.commit()
###########################################################################################
# #
# End archiving queries #
# #
###########################################################################################