-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
127 lines (101 loc) · 3.03 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
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
import sys
import time
from module import cs_noti, gnu_noti, agency_noti
def main():
init_secret()
interval = init()
option = mode_select()
if option == 'all':
while True:
gnuModule = gnu_noti.GnuNotification()
gnuModule.run()
# TODO: Bug fix후 주석해제
# csModule = cs_noti.csNotification()
# csModule.run()
agencyModule = agency_noti.AgencyNotification()
agencyModule.run()
time.sleep(interval)
elif option == 'cs':
while True:
csModule = cs_noti.CsNotification()
csModule.run()
time.sleep(interval)
elif option == 'gnu':
while True:
gnuModule = gnu_noti.GnuNotification()
gnuModule.run()
time.sleep(interval)
elif option == 'agency':
while True:
agencyModule = agency_noti.AgencyNotification()
agencyModule.run()
time.sleep(interval)
def mode_select():
if len(sys.argv) == 1:
print('ERROR: There is no Parameter. Please check README')
# mode=[all,cs,gnu,agency]
mode = [False, False, False, False]
print(sys.argv)
for a in sys.argv:
if a == 'all':
mode[0] = True
elif a == 'cs':
mode[1] = True
elif a == 'gnu':
mode[2] = True
elif a == 'agency':
mode[3] = True
if mode[1] == True and mode[2] == True and mode[3] == True:
return 'all'
if mode[0] == True:
return 'all'
elif mode[1] == True:
return 'cs'
elif mode[2] == True:
return 'gnu'
elif mode[3] == True:
return 'agency'
# This case is occurred when user enter incorrect option
print('ERROR:Please Enter Correct Option')
exit()
def init_secret():
import os
try:
_ = os.environ["GNU_CHANNEL"]
_ = os.environ["CS_CHANNEL"]
except KeyError:
print("ERROR: Could not found TELEGRAM CHANNEL INFO")
exit(1)
try:
_ = os.environ["NAVER_ID"]
_ = os.environ["NAVER_SECRET"]
except KeyError:
try:
path = os.path.dirname(os.path.dirname(os.path.abspath( __file__ )))
file = open(path + "/source/naver", "r")
file.close()
except FileNotFoundError:
print("ERROR: Could not found NAVER Secret")
exit(1)
try:
_ = os.environ["TELEGRAM_API"]
except KeyError:
try:
path = os.path.dirname(os.path.dirname(os.path.abspath( __file__ )))
file = open(path + "/source/api_key")
file.close()
except FileNotFoundError:
print("ERROR: Could not fount TELEGRAM API Secret")
exit(1)
def init():
import os
try:
param = os.environ["DEBUG"]
if param == "True":
print("DEBUG Mode Enabled")
return 10
except KeyError:
print("PRODUCTION Mode Enabled")
return 1800
if __name__ == '__main__':
main()