-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.py
73 lines (55 loc) · 2.15 KB
/
main.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
import smtplib
import threading
import socket
host = "127.0.0.1" # local host
port = 12129
clientsList = []
IdentityName = []
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server.bind((host, port))
server.listen()
email = "[email protected]"
def handleClient(client):
while True: # endless loop
try:
value = client.recv(1024).decode('utf-8') # packet size
print(value)
if value == "Over the Permissible ph levels!!":
send_alert("pH")
elif value == "TDS levels Not in the permissible range!":
send_alert("TDS")
elif value == "Chlorine levels not in permissible range":
send_alert("Chlorine")
except:
index = clientsList.index(client)
clientsList.remove(client)
client.close()
identity = IdentityName[index]
# broadCastMessage(f'{identity} left the chat'.encode('utf-8'))
IdentityName.remove(identity)
break
def recieveMessage():
while True:
client, address = server.accept()
print(f"Connected with {str(address)}")
client.send("RequestIdName".encode('utf-8')) # message for client to give a name
identityName = client.recv(1024).decode('utf-8')
IdentityName.append(identityName)
clientsList.append(client)
print(f'Identity Name of client is {identityName}')
client.send('Connected to the server'.encode('utf-8')) # for the particular client
thread = threading.Thread(target=handleClient, args=(client,))
thread.start()
def send_alert(whatsWrong):
serverMail = smtplib.SMTP('smtp.gmail.com', 587)
serverMail.ehlo()
serverMail.starttls()
serverMail.ehlo()
serverMail.login('[email protected]', 'ygjcrdbiahryuylb')
subject_mail = 'Issue in Water quality'
body_mail = f'Hey there, your water system reported abnormal levels of: {whatsWrong} \n'
msg = f"Subject: {subject_mail}\n\n{body_mail}"
serverMail.sendmail('[email protected]', email, msg)
print('The user has been alerted')
serverMail.quit()
recieveMessage()