-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.py
413 lines (373 loc) · 14.1 KB
/
server.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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
#coding=utf-8
import time
import traceback
import sys
import web
import hashlib
import os
import json
import config
import dbOperations
import judgeIFrogue
#initDatabase()支持中文
#testssh
#Configurations for session
#Non debug mode
#Sessions doesn't work in debug mode because it interfere with reloading
#See session_with_reloader for more details
web.config.debug = False
web.config.session_parameters['cookie_name'] = 'user_session_id'
web.config.session_parameters['cookie_domain'] = None
#24 * 60 * 60, # 24 hours in seconds
web.config.session_parameters['timeout'] = 86400,
web.config.session_parameters['ignore_expiry'] = True
web.config.session_parameters['ignore_change_ip'] = True
#Randomly generate strings with fixed length as secret key
web.config.session_parameters['secret_key'] = ''.join(map(lambda xx:(hex(ord(xx))[2:]),os.urandom(16)))
web.config.session_parameters['expired_message'] = 'Warning: Session Expired'
# Define urls and the corresponding handlers
urls = (
'/login', 'Login',
'/apFeatures', 'SendApFeatures',
'/wifiInfos', 'GetWifiInfos',
'/wifiLatLng', 'GetWifiLatLng',
'/mapDisplay', 'ShowMap',
'/apFeaturesList', 'ApFeaturesList',
'/apacessrecordlist', 'APAcessRecordList',
'/tracerouterecordlist', 'TraceRouteRecordList',
'/home', 'Home',
'/', 'Blank',
'/wifiInfos/del/(.+)', 'DelWifiInfo',
'/acessInfos/del/(.+)', 'DelAcessInfo',
'/fail/(\w+)','Fail',
'/success/(\w+)','Success',
'/logout', 'Logout',
'/apacessrecord', 'APAcessRecord',
'/traceroute/upload', 'TraceRouteUpload',
'/querysafety/(.+)', 'QuerySafety',
)
app = web.application(urls,globals())
t_globals = {
'datestr': web.datestr,
'cookie' : web.cookies,
}
db = web.database(dbn=config.dbn, db=config.db, user=config.dbuser, pw=config.dbpw)
store = web.session.DBStore(db, 'Sessions')
session = web.session.Session(app, store,initializer={'logged_in': False, 'username': ""})
render = web.template.render(config.templatesPath, base='base', globals={'context': session})
class APAcessRecord:
features_form = web.form.Form(
web.form.Textbox('bssid',web.form.notnull,size=17),
web.form.Textbox('startTime',web.form.notnull,size=30),
web.form.Textbox('endTime',web.form.notnull,size=50),
web.form.Textbox('longtitude',web.form.notnull,size=12),
web.form.Textbox('latitude',web.form.notnull,size=12),
web.form.Textbox('macAdress',web.form.notnull,size=17),
web.form.Button('Submit'),
)
def GET(self):
if session.logged_in == False:
raise web.seeother('/login')
form = self.features_form()
return render.apAcessRecord(form)
def POST(self):
i = web.input()
macAdress = web.net.websafe(i.macAdress)
bssid = web.net.websafe(i.bssid)
startTime = web.net.websafe(i.startTime)
endTime = web.net.websafe(i.endTime)
latitude = web.net.websafe(i.latitude)
longtitude = web.net.websafe(i.longtitude)
dbOperations.insertAPAcessRecord(bssid, macAdress, startTime, endTime, latitude, longtitude)
result = {
"code":1,
"info":"Upload success."
}
print 'Success'
return result
raise web.seeother('/success/sendAPFeatures')
class APAcessRecordList:
def GET(self):
if session.logged_in == False:
raise web.seeother('/login')
return render.apAcessRecordList(getAllAPAcessRecord())
class TraceRouteRecordList:
def GET(self):
if session.logged_in == False:
raise web.seeother('/login')
return render.traceRouteRecordList(getAllTraceRouteRecord())
class DelWifiInfo:
def GET(self, bssid):
if session.logged_in == False:
raise web.seeother('/login')
dbOperations.deleteAPFeature(bssid)
return "Delete Success."
class DelAcessInfo:
def GET(self, startTime):
if session.logged_in == False:
raise web.seeother('/login')
dbOperations.deleteAPAcessRecord(startTime)
return "Delete Success."
def getTimeString():
timeStamp = int(time.time())
timeArray = time.localtime(timeStamp)
timeString = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
return timeString
def getAllAPsFeatures():
results = dbOperations.selectAPFeatures()
apsfeatures = []
for result in results:
apsfeatures.append({"bssid":result["bssid"],
"ssid":result["ssid"],
"security":result["security"],
"signal":result["signals"],
"latitude":result["latitude"],
"longtitude":result["longtitude"],
"macAdress":result["macAdress"],
"timeString":result["timeString"]} )
return json.dumps(apsfeatures)
def getAllAPAcessRecord():
results = dbOperations.selectAPAcessRecord()
apAcessRecord = []
for result in results:
apAcessRecord.append({"bssid":result["bssid"],
"macAdress":result["macAdress"],
"startTime":result["startTime"],
"endTime":result["endTime"],
"latitude":result["latitude"],
"longtitude":result["longtitude"]} )
return json.dumps(apAcessRecord)
def getAllTraceRouteRecord():
results = dbOperations.selectTraceRouteRecord()
traceRouteRecord = []
for result in results:
traceRouteRecord.append({"bssid":result["bssid"],
"macAdress":result["macAdress"],
"content":result["content"]} )
return json.dumps(traceRouteRecord)
class Home:
def GET(self):
return web.seeother('/')
class Blank:
def GET(self):
if session.logged_in == False:
raise web.seeother('/login')
else:
raise web.seeother('/mapDisplay')
class ApFeaturesList:
def GET(self):
if session.logged_in == False:
raise web.seeother('/login')
return render.apFeaturesList(getAllAPsFeatures())
class ShowMap:
def GET(self):
if session.logged_in == False:
raise web.seeother('/login')
results = db.select('APsFeatures', what="longtitude, latitude", order="longtitude DESC")
location = []
for result in results:
location.append({"longtitude":result["longtitude"], "latitude":result["latitude"]})
return render.mapDisplay(json.dumps(location))
class GetWifiLatLng:
def GET(self):
results = db.select('APsFeatures', what="longtitude, latitude", order="longtitude DESC")
total = 0
location=[]
for result in results:
if(total==0):
data={}
data["longtitude"]=result["longtitude"]
data["latitude"]=result["latitude"]
location.append(data)
total=total+1
else:
if(result!=preResult):
data={}
data["longtitude"]=result["longtitude"]
data["latitude"]=result["latitude"]
location.append(data)
total=total+1
preResult = result
data={}
data["count"]=total
data["location"]=location
return json.dumps(data)
class GetWifiInfos:
def GET(self):
i = web.input()
lat = web.net.websafe(i.Latitude)
lng = web.net.websafe(i.Longtitude)
latlngDict = {'latitude':lat, 'longtitude':lng}
results = db.select('APsFeatures', what="signals, security, ssid, bssid, timeString",
where="(latitude=$latlngDict['latitude'])and(longtitude=$latlngDict['longtitude'])",
vars=locals())
list=[]
for result in results:
data={}
data["bssid"]=result["bssid"]
data["ssid"]=result["ssid"]
data["security"]=result["security"]
data["signals"]=result["signals"]
data["timeString"]=result["timeString"]
list.append(data)
data={}
data["count"]=len(results)
data["wifiInfos"]=list
return json.dumps(data)
class Fail:
def GET(self, operation):
return render.fail(operation)
class Success:
def GET(self, operation):
return render.success(operation)
class SendApFeatures:
features_form = web.form.Form(
web.form.Textbox('BSSID',web.form.notnull,size=17),
web.form.Textbox('SSID',web.form.notnull,size=30),
web.form.Textbox('Security',web.form.notnull,size=50),
web.form.Textbox('Signal',web.form.notnull,size=3),
web.form.Textbox('Longtitude',web.form.notnull,size=12),
web.form.Textbox('Latitude',web.form.notnull,size=12),
web.form.Textbox('MacAdress',web.form.notnull,size=17),
web.form.Button('Submit'),
)
def GET(self):
if session.logged_in == False:
raise web.seeother('/login')
form = self.features_form()
return render.apFeatures(form)
def POST(self):
i = web.input()
macAdress = web.net.websafe(i.MacAdress)
bssid = web.net.websafe(i.BSSID)
ssid = web.net.websafe(i.SSID)
security = web.net.websafe(i.Security)
signal = web.net.websafe(i.Signal)
latitude = web.net.websafe(i.Latitude)
longtitude = web.net.websafe(i.Longtitude)
timeString = getTimeString()
featuresDict = {'BSSID':bssid, 'SSID':ssid, 'SECURITY':security, 'SIGNALS':signal,
'LONGTITUDE':longtitude, 'LATITUDE':latitude, 'TIMESTRING':timeString, 'MACADRESS':macAdress}
if not verifyFeatures(featuresDict):
result = {
"code":1,
"info":"Upload success."
}
print 'Success'
list = []
list.append({"ssid":ssid,
"bssid":bssid,
"latitude":float(latitude),
"security":security,
"signal":int(signal),
"longtitude":float(longtitude)} )
judgeIFrogue.addAPSafety(list)
result = {
"code":1,
"info":"Update Success."
}
return result
#raise web.seeother('/fail/sendAPFeatures')
else:
dbOperations.insertAPFeatures(bssid, ssid, security, signal, latitude, longtitude, macAdress, timeString)
result = {
"code":1,
"info":"Upload success."
}
print 'Success'
list = []
list.append({"ssid":ssid,
"bssid":bssid,
"latitude":float(latitude),
"security":security,
"signal":int(signal),
"longtitude":float(longtitude)} )
judgeIFrogue.addAPSafety(list)
return result
raise web.seeother('/success/sendAPFeatures')
class Login:
#create login form
login_form = web.form.Form(
web.form.Textbox('Username',web.form.notnull,size=30),
web.form.Password('Password',web.form.notnull,size=30),
web.form.Button('Login'),
)
def GET(self):
#if session.logged_in == True:
# raise web.seeother('/mapDisplay')
form = self.login_form()
return render.login(form)
def POST(self):
i = web.input()
username, password = web.net.websafe(i.Username), hashlib.md5(web.net.websafe(i.Password)).hexdigest()
if not verifyLogin(username,password):
raise web.seeother('/fail/login')
else:
web.setcookie('username', username)
session.logged_in=True
raise web.seeother('/success/login')
class TraceRouteUpload:
features_form = web.form.Form(
web.form.Textbox('bssid',web.form.notnull,size=17),
web.form.Textbox('macAdress',web.form.notnull,size=17),
web.form.Textbox('content',web.form.notnull,size=500),
web.form.Button('Submit'),
)
def GET(self):
if session.logged_in == False:
raise web.seeother('/login')
form = self.features_form()
return render.TraceRoute(form)
def POST(self):
i = web.input()
macAdress = web.net.websafe(i.macAdress)
bssid = web.net.websafe(i.bssid)
content = web.net.websafe(i.content)
dbOperations.insertTraceRouteRecord(bssid, macAdress, content)
result = {
"code":1,
"info":"Upload success."
}
print 'Success'
return result
raise web.seeother('/success/sendTraceRouteRecord')
# Redirect to this page when user's operation failed
class Fail:
def GET(self, operation):
return render.fail(operation)
# Redirect to this page when user's operation succeeded
class Success:
def GET(self, operation):
return render.success(operation)
def verifyFeatures(featuresDict):
t=db.select('APsFeatures', where="bssid=$featuresDict['BSSID']",vars=locals())
for temp in t:
dbOperations.updateAPFeatures(featuresDict)
print 'Update Success.'
return False
return True
class Logout:
def GET(self):
if session.logged_in == False:
raise web.seeother('/login')
session.logged_in=False
session.kill()
web.setcookie('username','',expires=-1)
raise web.seeother('/success/logout')
def verifyLogin(username,password):
return (username=="fishing" and password==hashlib.md5("fishing").hexdigest());
def notfound():
return web.notfound("Sorry, the page your were looking for was not found.")
class QuerySafety:
def GET(self, bssid):
results = dbOperations.querySafety(bssid)
for result in results:
return result["safe"]
return 2
#1:危险
#0:安全
#2:未知
app.notfound = notfound
# running our server
if __name__ == '__main__':
app.run()