-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.py
437 lines (400 loc) · 14 KB
/
app.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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
from flask import Flask, request, render_template,make_response
import sqlite3
import os
import hashlib
import crawlingConvince as CC
import socket
import datetime
import threading
UPLOAD_FOLDER = "./database"
storeManageDB = 'storeManage.db'
addressManageDB = 'addressManage.db'
userManageDB = 'userManage.db'
testDataDB = "testData.db"
app = Flask(__name__)
app.secret_key = 'We are Fried Chicken Dinner!!!!'
returnDataCU = ""
returnDataGS25 = ""
loginData = {}
loginType = {}
def update_thread():
while(1):
now = datetime.datetime.now()
global returnDataGS25
global returnDataCU
if now.minute == 59 and now.second == 59:
returnDataCU = CC.updateCU()
returnDataGS25 = CC.updateGS25()
def make_data():
count = 0
global returnDataGS25
global returnDataCU
while count == 0:
returnDataCU = CC.updateCU()
returnDataGS25 = CC.updateGS25()
if returnDataGS25 != "error":
count = 1
if returnDataCU != "error":
count = 1
@app.route('/')
def hello_world():
return render_template('index.html')
@app.route('/update')
def update_convinceData():
make_data()
return 'true'
@app.route("/signUp", methods=['GET'])
def signUp_render():
return render_template('sign_up.html')
@app.route("/signUp", methods=['POST'])
def signUp():
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER,userManageDB))
curs = conn.cursor()
username = request.form['id']
password = request.form['pw']
dbPassword = hashlib.md5(password.encode()).hexdigest()
curs.execute("SELECT * FROM userManage")
Access = True
for i in curs.fetchall():
if i[0] == username:
Access = False
break
if (Access == False):
data = '<h1>fail<h1>'
conn.commit()
conn.close()
return data
curs.execute("insert into userManage values ('" + username + "', '" + dbPassword + "', '" + 'user' + "')")
conn.commit()
conn.close()
data = "<h1>success<h1>"
return data
@app.route("/ownerSignUp", methods=['GET'])
def ownerSignUp_render():
return render_template('owner_sign_up.html')
@app.route("/ownerSignUp", methods=['POST'])
def ownerSignUp():
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER,userManageDB))
curs = conn.cursor()
username = request.form['id']
password = request.form['pw']
address = request.form['address']
addressX = request.form['addressX']
addressY = request.form['addressY']
dbPassword = hashlib.md5(password.encode()).hexdigest()
curs.execute("SELECT * FROM userManage")
Access = True
for i in curs.fetchall():
if i[0] == username:
Access = False
break
if (Access == False):
data = '<h1>fail<h1>'
conn.commit()
conn.close()
return data
curs.execute("insert into userManage values ('" + username + "', '" + dbPassword + "', '" + 'owner'+"')")
conn.commit()
conn.close()
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER, storeManageDB))
curs = conn.cursor()
curs.execute("CREATE TABLE if not exists " + 'owner_'+username+"(itemName, itemPrice, event)")
conn.commit()
conn.close()
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER, addressManageDB))
curs = conn.cursor()
address = address.split(" ")
if address[0] in ['광주' , '대구', '인천', '부산', '울산', '대전']:
address[0]+='광역시'
if address[0] == '충북':
address[0] = '충청북도'
if address[0] == '충남':
address[0] = '충청남도'
if address[0] == '전남':
address[0] = '전라남도'
if address[0] == '전북':
address[0] = '전라북도'
if address[0] == '경남':
address[0] = '경상남도'
if address[0] == '경북':
address[0] = '경상북도'
if address[0] == '강원':
address[0]= '강원도'
if address[0] == '경기':
address[0] = '경기도'
if address[0] == '서울':
address[0] = '서울특별시'
addressS = ""
for x in address :
addressS += x+'_'
if x[len(x)-1] == '리' or x[len(x)-1] == '동':
break;
print(addressS)
curs.execute("CREATE TABLE if not exists " + addressS + "(name,dataX, dataY)")
curs.execute("insert into "+addressS+" values ('" + username + "', '" + addressX + "', '" + addressY + "')")
conn.commit()
conn.close()
data = "<h1>success<h1>"
return data
@app.route("/signIn", methods=['GET'])
def signIp_render():
return render_template('sign_in.html')
@app.route("/signIn", methods=['POST','GET'])
def signIn():
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER,userManageDB))
curs = conn.cursor()
username = request.form['id']
password = request.form['pw']
time = request.form['time']
global loginData
dbPassword = hashlib.md5(password.encode()).hexdigest()
curs.execute("SELECT * FROM userManage")
Access = False
for i in curs.fetchall():
if i[0] == username:
if i[1] == dbPassword:
Access = True
loginType[username] = i[2]
break
if (Access == False):
data = "<h1>fail<h1>"
return data
else :
userKey = str(hashlib.md5((username+time).encode()).hexdigest())
data = "<h1>success</h1>" + "<h1>" + userKey + "</h1>" + "<h1>" + loginType[username] + "</h1>"
loginData[username] = userKey
print(username + '#' + userKey)
resp = make_response(data)
resp.set_cookie(username, userKey)
conn.commit()
conn.close()
return resp
@app.route("/testData", methods=['GET'])
def testData_render():
return render_template('test_data.html')
def userAuthenticate(userKey, cookieKey):
print('\n' + "session" + str(cookieKey) + '\n')
print("user" + str(userKey) + '\n')
if str(cookieKey).lower() == str(userKey).lower():
return True
else :
return False
@app.route("/testData", methods=['POST','GET'])
def testData():
global loginData
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER,testDataDB))
curs = conn.cursor()
username = request.form['id']
if username in loginData:
userKey = loginData[username]
else :
return "<h1>wrong access<h1>"
if username in request.cookies:
cookieKey = request.cookies.get(username)
else :
return "<h1>wrong access<h1>"
Access= userAuthenticate(userKey, cookieKey)
curs.execute("SELECT * FROM testData")
if Access == False:
data = "<h1>wrong access<h1>"
elif Access == True:
data = "<h1>testData</h1>"
curs.execute("insert into testData values ('" + username + "', '" +"data1"+ "', '" +"data2"+"')")
curs.execute("SELECT * FROM testData")
for i in curs.fetchall():
if i[0] == username:
data = data + "<h1>" + str(i[1]) + str(i[2]) + "</h1>"
conn.commit()
conn.close()
return data
@app.route("/ownerItemUpload", methods=['GET'])
def ownerItemUpload_render():
return render_template('owner_item_upload.html')
@app.route("/ownerItemUpload", methods=['POST','GET'])
def ownerItemUpload():
global loginData
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER,storeManageDB))
curs = conn.cursor()
username = request.form['id']
itemName = request.form['itemName']
itemPrice = request.form['itemPrice']
itemEvent = request.form['event']
userKey = loginData[username]
if username in request.cookies:
cookieKey = request.cookies.get(username)
else :
return "<h1>wrong access<h1>"
Access= userAuthenticate(userKey, cookieKey)
if Access == False:
data = "<h1>wrong access<h1>"
elif Access == True:
if isOwner(username):
curs.execute("SELECT * FROM owner_" + username)
for i in curs.fetchall():
if i[0] == itemName:
data = "<h1>fail</h1>"
return data
data = "<h1>success</h1>"
curs.execute("insert into "+'owner_'+username+" values ('" + itemName + "', '" +itemPrice+ "', '" +itemEvent+"')")
curs.execute("SELECT * FROM owner_"+username)
for i in curs.fetchall():
if i[0] == itemName:
data = data + "<h1>" + str(i[0]) + str(i[1])+ str(i[2]) + "</h1>"
else :
data = '<h1>isNotOwner'
conn.commit()
conn.close()
return data
@app.route("/ownerItemDownload", methods=['GET'])
def ownerItemDownload_render():
return render_template('owner_item_download.html')
@app.route("/ownerItemDownload", methods=['POST','GET'])
def ownerItemDownload():
data = ""
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER,storeManageDB))
curs = conn.cursor()
username = request.form['id']
curs.execute("SELECT * FROM owner_" + username)
for i in curs.fetchall():
data += "<h1>"+i[0] +'!' + i[1]+'!'+ i[2]+"</h1>"
conn.commit()
conn.close()
return data
@app.route("/ownerItemDelete", methods=['GET'])
def ownerItemDelete_render():
return render_template('owner_item_delete.html')
@app.route("/ownerItemDelete", methods=['POST','GET'])
def ownerItemDelete():
data = ""
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER,storeManageDB))
curs = conn.cursor()
username = request.form['id']
itemName = request.form['itemName']
curs.execute("delete from owner_"+username+" where itemName="+" '"+itemName+"'")
conn.commit()
conn.close()
return data
@app.route("/ownerItemEdit", methods=['GET'])
def ownerItemEdit_render():
return render_template('owner_item_upload.html')
@app.route("/ownerItemEdit", methods=['POST','GET'])
def ownerItemEdit():
global loginData
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER,storeManageDB))
curs = conn.cursor()
username = request.form['id']
itemName = request.form['itemName']
itemPrice = request.form['itemPrice']
itemEvent = request.form['event']
userKey = loginData[username]
if username in request.cookies:
cookieKey = request.cookies.get(username)
else :
return "<h1>wrong access<h1>"
Access= userAuthenticate(userKey, cookieKey)
if Access == False:
data = "<h1>wrong access<h1>"
elif Access == True:
if isOwner(username):
curs.execute("SELECT * FROM owner_" + username)
for i in curs.fetchall():
if i[0] == itemName:
data = "<h1>fail</h1>"
return data
data = "<h1>success</h1>"
curs.execute("insert into "+'owner_'+username+" values ('" + itemName + "', '" +itemPrice+ "', '" +itemEvent+"')")
curs.execute("SELECT * FROM owner_"+username)
for i in curs.fetchall():
if i[0] == itemName:
data = data + "<h1>" + str(i[0]) + str(i[1])+ str(i[2]) + "</h1>"
else :
data = '<h1>isNotOwner'
conn.commit()
conn.close()
return data
def isOwner(ID):
if loginType[ID] == 'owner':
return True
else :
return False
@app.route("/loadStore", methods=['GET'])
def loadStore_render():
return render_template('load_store.html')
@app.route("/loadStore", methods=['POST','GET'])
def loadStore():
global loginData
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER,addressManageDB))
curs = conn.cursor()
address = request.form['address']
curs.execute("CREATE TABLE if not exists " + address + "(name,dataX, dataY)")
curs.execute("select * from "+address+"")
data = ""
for i in curs.fetchall():
data += "<h1>"+i[0]+'!'+i[1]+'!'+i[2]+"</h1>"
conn.commit()
conn.close()
return data
def isOwner(ID):
if loginType[ID] == 'owner':
return True
else :
return False
@app.route("/logout", methods=['GET'])
def logout_render():
return render_template('logout.html')
@app.route("/logout", methods=['POST','GET'])
def logout():
username = request.form['id']
if username in request.cookies:
resp = make_response()
resp.set_cookie(username, "null")
if username in loginData:
loginData[username] = None
loginType[username] = None
return "<h1>logout</h1>"
else :
return "<h1>error_not_login</h1>"
@app.route("/inputAddress", methods=['GET'])
def inputAddress_render():
return render_template('input_address(daum).html')
def DBinit():
if not os.path.isdir(UPLOAD_FOLDER):
os.mkdir(UPLOAD_FOLDER)
if not os.path.isfile(os.path.join(UPLOAD_FOLDER, userManageDB)):
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER, userManageDB))
curs = conn.cursor()
curs.execute("CREATE TABLE if not exists userManage(username, password, type)")
conn.commit()
conn.close()
if not os.path.isfile(os.path.join(UPLOAD_FOLDER, testDataDB)):
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER, testDataDB))
curs = conn.cursor()
curs.execute("CREATE TABLE if not exists testData(dataID,data1, data2)")
conn.commit()
conn.close()
if not os.path.isfile(os.path.join(UPLOAD_FOLDER, testDataDB)):
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER, testDataDB))
curs = conn.cursor()
curs.execute("CREATE TABLE if not exists testData(dataID,data1, data2)")
conn.commit()
conn.close()
if not os.path.isfile(os.path.join(UPLOAD_FOLDER, storeManageDB)):
conn = sqlite3.connect(os.path.join(UPLOAD_FOLDER, testDataDB))
curs = conn.cursor()
@app.route("/test", methods=['GET'])
def test():
return returnDataCU
@app.route("/testCU", methods=['GET'])
def testCU():
return returnDataCU
@app.route("/testGS25", methods=['GET'])
def testGS25():
return returnDataGS25
if __name__ == '__main__':
IP = str(socket.gethostbyname(socket.gethostname()))
DBinit()
returnDataCU = CC.updateCU()
returnDataGS25 = CC.updateGS25()
#t = threading.Thread(target=update_thread)
#t.start()
app.run(host = IP, port = 5010, debug=True)