-
Notifications
You must be signed in to change notification settings - Fork 3
/
database.py
419 lines (385 loc) · 14.9 KB
/
database.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
import pyrebase
import json
from datetime import datetime
class DBhandler:
def __init__(self) :
with open('./authentication/firebase_auth.json') as f:
config=json.load(f)
firebase = pyrebase.initialize_app(config)
self.db = firebase.database()
def restaurant_duplicate_check(self, name):
restaurants = self.db.child("restaurant").get()
for res in restaurants.each():
value = res.val()
if value['맛집이름'] == name:
return False
return True
def menu_duplicate_check(self, rest, name):
menus = self.db.child("menu").get()
for men in menus.each():
value = men.val()
if value['맛집이름'] == rest:
if value['메뉴이름'] == name:
return False
return True
#맛집등록
def add_restaurant(self, name, data, img_path):
restaurant_info ={
"맛집이름":name,
"음식종류":data.getlist('음식종류'),
"vegan":data['vegan'],
"pricerange":data['pricerange'],
"location":data['location'],
"address":data['address'],
"phonenum":data['phonenum'],
"othersite":data['othersite'],
"parking":data['parking'],
"mondaytime":data['mondaytime'],
"tuesdaytime":data['tuesdaytime'],
"wednesdaytime":data['wednesdaytime'],
"thursdaytime":data['thursdaytime'],
"fridaytime":data['fridaytime'],
"saturdaytime":data['saturdaytime'],
"sundaytime":data['sundaytime'],
"isBreaktime":data['isBreaktime'],
"breakday":data.getlist('breakday'),
"평점":0,
"likes":0,
"theme":0,
"timestamp":datetime.now().strftime('%Y-%m-%d %H:%M:%S'),
"img_path":img_path
}
print(restaurant_info)
if self.restaurant_duplicate_check(name):
self.db.child("restaurant").push(restaurant_info)
print(data,img_path)
return True
else :
return False
#댓글등록
def add_comment(self, restaurant, data, id, nickname):
comment_info ={
"맛집이름":restaurant,
"댓글내용":data['comment'],
"writer":id,
"작성자":nickname,
}
print(comment_info)
if self.db.child("comment").push(comment_info):
return True
else :
return False
#리뷰등록
def add_review(self, name, data, id, nickname, img_path):
review_info ={
"맛집이름":name,
"메뉴이름":data['메뉴이름'],
"평점":int(data['평점']),
"timePeriod":data['timePeriod'],
"waiting":data['waiting'],
"리뷰작성내용":data['리뷰작성내용'],
"img_path":img_path,
"writer":id,
"작성자":nickname,
"timestamp":datetime.now().strftime('%Y-%m-%d'),
}
print(review_info)
restaurants = self.db.child("restaurant").get()
for res in restaurants.each():
value = res.val()
if value['맛집이름'] == name:
key = res.key()
reviews=DBhandler.get_reviews(self, name)
total=len(reviews)
num=float((int(data['평점'])+total*float(value['평점']))/(total+1))
print(num)
self.db.child("restaurant").child(key).update({"평점": float((int(data['평점'])+total*float(value['평점']))/(total+1))})
self.db.child("review").push(review_info)
print(data,img_path)
return True
#대표메뉴등록
def add_menu(self, name, data, img_path):
print(name)
menu_info ={
"맛집이름":name,
"메뉴이름":data['메뉴이름'],
"img_path":img_path,
"가격":data['가격'],
"allergyinfo":data['allergyinfo'],
"vegan":data['vegan'],
"etcinfo":data['etcinfo'],
"한줄소개":data['한줄소개'],
}
print(menu_info)
if self.menu_duplicate_check(name, data['메뉴이름']):
self.db.child("menu").push(menu_info)
print(data,img_path)
return True
else :
return False
#레스토랑 테이블 가져오기
def get_restaurants(self ):
restaurants = self.db.child("restaurant").get().val()
return restaurants
#맛집이름으로 맛집 정보 가져오기
def get_restaurant_byname(self, name):
restaurants = self.db.child("restaurant").get()
target_value=""
for res in restaurants.each():
value = res.val()
if value['맛집이름'] == name:
target_value=value
return target_value
#댓글 테이블 가져오기
def get_comments(self, name):
comments = self.db.child("comment").get()
target_value={}
for com in comments.each():
value = com.val()
if value['맛집이름'] == name:
writer=value['작성자']
target_value[writer]=dict((list(value.items())))
print(target_value)
return target_value
#조건별 맛집 가져오기
def get_restaurants_bycondition(self, location, foodtype, search, theme):
if search : #검색 기능
restaurants = self.db.child("restaurant").get()
target_value=[]
for res in restaurants.each():
value = res.val()
if value['맛집이름'] == search:
target_value.append(value)
print("######target_value",target_value)
new_dict={}
for k,v in enumerate(target_value):
new_dict[k]=v
return new_dict
elif theme>0:
restaurants = self.db.child("restaurant").get()
target_value=[]
for res in restaurants.each():
value = res.val()
if value['theme'] == theme:
if value['location'] == location or location=="all" :
if foodtype=="all":
target_value.append(value)
else :
for food in value['음식종류']:
if food == foodtype :
target_value.append(value)
print("######target_value",target_value)
new_dict={}
for k,v in enumerate(target_value):
new_dict[k]=v
return new_dict
elif location=="all" and foodtype=="all" : #전체 조회
restaurants = self.db.child("restaurant").get().val()
return restaurants
elif location or foodtype :
restaurants = self.db.child("restaurant").get()
target_value=[]
for res in restaurants.each():
value = res.val()
if value['location'] == location or location=="all" :
if foodtype=="all":
target_value.append(value)
else :
for food in value['음식종류']:
if food == foodtype :
target_value.append(value)
new_dict={}
for k,v in enumerate(target_value):
new_dict[k]=v
return new_dict
else :
restaurants = self.db.child("restaurant").get().val()
return restaurants
#리뷰 테이블 가져오기
def get_reviews(self, name):
reviews = self.db.child("review").get()
target_value={}
for rev in reviews.each():
value = rev.val()
if value['맛집이름'] == name:
writer=value['img_path']
target_value[writer]=dict((list(value.items())))
print(target_value)
return target_value
#메뉴 테이블 가져오기
def get_menus(self, name):
menus = self.db.child("menu").get()
target_value={}
for men in menus.each():
value = men.val()
if value['맛집이름'] == name:
menu=value['메뉴이름']
target_value[menu]=dict((list(value.items())))
print(target_value)
return target_value
#유저 테이블 가져오기
def get_users(self, id):
users = self.db.child("user").get()
target_value={}
for use in users.each():
value = use.val()
if value['id'] == id:
user=value['nickname']
target_value[user]=dict((list(value.items())))
print(target_value)
return target_value
#찜 기능
def my_fav_list(self, name, id):
users = self.db.child("user").get()
for use in users.each():
value=use.val()
if value['id'] == id:
key = use.key()
if "isFavorite" in value:
for favs in value['isFavorite']:
fav=value['isFavorite'][favs]
key = use.key()
if name==fav:
self.db.child("user").child(key).child("isFavorite").child(favs).remove()
return True
key = use.key()
self.db.child("user").child(key).child("isFavorite").push(name)
return True
else :
self.db.child("user").child(key).update({"isFavorite":{"FirstZzim":name}})
return True
#찜 여부 확인하기
def check_my_fav_list(self, name, id):
users = self.db.child("user").get()
for use in users.each():
user = use.val()
if user['id']==id:
if "isFavorite" in user:
for favs in user['isFavorite']:
fav=user['isFavorite'][favs]
if name == fav:
return True
return False
def check_my_fav_lists(self, names, id):
users = self.db.child("user").get()
print(names)
n=len(names)
print(n)
target_value={}
for use in users.each():
user = use.val()
if user['id']==id:
if "isFavorite" in user:
for favs in user['isFavorite']:
fav=user['isFavorite'][favs]
for key, val in names.items():
restaurant=names[key]['맛집이름']
if restaurant == fav:
print(restaurant)
target_value.update({fav: True})
for key, val in names.items():
if (names[key]['맛집이름'] in target_value)==False:
target_value.update({names[key]['맛집이름']: False})
print(target_value)
return target_value
for key, val in names.items():
target_value.update({names[key]['맛집이름']: False})
print(target_value)
return target_value
#찜목록 가져오기
def get_my_fav_list(self, id, location, foodtype):
users = self.db.child("user").get()
restaurants = self.db.child("restaurant").get()
target_value=[]
for use in users.each():
user = use.val()
if user['id']==id:
if "isFavorite" in user:
for favs in user['isFavorite']:
fav=user['isFavorite'][favs]
for res in restaurants.each():
value = res.val()
if value['맛집이름'] == fav:
if value['location'] == location or location=="all" :
if foodtype=="all":
target_value.append(value)
else :
for food in value['음식종류']:
if food == foodtype :
target_value.append(value)
else:
return False
new_dict={}
for k,v in enumerate(target_value):
new_dict[k]=v
return new_dict
#좋아요 수
def like_num(self, name):
restaurant = self.db.child("restaurant").get()
for res in restaurant.each():
value=res.val()
if value['맛집이름'] == name:
key = res.key()
num=int(value['likes'])+1
print(num)
self.db.child("restaurant").child(key).update({"likes": int(value['likes'])+1})
return True
#내가 쓴 리뷰 가져오기
def get_myreviews(self, id):
reviews = self.db.child("review").get()
target_value={}
for rev in reviews.each():
value = rev.val()
if value['writer'] == id:
key=value['리뷰작성내용']
target_value[key]=dict((list(value.items())))
print(target_value)
return target_value
#회원가입
def insert_user(self, data, pw):
user_info={
"id":data['id'],
"pw":pw,
"nickname":data['nickname'],
}
if self.user_duplicate_check(str(data['id'])):
self.db.child("user").push(user_info)
print(data)
return True
else:
return False
def user_duplicate_check(self, id_string):
users=self.db.child("user").get()
print("users###", users.val())
if str(users.val()) == "None":
return True
else:
for res in users.each():
value=res.val()
if value['id']==id_string:
return False
return True
#로그인
def find_user(self, id, pw):
users = self.db.child("user").get()
for res in users.each():
value = res.val()
if value['id'] == id and value['pw'] == pw:
return True
return False
def get_nickname(self, id, pw):
users = self.db.child("user").get()
for res in users.each():
value = res.val()
if value['id'] == id and value['pw'] == pw:
return value['nickname']
#탈퇴하기
def withdrawl(self, id, pw):
users = self.db.child("user").get()
for res in users.each():
value = res.val()
key = res.key()
if value['id'] == id and value['pw'] == pw:
self.db.child("user").child(key).remove()
return True
return False