-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathvibration.py
345 lines (282 loc) · 10.6 KB
/
vibration.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
import sys
import time
import logging
import threading
import RPi.GPIO as GPIO
import requests
import smtplib
import json
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from time import localtime, strftime
from six.moves.configparser import ConfigParser
try:
import tweepy
from tweepy import OAuthHandler as TweetHandler
except ModuleNotFoundError:
TweetHandler = None
try:
import paho.mqtt.publish as mqttpublish
except ModuleNotFoundError:
mqttpublish = None
try:
from slackclient import SlackClient
except ModuleNotFoundError:
SlackClient = None
PUSHOVER_SOUNDS = None
def email(msg):
try:
message = MIMEMultipart('related')
message['Subject'] = msg
message['From'] = email_sender
message['To'] = email_recipient
message.preamble = 'This is a multi=part message in MIME format.'
message_alternative = MIMEMultipart('alternative')
message.attach(message_alternative)
message_text = MIMEText(msg + '\n')
message_text = MIMEText('<h3>' + msg + '</h3>')
message_text.replace_header('Content-Type', 'text/html')
message_alternative.attach(message_text)
if email_ssl is True:
s = smtplib.SMTP_SSL(email_server, email_port)
else:
s = smtplib.SMTP(email_server, email_port)
s.starttls()
s.login(email_sender, email_password)
s.sendmail(email_sender, email_recipient, message.as_string())
s.quit()
except (KeyboardInterrupt, SystemExit):
raise
except:
pass
def mqtt(msg):
try:
mqtt_auth = None
if len(mqtt_username) > 0:
mqtt_auth = { 'username': mqtt_username, 'password': mqtt_password }
mqttpublish.single(mqtt_topic, msg, qos=0, retain=False, hostname=mqtt_hostname,
port=int(mqtt_port), client_id=mqtt_clientid, keepalive=60, will=None, auth=mqtt_auth,
tls=None)
except (KeyboardInterrupt, SystemExit):
raise
except:
pass
def pushbullet(cfg, msg):
try:
data_send = {"type": "note", "body": msg}
requests.post(
'https://api.pushbullet.com/v2/pushes',
data=json.dumps(data_send),
headers={'Authorization': 'Bearer ' + cfg,
'Content-Type': 'application/json'})
except (KeyboardInterrupt, SystemExit):
raise
except:
pass
def get_pushoversounds(app_key):
global PUSHOVER_SOUNDS
if not PUSHOVER_SOUNDS:
url_data = "https://api.pushover.net/1/sounds.json?token={}" .format(app_key)
try:
r = requests.get(url_data)
json_data = r.json()
PUSHOVER_SOUNDS = json_data['sounds']
except (KeyboardInterrupt, SystemExit):
raise
except:
pass
def pushover(user_key, app_key, msg, device='', sound=''):
global PUSHOVER_SOUNDS
if not PUSHOVER_SOUNDS:
get_pushoversounds(app_key)
data_send = {"user": user_key, "token": app_key, "message": msg}
if device:
data_send['device'] = device
if sound in PUSHOVER_SOUNDS:
data_send['sound'] = sound
try:
requests.post(
'https://api.pushover.net/1/messages.json',
data=json.dumps(data_send),
headers={'Content-Type': 'application/json'})
except (KeyboardInterrupt, SystemExit):
raise
except:
pass
def iftt(msg):
try:
iftt_url = "https://maker.ifttt.com/trigger/{}/with/key/{}".format(iftt_maker_channel_event,
iftt_maker_channel_key)
report = {"value1" : msg}
resp = requests.post(iftt_url, data=report)
except (KeyboardInterrupt, SystemExit):
raise
except:
pass
def slack_webhook(msg):
try:
requests.post(slack_webhook_url, json={'text': msg}, headers={"Content-type": "application/json"})
except (KeyboardInterrupt, SystemExit):
raise
except:
pass
def tweet(msg):
try:
# Twitter is the only API that NEEDS something like a timestamp,
# since it will reject identical tweets.
tweet = msg + ' ' + strftime("%Y-%m-%d %H:%M:%S", localtime())
auth = TweetHandler(twitter_api_key, twitter_api_secret)
auth.set_access_token(twitter_access_token,
twitter_access_token_secret)
tweepy.API(auth).update_status(status=tweet)
except (KeyboardInterrupt, SystemExit):
raise
except:
pass
def slack(msg):
try:
slack = msg + ' ' + strftime("%Y-%m-%d %H:%M:%S", localtime())
sc = SlackClient(slack_api_token)
sc.api_call(
'chat.postMessage', channel='#random', text=slack)
except (KeyboardInterrupt, SystemExit):
raise
except:
pass
def telegram(msg):
try:
telegram_url = "https://api.telegram.org/bot{}/sendMessage?chat_id={}&text={}".format(telegram_api_token,
telegram_user_id, msg)
resp = requests.post(telegram_url)
except (KeyboardInterrupt, SystemExit):
raise
except:
pass
def discord(msg):
try:
resp = requests.post(discord_webhook_url, json={"content": msg}, params={"wait": True})
resp.raise_for_status()
except (KeyboardInterrupt, SystemExit):
raise
except Exception as e:
logging.warning("Failed to send to Discord: %s", e)
def send_alert(message):
if len(message) > 1:
logging.info(message)
if len(pushover_user_key) > 0 and len(pushover_app_key) > 0:
pushover(pushover_user_key, pushover_app_key, message, pushover_device, pushover_sound)
if len(pushbullet_api_key) > 0:
pushbullet(pushbullet_api_key, message)
if len(pushbullet_api_key2) > 0:
pushbullet(pushbullet_api_key2, message)
if len(twitter_api_key) > 0:
tweet(message)
if len(slack_api_token) > 0:
slack(message)
if len (slack_webhook_url) > 0:
slack_webhook(message)
if len(iftt_maker_channel_key) > 0:
iftt(message)
if len(mqtt_topic) > 0:
mqtt(message)
if len(email_recipient) > 0:
email(message)
if len(telegram_api_token) > 0 and len(telegram_user_id) > 0:
telegram(message)
if len(discord_webhook_url) > 0:
discord(message)
def send_appliance_active_message():
send_alert(start_message)
global appliance_active
appliance_active = True
def send_appliance_inactive_message():
send_alert(end_message)
global appliance_active
appliance_active = False
def vibrated(x):
global vibrating
global last_vibration_time
global start_vibration_time
logging.debug('Vibrated')
last_vibration_time = time.time()
if not vibrating:
start_vibration_time = last_vibration_time
vibrating = True
def heartbeat():
current_time = time.time()
logging.debug("HB at {}".format(current_time))
global vibrating
delta_vibration = last_vibration_time - start_vibration_time
if (vibrating and delta_vibration > begin_seconds
and not appliance_active):
send_appliance_active_message()
if (not vibrating and appliance_active
and current_time - last_vibration_time > end_seconds):
send_appliance_inactive_message()
vibrating = current_time - last_vibration_time < 2
threading.Timer(1, heartbeat).start()
logging.basicConfig(format='%(message)s', level=logging.INFO)
if len(sys.argv) == 1:
logging.critical("No config file specified")
sys.exit(1)
vibrating = False
appliance_active = False
last_vibration_time = time.time()
start_vibration_time = last_vibration_time
config = ConfigParser()
config.read(sys.argv[1])
verbose = config.getboolean('main', 'VERBOSE')
sensor_pin = config.getint('main', 'SENSOR_PIN')
begin_seconds = config.getint('main', 'SECONDS_TO_START')
end_seconds = config.getint('main', 'SECONDS_TO_END')
pushbullet_api_key = config.get('pushbullet', 'API_KEY')
pushover_user_key = config.get('pushover', 'user_api_key')
pushover_app_key = config.get('pushover', 'app_api_key')
pushover_device = config.get('pushover', 'device')
pushover_sound = config.get('pushover', 'sound')
mqtt_hostname = config.get('mqtt', 'mqtt_hostname')
mqtt_port = config.get('mqtt', 'mqtt_port')
mqtt_topic = config.get('mqtt', 'mqtt_topic')
mqtt_username = config.get('mqtt', 'mqtt_username')
mqtt_password = config.get('mqtt', 'mqtt_password')
mqtt_clientid = config.get('mqtt', 'mqtt_clientid')
if len(mqtt_topic) > 0 and mqttpublish is None:
logging.critical("MQTT requested but not installed")
sys.exit(1)
pushbullet_api_key2 = config.get('pushbullet', 'API_KEY2')
start_message = config.get('main', 'START_MESSAGE')
end_message = config.get('main', 'END_MESSAGE')
twitter_api_key = config.get('twitter', 'api_key')
twitter_api_secret = config.get('twitter', 'api_secret')
twitter_access_token = config.get('twitter', 'access_token')
twitter_access_token_secret = config.get('twitter', 'access_token_secret')
if len(twitter_api_key) > 0 and TweetHandler is None:
logging.critical("Twitter requested but not installed")
sys.exit(1)
slack_api_token = config.get('slack', 'api_token')
slack_webhook_url = config.get('slack','webhook_url')
if (len(slack_api_token) > 0 or len(slack_webhook_url) > 0) and SlackClient is None:
logging.critical("Slack requested but not installed")
sys.exit(1)
iftt_maker_channel_event = config.get('iftt','maker_channel_event')
iftt_maker_channel_key = config.get('iftt','maker_channel_key')
email_recipient = config.get('email', 'recipient')
email_sender = config.get('email', 'sender')
email_password = config.get('email', 'password')
email_server = config.get('email', 'server')
email_port = config.get('email', 'port')
email_ssl = config.getboolean('email', 'ssl')
telegram_api_token = config.get('telegram', 'telegram_api_token')
telegram_user_id = config.get('telegram', 'telegram_user_id')
discord_webhook_url = config.get('discord', 'discord_webhook_url')
if verbose:
logging.getLogger().setLevel(logging.DEBUG)
send_alert(config.get('main', 'BOOT_MESSAGE'))
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.setup(sensor_pin, GPIO.IN, pull_up_down=GPIO.PUD_DOWN)
GPIO.add_event_detect(sensor_pin, GPIO.RISING)
GPIO.add_event_callback(sensor_pin, vibrated)
logging.info('Running config file {} monitoring GPIO pin {}'\
.format(sys.argv[1], str(sensor_pin)))
threading.Timer(1, heartbeat).start()