-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdw2pagermon.py
66 lines (61 loc) · 1.76 KB
/
pdw2pagermon.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
# A program made by Shane (Shaggs) Rees to use PDW's email function into python.
""" To get Started
Options -> SMTP / email settings
Setting set to all messages
SMTP Host 127.0.0.1
Port 8826
To can be set as anything
From can be set as anything
Mail options select
Address, Time, Date, Bitrate, Message
Notification set to messages
"""
import asyncore
from datetime import datetime
import email
from clint.textui import puts, colored
import time
import smtpd
import requests
frag = " "
def apost(flexcode, msg, when):
headers = {
'X-Requested-With': 'XMLHttpRequest',
'apikey': "", #pagermon APIKey
'User-Agent': 'PagerMon pdw2pagermon.py',
}
params = {
"address": flexcode,
"message": msg,
"datetime": when,
"source": "",
}
requests.post('http://Your IP Address Here/api/messages', data=params, headers=headers)
class CustomSMTPServer(smtpd.SMTPServer):
def process_message(self, peer, mailfrom, rcpttos, data, **kwargs):
mime_message = email.message_from_bytes(data)
message = mime_message.get_payload()
flexcode, a, b, bitrate, msg = message.split(' ',4)
when = datetime.now().strftime('%d-%m-%Y %H:%M:%S')
flexcode = "00"+flexcode
msg = msg.strip()
bitrate = str(bitrate)
if bitrate == "1600":
self.frag = msg
puts(colored.yellow(flexcode), newline=False)
puts(" [", newline=False)
puts(colored.green(when), newline=False)
puts("] ", newline=False)
puts(msg)
apost(flexcode, msg, when)
elif bitrate == "1601":
msg = self.frag + msg
puts(colored.yellow(flexcode), newline=False)
puts(" [", newline=False)
puts(colored.green(when), newline=False)
puts("] ", newline=False)
puts(msg)
apost(flexcode, msg, when)
return
server = CustomSMTPServer(('127.0.0.1', 8826), None)
asyncore.loop()