forked from jgyates/genmon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
genemail2sms.py
200 lines (161 loc) · 7.23 KB
/
genemail2sms.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
#!/usr/bin/env python
#-------------------------------------------------------------------------------
# FILE: genemail2sms.py
# PURPOSE: genemail2sms.py support program to allow SMS (txt messages)
# to be sent when the generator status changes via email to sms carrier support
#
# AUTHOR: Jason G Yates
# DATE: 05-Apr-2016
#
# MODIFICATIONS:
#-------------------------------------------------------------------------------
import datetime, time, sys, signal, os, threading, socket
import atexit, getopt
try:
from genmonlib.myconfig import MyConfig
from genmonlib.mylog import SetupLogger
from genmonlib.mynotify import GenNotify
from genmonlib.mymail import MyMail
from genmonlib.mysupport import MySupport
from genmonlib.program_defaults import ProgramDefaults
except Exception as e1:
print("\n\nThis program requires the modules located in the genmonlib directory in the github repository.\n")
print("Please see the project documentation at https://github.com/jgyates/genmon.\n")
print("Error: " + str(e1))
sys.exit(2)
#---------- Signal Handler ----------------------------------------------------
def signal_handler(signal, frame):
GenNotify.Close()
sys.exit(0)
#---------- OnRun -------------------------------------------------------------
def OnRun(Active):
if Active:
console.info("Generator Running")
SendNotice("Generator Running")
else:
console.info("Generator Running End")
#---------- OnRunManual -------------------------------------------------------
def OnRunManual(Active):
if Active:
console.info("Generator Running in Manual Mode")
SendNotice("Generator Running in Manual Mode")
else:
console.info("Generator Running in Manual Mode End")
#---------- OnExercise --------------------------------------------------------
def OnExercise(Active):
if Active:
console.info("Generator Exercising")
SendNotice("Generator Exercising")
else:
console.info("Generator Exercising End")
#---------- OnReady -----------------------------------------------------------
def OnReady(Active):
if Active:
console.info("Generator Ready")
SendNotice("Generator Ready")
else:
console.info("Generator Ready End")
#---------- OnOff -------------------------------------------------------------
def OnOff(Active):
if Active:
console.info("Generator Off")
SendNotice("Generator Off")
else:
console.info("Generator Off End")
#---------- OnManual ----------------------------------------------------------
def OnManual(Active):
if Active:
console.info("Generator Manual")
SendNotice("Generator Manual")
else:
console.info("Generator Manual End")
#---------- OnAlarm -----------------------------------------------------------
def OnAlarm(Active):
if Active:
console.info("Generator Alarm")
SendNotice("Generator Alarm")
else:
console.info("Generator Alarm End")
#---------- OnService ---------------------------------------------------------
def OnService(Active):
if Active:
console.info("Generator Service Due")
SendNotice("Generator Service Due")
else:
console.info("Generator Servcie Due End")
#---------- OnUtilityChange ---------------------------------------------------
def OnUtilityChange(Active):
if Active:
console.info("Utility Service is Down")
SendNotice("Utility Service is Down")
else:
SendNotice("Utility Service is Up")
console.info("Utility Service is Up")
#---------- SendNotice --------------------------------------------------------
def SendNotice(Message):
try:
if SiteName != None and SiteName != "":
Subject = "Generator Notice at " + SiteName
else:
Subject = "Generator Notice"
MyMail.sendEmail(Subject, Message, recipient = DestinationEmail)
except Exception as e1:
log.error("Error in SendNotice: " + str(e1))
console.error("Error in SendNotice: " + str(e1))
#---------- GetSiteName -------------------------------------------------------
def GetSiteName():
try:
localconfig = MyConfig(filename = ConfigFilePath + 'genmon.conf', section = "GenMon")
return localconfig.ReadValue('sitename', default = None)
except Exception as e1:
log.error("Error in GetSiteName: " + str(e1))
console.error("Error in GetSiteName: " + str(e1))
return None
#------------------- Command-line interface for gengpio ------------------------
if __name__=='__main__':
console, ConfigFilePath, address, port, loglocation, log = MySupport.SetupAddOnProgram("genemail2sms")
# Set the signal handler
signal.signal(signal.SIGINT, signal_handler)
if not os.path.isfile(os.path.join(ConfigFilePath, 'genmon.conf')):
console.error("Missing config file : " + os.path.join(ConfigFilePath, 'genmon.conf'))
log.error("Missing config file : " + os.path.join(ConfigFilePath, 'genmon.conf'))
sys.exit(1)
if not os.path.isfile(os.path.join(ConfigFilePath, 'mymail.conf')):
console.error("Missing config file : " + os.path.join(ConfigFilePath, 'mymail.conf'))
log.error("Missing config file : " + os.path.join(ConfigFilePath, 'mymail.conf'))
sys.exit(1)
try:
SiteName = GetSiteName()
config = MyConfig(filename = os.path.join(ConfigFilePath, 'genemail2sms.conf'), section = 'genemail2sms', log = log)
DestinationEmail = config.ReadValue('destination', default = "")
if DestinationEmail == "" or (not "@" in DestinationEmail):
log.error("Missing parameter in " + os.path.join(ConfigFilePath, 'genemail2sms.conf'))
console.error("Missing parameter in " + os.path.join(ConfigFilePath, 'genemail2sms.conf'))
sys.exit(1)
# init mail, start processing incoming email
MyMail = MyMail(loglocation = loglocation, log = log, ConfigFilePath = ConfigFilePath)
except Exception as e1:
log.error("Error reading " + os.path.join(ConfigFilePath, 'genemail2sms.conf') + ": " + str(e1))
console.error("Error reading " + os.path.join(ConfigFilePath, 'genemail2sms.conf') + ": " + str(e1))
sys.exit(1)
try:
GenNotify = GenNotify(
host = address,
port = port,
onready = OnReady,
onexercise = OnExercise,
onrun = OnRun,
onrunmanual = OnRunManual,
onalarm = OnAlarm,
onservice = OnService,
onoff = OnOff,
onmanual = OnManual,
onutilitychange = OnUtilityChange,
log = log,
loglocation = loglocation,
console = console)
while True:
time.sleep(1)
except Exception as e1:
log.error("Error: " + str(e1))
console.error("Error: " + str(e1))