forked from jgyates/genmon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenpushover.py
197 lines (154 loc) · 6.38 KB
/
genpushover.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
#!/usr/bin/env python
#-------------------------------------------------------------------------------
# FILE: genpushover.py
# PURPOSE: genpushover.py sends Push notifications to Android, iOS and Desktop
#
# AUTHOR: Stephen Bader - Stole a lot of code from gensms.py
# DATE: 09-09-2017
#
# MODIFICATIONS:
#-------------------------------------------------------------------------------
import datetime, time, sys, signal, os, threading, socket
import atexit, getopt
try:
from genmonlib.mylog import SetupLogger
from genmonlib.mynotify import GenNotify
from genmonlib.myconfig import MyConfig
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)
try:
from chump import Application
except Exception as e1:
print("\n\nThis program requires the chump module to be installed.\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:
app = Application(appid)
user = app.get_user(userid)
message = user.create_message(
message = Message,
sound = pushsound)
message.send()
console.info(message.id)
except Exception as e1:
log.error("Error: " + str(e1))
console.error("Error: " + str(e1))
#------------------- Command-line interface for gengpio ------------------------
if __name__=='__main__':
console, ConfigFilePath, address, port, loglocation, log = MySupport.SetupAddOnProgram("genpushover")
# Set the signal handler
signal.signal(signal.SIGINT, signal_handler)
try:
config = MyConfig(filename = os.path.join(ConfigFilePath, 'genpushover.conf'), section = 'genpushover', log = log)
appid = config.ReadValue('appid')
userid = config.ReadValue('userid')
pushsound = config.ReadValue('pushsound', default = 'updown')
if appid == None or not len(appid):
log.error("Error: invalid app ID")
console.error("Error: invalid app ID")
sys.exit(2)
if userid == None or not len(userid):
log.error("Error: invalid user ID")
console.error("Error: invalid user ID")
sys.exit(2)
except Exception as e1:
log.error("Error reading " + os.path.join(ConfigFilePath, 'genpushover.conf') +": " + str(e1))
console.error("Error reading " + os.path.join(ConfigFilePath, 'genpushover.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))