-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathMysqlController.py
247 lines (196 loc) · 7.31 KB
/
MysqlController.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
import json
import warnings
import pymysql
warnings.filterwarnings("ignore")
class MysqlController():
def __init__(self):
self.loadMysqlConfig()
self.loadMysqlPayload()
# log file to Mysql
def coreProcessor(self, pathLog, fileLog, paramLog):
self._pathLog = pathLog
self._fileLog = fileLog
self._paramLog = paramLog
with open('../config.ini')as config_f:
config = json.load(config_f)
self._whiteHosts = config.get('whiteHosts')
'''
dataDict = {
'path':[
('host','path')],
'file':[
('host','file')],
'param':[
('host','param')]}
'''
dataDict = {
'path':self.getDataFromLog(self._pathLog),
'file':self.getDataFromLog(self._fileLog),
'param':self.getDataFromLog(self._paramLog)}
self.dataStorage(dataDict)
def loadMysqlConfig(self):
with open('../config.ini')as config_f:
mysql_config = json.load(config_f).get('mysql')
self._host = mysql_config.get('host')
self._user = mysql_config.get('user')
self._password = mysql_config.get('password')
self._port = int(mysql_config.get('port'))
self._database = mysql_config.get('database')
def loadMysqlPayload(self):
self._createDatabase = '''
create database if not exists {} charset utf8;
'''.format(self._database)
self._createTableParam = '''
create table if not exists param(
id int not null primary key auto_increment,
host varchar(100),
param varchar(300) not null,
count int default 1);
'''
self._createTablepath = '''
create table if not exists path(
id int not null primary key auto_increment,
host varchar(100),
path varchar(300) not null,
count int default 1);
'''
self._createTableFile = '''
create table if not exists file(
id int not null primary key auto_increment,
host varchar(100),
file varchar(300) not null,
count int default 1);
'''
self._selectTableParam = '''
select count(*) from param where
host = %s and param = %s
'''
self._selectTablepath = '''
select count(*) from path where
host = %s and path = %s
'''
self._selectTableFile = '''
select count(*) from file where
host = %s and file = %s
'''
self._insertTableParam = '''
insert into param(
host,param) values(%s,%s)
'''
self._insertTablepath = '''
insert into path(
host,path) values(%s,%s)
'''
self._insertTableFile = '''
insert into file(
host,file) values(%s,%s)
'''
self._updateTableParamCount = '''
update param set count = count + 1
where host = %s and param = %s
'''
self._updateTablepathCount = '''
update path set count = count + 1
where host = %s and path = %s
'''
self._updateTableFileCount = '''
update file set count = count + 1
where host = %s and file = %s
'''
# testing mysql connections
def connectTest(self):
try:
connection = pymysql.connect(host=self._host,
user=self._user,
password=self._password,
port=self._port,
cursorclass=pymysql.cursors.DictCursor)
print('\n'+'='*10)
print('MySQL Connection Succession')
print('='*10+'\n')
except Exception as e:
if e[0] == 1045:
print('MySQL Access denied !!')
else:
cursor = connection.cursor()
cursor.execute(self._createDatabase)
connection.commit()
connection.select_db(self._database)
cursor.execute(self._createTableParam)
cursor.execute(self._createTablepath)
cursor.execute(self._createTableFile)
connection.commit()
connection.close()
return True
# @return [(host,orther),]
def getDataFromLog(self, logFile):
tempData = []
with open(logFile)as log_f:
for line in log_f:
line = line.strip()
host,orther = line.split('\t')
# The host that is not on the whitelist will be reset to empty
for whiteHost in self._whiteHosts:
if not whiteHost or not host.endswith(whiteHost):
host = ''
else:
host = '*.{}'.format(whiteHost)
tempData.append((host, orther))
return tempData
'''
dataDict = {
'path':[
('host','path')],
'file':[
('host','file')],
'param':[
('host','param')]}
'''
def dataStorage(self, dataDict):
try:
connection = pymysql.connect(host=self._host,
user=self._user,
password=self._password,
port=self._port,
db=self._database,
cursorclass=pymysql.cursors.DictCursor)
except Exception as e:
if e[0] == 1045:
print('MySQL Access denied !!')
else:
cursor = connection.cursor()
if dataDict.get('path'):
for host, path in dataDict.get('path'):
self.operateTablepath(cursor, host, path)
connection.commit()
if dataDict.get('file'):
for host, file in dataDict.get('file'):
self.operateTableFile(cursor, host, file)
connection.commit()
if dataDict.get('param'):
for host,params in dataDict.get('param'):
for param in params.split(','):
self.operateTableParam(cursor, host, param)
connection.commit()
connection.close()
def operateTableParam(self, cursor, host, param):
cursor.execute(self._selectTableParam, (host, param))
itemCount = cursor.fetchone()
if not itemCount.get('count(*)'):
cursor.execute(self._insertTableParam, (host, param))
else:
cursor.execute(self._updateTableParamCount, (host, param))
def operateTablepath(self, cursor, host, path):
cursor.execute(self._selectTablepath, (host, path))
itemCount = cursor.fetchone()
if not itemCount.get('count(*)'):
cursor.execute(self._insertTablepath, (host, path))
else:
cursor.execute(self._updateTablepathCount, (host, path))
def operateTableFile(self, cursor, host, file):
cursor.execute(self._selectTableFile, (host, file))
itemCount = cursor.fetchone()
if not itemCount.get('count(*)'):
cursor.execute(self._insertTableFile, (host, file))
else:
cursor.execute(self._updateTableFileCount, (host, file))