-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontroller.py
125 lines (114 loc) · 4.47 KB
/
controller.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
# author
__author__ = "Sanjay Singh"
__email__ = "[email protected]"
# libraries
import os
from getpass import getpass
import smtplib
import time
import sys
# importing PyProgramController files
import receiving_mail
# global parameters
global local_program_file, program_file, program, source_userid, password, target_userid, subject, port, msg_payload
# creating duplicate copy of program file
def create_local_program_file():
global local_program_file, program_file, program
if(program_file[0] == "'"):
program_file = program_file[1 : len(program_file) - 1]
program = open(program_file, "r").read()
f = open(local_program_file, "w")
f.write(program)
f.close()
# function for checking user-id and password
def check_login():
try:
print(">> Checking login...")
# sending status
server = smtplib.SMTP('smtp.gmail.com:' + str(port))
server.ehlo()
server.starttls()
server.login(source_userid, password)
print(">> Login successful")
except Exception as e:
print(">> Login Failed.. <" + str(time.ctime()) + "> " + str(e))
sys.exit()
# function to temporarily save global variables
def save_params():
# opening a text file in write mode
temp = open("params.txt", "w")
# writing params
temp.write(source_userid + "," + password + "," + target_userid + "," + subject + "," + port)
# closing text file
temp.close()
if __name__ == "__main__":
# accessing global variables
global local_program_file, program_file, source_userid, password, target_userid, subject, port, msg_payload
local_program_file = "local_program_file.py"
# MAIN MENU
take_order = True
while(take_order == True):
print(">> MAIN MENU")
program_file = input(">> Enter the path of Python program file : ")
source_userid = input(">> Enter source gmail user-id : ")
password = getpass(">> Enter password of source gmail account : ")
port = input(">> Enter port for communication (to use default, enter 587) : ")
# checking login status
check_login()
target_userid = input(">> Enter target gmail user-id : ")
subject = input(">> Enter subject for email notifications : ")
# temporarily saving params (user-id, password)
save_params()
# asking for platform (python3 or ipython3)
print(">> Choose your platform : ")
print(">> \t\tEnter 'p' for 'python3'")
print(">> \t\tEnter 'i' for 'ipyhton3' (X receiving_mail would not work X)")
ide = input(">> \tEnter your choice : ")
# if choosed platform is 'p' or 'i' then continue else ask again
if(ide == 'p' or ide == 'i'):
take_order = False
else:
print(">> Invalid choice. Try Again...")
time.sleep(2)
os.system("clear")
# to keep number of executions
nbr_exec = 1
# creating local program file
create_local_program_file()
# executing user program
while(True):
print("")
print(">>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<")
print(">>>>>>>>>>>>>>>>>>Exceution " + str(nbr_exec) + "<<<<<<<<<<<<<<<<<<<<<")
if(ide == 'i'):
os.system("ipython3 -i " + local_program_file)
if(ide == 'p'):
os.system('python3 ' + local_program_file)
# waiting for next instructions
receiving_mail.main_function()
# getting msg Received
msg_payload = str(receiving_mail.msg_payload)
# received response says to quit program
if(msg_payload.strip() == '$q'):
print(">> Quitting...")
break
# received response says to re-execute program
if(msg_payload.strip() == '$r'):
print(">> Re-executing user-program...")
time.sleep(2)
print("")
# received response says to save user-program and quit
if(msg_payload.strip() == '$sq'):
print(">> Saving recently updated program...")
program = open(local_program_file, "r").read()
f = open(program_file, "w")
f.write(program)
f.close()
print(">> Program saved")
print(">> Quitting...")
break
nbr_exec = nbr_exec + 1
# deleting temporary params file
os.remove("params.txt")
# deleting temporary program file
os.remove(local_program_file)