-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.py
523 lines (426 loc) · 18.2 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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
import boto3
import pymongo
import requests
from bson.objectid import ObjectId
from flask import Flask, render_template, jsonify, request, session, redirect, url_for
from pymongo import MongoClient
from datetime import datetime, timedelta
import certifi
import jwt
import hashlib
app = Flask(__name__)
# [안웅기] 개인적인 맥 로컬 환경에 DB 접속 오류로 인한 추가
ca = certifi.where()
client = MongoClient('mongodb+srv://team5:[email protected]/Cluster0?retryWrites=true&w=majority',
tlsCAFile=ca)
db = client['yogi-eoddae']
# [안웅기 ]JWT 토큰을 만들 때 필요한 문자열.
SECRET_KEY = 'TEAMFIVE'
# [양명규] NAVER MAP API 호출 시 필요한 문자열
MAP_CLIENT_ID = 'bb11xjscda'
MAP_CLIENT_SECRET_KEY = '7Jpoj7foQyXXfDXEdUSxlCM2wd9LG5d5WQHbv24k'
# [양명규] 포스트 정렬 타입 리스트 정의
SORT_TYPE = ['date', 'view', 'recommend']
# s3 관련
ACCESS_KEY_ID = 'AKIAXX6AEBP75R7DMAON' # 액세스 키 (효원 문의)
ACCESS_SECRET_KEY = 'hEaHB+f8yJY7003yn2nT0znN+6/5hnnndvMUh0+p'
BUCKET_NAME = 'yogi-eoddae-bucket'
# [양명규] 이미지 저장 서버 주소
AWS_BUCKET_PATH = f'https://{BUCKET_NAME}.s3.ap-northeast-2.amazonaws.com/'
def s3_connection():
s3 = boto3.client('s3',
aws_access_key_id=ACCESS_KEY_ID,
aws_secret_access_key=ACCESS_SECRET_KEY)
return s3
s3 = s3_connection()
# ================= 멤버십(회원, 로그인, 인증) 관련 API =================
@app.route('/login')
def login():
msg = request.args.get("msg")
return render_template('login.html', msg=msg)
# [안웅기] 로그인을 위한 API
# [안웅기] 로그인 API
@app.route('/api/login', methods=['POST'])
def api_login():
id_receive = request.form['id_give']
pw_receive = request.form['pw_give']
pw_hash = hashlib.sha256(pw_receive.encode('utf-8')).hexdigest()
result = db.users.find_one({'user_id': id_receive, 'user_pw': pw_hash})
if result is not None:
payload = {
'id': id_receive,
'exp': datetime.utcnow() + timedelta(hours=24)
}
token = jwt.encode(payload, SECRET_KEY, algorithm='HS256')
# token을 줍니다.
return jsonify({'result': 'success', 'token': token})
# 찾지 못하면
else:
return jsonify({'result': 'fail', 'msg': '아이디/비밀번호가 일치하지 않습니다.'})
@app.route('/register')
def register():
return render_template('register.html')
# [안웅기] 회원가입 API
@app.route('/api/register', methods=['POST'])
def api_register():
id_receive = request.form['id_give']
pw_receive = request.form['pw_give']
nickname_receive = request.form['nickname_give']
pw_hash = hashlib.sha256(pw_receive.encode('utf-8')).hexdigest()
db.users.insert_one({'user_id': id_receive, 'user_pw': pw_hash, 'nickname': nickname_receive})
return jsonify({'result': 'success'})
# [안웅기] 아이디 중복확인
@app.route('/api/register/check-dup', methods=['POST'])
def check_dup():
# ID 중복확인
id_receive = request.form['id_give']
result = db.users.find_one({'user_id': id_receive})
if result:
return jsonify({'result': 'exist'})
else:
return jsonify({'result': 'success'})
# [안웅기] 토큰 리퀘스트 요청한 클라이언트의 토큰을 반환
# 첫번째 반환값 int : 1 - 로그인 상태, 2 - 로그인 기한 만료, 3 - 로그인 하지 않은 상태
# 두번째 반환값 str : 로그인 상태일 경우 해당 유저의 아이디를 반환, 아닐 경우 빈칸
def token_request():
token_receive = request.cookies.get('mytoken')
cur_status = 0
cur_id = ''
try:
payload = jwt.decode(token_receive, SECRET_KEY, algorithms=['HS256'])
cur_status = 1
cur_id = payload['id']
except jwt.ExpiredSignatureError:
cur_status = 2
except jwt.exceptions.DecodeError:
cur_status = 3
return cur_status, cur_id
# [안웅기] 현재 로그인 상태 valid 체크
# 로그인이 되어있으면 'result'로 'success'와 'id' 값을 반환
# 안되어 있으면 'result'로 'fail'과 'msg' 값을 반환
@app.route('/api/check', methods=['GET'])
def api_valid():
token_receive = request.cookies.get('mytoken')
try:
payload = jwt.decode(token_receive, SECRET_KEY, algorithms=['HS256'])
return jsonify({'result': 'success', 'id': payload['id']})
except jwt.ExpiredSignatureError:
return jsonify({'result': 'fail', 'msg': '로그인 시간이 만료되었습니다.'})
except jwt.exceptions.DecodeError:
return jsonify({'result': 'fail', 'msg': '로그인 하세요.'})
# [안웅기] HTML 페이지 렌더링
@app.route('/')
def home():
cur_status, cur_id = token_request()
result = {'status': cur_status}
# [안웅기] 정렬 방식을 위한 query string
order = request.args.get('orderby')
mypost = request.args.get('mypost')
# 예외처리
if order == None:
order = 'new'
if mypost == None or cur_status != 1:
mypost = '0'
post_list = load_posts(order, mypost, cur_id)
if len(post_list) > 0:
for post in post_list:
post['_id'] = str(post['_id'])
result['posts'] = post_list
result['order'] = order
result['mypost'] = mypost
result['MAP_CLIENT_ID'] = MAP_CLIENT_ID
return render_template('index.html', result=result)
# ================= 게시글 관련 API =================
# [신효원]
# 수정 - [안웅기] 내가 쓴 글 정렬을 위한 파라미터 추가
def load_posts(type='new', mypost=0, user_id=''):
if mypost == '0':
if type == 'new':
return list(db.posts.find({}).sort('date', pymongo.DESCENDING)) # 정렬 없음
else:
return list(db.posts.find({}).sort(type, pymongo.DESCENDING)) # 최신순
else:
return my_listing(type, user_id)
# [신효원]
# 수정 - [안웅기] 내가 쓴 글 정렬을 위한 파라미터 추가
def my_listing(type, user_id):
if type == 'new':
post = list(db.posts.find({'user_id': user_id}).sort('date', pymongo.DESCENDING)) # 최신순
elif type == 'view':
post = list(db.posts.find({'user_id': user_id}).sort('view', pymongo.DESCENDING)) # 조회수 순
elif type == 'recommend':
post = list(db.posts.find({'user_id': user_id}).sort('recommend', pymongo.DESCENDING)) # 추천수 순
else:
post = list(db.posts.find({'user_id': user_id})) # 정렬 없음
return post
# 타입을 파라미터로 받음 -> date, view, recommend
@app.route('/post/<type>', methods=['GET'])
def all_listing(type):
if type in SORT_TYPE:
posts = load_posts(type)
else:
posts = load_posts()
return jsonify({'all_posts': posts})
@app.route('/posting')
def posting():
cur_status, cur_user_id = token_request()
result = {'status': cur_status}
return render_template('posting.html', result=result)
# [안웅기] 상세페이지 렌더링
# 포스트 아이디를 받아와 상세페이지 서버사이드 렌더링
@app.route('/detail/<post_id>')
def detail(post_id):
token_receive = request.cookies.get('mytoken')
cur_status, cur_user_id = token_request()
recommend_status = True
post = db.posts.find_one({'_id': ObjectId(post_id)})
post['recommend_count'] = len(post['recommend'])
for recommend_id in post['recommend']:
if recommend_id == cur_user_id:
recommend_status = False
result = {'status': cur_status, 'user_id': cur_user_id, 'recommend_status' : recommend_status}
review_list = list(db.reviews.find({'post_id': ObjectId(post_id)}))
for review in review_list:
review['date'] = review['date'].strftime("%Y-%m-%d %H:%M") # 밀리초 제거
review['_id'] = str(review['_id'])
return render_template('detail.html', reviews=review_list, result=result, post=post)
# [양명규] 게시글 수정 페이지
@app.route('/detail/<post_id>/edit')
def edit(post_id):
cur_status, cur_user_id = token_request()
post = db.posts.find_one({'_id': ObjectId(post_id)})
result = {'status': cur_status, 'user_id': cur_user_id, 'post': post}
# mode로 posting.html에서 작성/수정 구분
return render_template('posting.html', mode='edit', result=result)
# [노정민] 게시글 작성
@app.route('/api/post', methods=['POST'])
def save_posting():
# posting.html에서 데이터를 받아 db에 저장
title_receive = request.form['title_give']
content_receive = request.form['content_give']
location_receive = request.form['location_give']
token_receive = request.cookies.get('mytoken')
payload = jwt.decode(token_receive, SECRET_KEY, algorithms=['HS256'])
doc = {
'title': title_receive,
'date': datetime.now(),
'user_id': payload['id'],
'content': content_receive,
'location': location_receive,
'view': 0,
'recommend': []
}
# [양명규] 파일 첨부 했을 때만 서버에 파일 업로드
if len(request.files) > 0:
file = request.files['file_give']
extension = file.filename.split('.')[-1]
today = datetime.now()
mytime = today.strftime('%Y-%m-%d-%H-%M-%S')
filename = f'post id-{mytime}.{extension}'
s3.put_object(
ACL="public-read",
Bucket=BUCKET_NAME,
Body=file,
Key=filename,
ContentType=file.content_type)
doc['file'] = AWS_BUCKET_PATH + filename
doc['origin_file_name'] = file.filename
# [양명규] 입력한 주소(location)를 x,y 좌표로 변환
headers = {
"X-NCP-APIGW-API-KEY-ID": MAP_CLIENT_ID,
"X-NCP-APIGW-API-KEY": MAP_CLIENT_SECRET_KEY
}
r = requests.get(f"https://naveropenapi.apigw.ntruss.com/map-geocode/v2/geocode?query={location_receive}",
headers=headers)
response = r.json()
# [양명규] 입력한 주소(location)가 x,y 좌표로 변환할 수 있는지 체크
status = True
fail_msg = '올바른 주소를 입력해주세요.'
if response["status"] == "OK":
if len(response["addresses"]) > 0 and response["addresses"][0]["addressElements"][-1]['longName'] != '':
# 동작구 우편번호 범위 06900 ~ 07074
postal_code = int(response["addresses"][0]["addressElements"][-1]['longName'])
if postal_code >= 7074 or postal_code < 6900 :
status = False
fail_msg = '동작구에 해당하는 주소를 입력해주세요.'
else:
x = float(response["addresses"][0]["x"])
y = float(response["addresses"][0]["y"])
doc['point'] = {'x': x, 'y': y}
else:
status = False
else:
status = False
if status is False:
return jsonify({'result': 'fail', 'msg': fail_msg})
else:
db.posts.insert_one(doc)
return jsonify({'result': 'success','msg': '저장 완료!'})
# [노정민] 포스팅 삭제
@app.route('/api/post', methods=['DELETE'])
def post_delete():
id_receive = request.form['id_give']
post = list(db.posts.find_one({'_id': ObjectId(id_receive)}))
# 로그인된 user_id와 posts에 저장된 user_id 비교
if post:
db.posts.delete_one({'_id': ObjectId(id_receive)})
return jsonify({'result': 'success'})
else:
return jsonify({'result': 'fail', 'msg': '삭제에 실패하였습니다.'})
# [양명규] 게시글 수정
@app.route('/api/post', methods=['PUT'])
def post_edit():
id_receive = request.form['id_give']
title_receive = request.form['title_give']
location_receive = request.form['location_give']
content_receive = request.form['content_give']
# 파일 첨부 했을 때만 서버에 파일 업로드
if len(request.files) > 0:
file_receive = request.files['file_give']
extension = file_receive.filename.split('.')[-1]
today = datetime.now()
mytime = today.strftime('%Y-%m-%d-%H-%M-%S')
filename = f'post id-{mytime}.{extension}'
s3.put_object(
ACL="public-read",
Bucket=BUCKET_NAME,
Body=file_receive,
Key=filename,
ContentType=file_receive.content_type)
file = AWS_BUCKET_PATH + filename
origin_file_name = file_receive.filename
else:
file = request.form['file_give']
origin_file_name = request.form['file_name_give']
# [양명규] 입력한 주소(location)를 x,y 좌표로 변환
headers = {
"X-NCP-APIGW-API-KEY-ID": MAP_CLIENT_ID,
"X-NCP-APIGW-API-KEY": MAP_CLIENT_SECRET_KEY
}
r = requests.get(f"https://naveropenapi.apigw.ntruss.com/map-geocode/v2/geocode?query={location_receive}",
headers=headers)
response = r.json()
# [양명규] 입력한 주소(location)가 x,y 좌표로 변환할 수 있는지 체크
status = True
fail_msg = '수정에 실패하였습니다.'
if response["status"] == "OK":
if len(response["addresses"]) > 0 and response["addresses"][0]["addressElements"][-1]['longName'] != '':
# 동작구 우편번호 범위 06900 ~ 07074
postal_code = int(response["addresses"][0]["addressElements"][-1]['longName'])
if postal_code >= 7074 or postal_code < 6900:
status = False
fail_msg = '동작구에 해당하는 주소를 입력해주세요.'
else:
x = float(response["addresses"][0]["x"])
y = float(response["addresses"][0]["y"])
point = {'x': x, 'y': y}
else:
status = False
fail_msg = '올바른 주소를 입력해주세요.'
else:
status = False
fail_msg = '올바른 주소를 입력해주세요.'
# 현재 게시글 정보 db에 있는지 확인
post = db.posts.find_one({'_id': ObjectId(id_receive)})
if post is None:
status = False
if status is False:
return jsonify({'result':'fail', 'msg': fail_msg})
else:
db.posts.update_one(
{'_id': ObjectId(id_receive)},
{'$set': {
'title': title_receive, 'location': location_receive, 'content': content_receive, 'file': file,
'origin_file_name': origin_file_name, 'point': point}
})
return jsonify({'result': 'success'})
# [안웅기] 추천하기
@app.route('/api/post-recommend', methods=['POST'])
def post_recommend():
cur_status, cur_user_id = token_request()
id_receive = request.form['id_give']
result = db.posts.find_one({'_id': ObjectId(id_receive)})
#[안웅기] 현재 포스트에 유저가 이미 추천했는지 확인
if cur_status == 1:
if cur_user_id in result['recommend']:
return jsonify({'result': 'fail', 'msg': '이미 추천하셨습니다.'})
else:
# db에 유저 아이디값 푸시
db.posts.update_one({'_id': ObjectId(id_receive)}, {'$push': {'recommend': cur_user_id}})
return jsonify({'result': 'success'})
elif cur_status == 2:
return jsonify({'result': 'fail', 'msg': '로그인 시간이 만료되었습니다.'})
else:
return jsonify({'result': 'fail', 'msg': '로그인 하세요.'})
# [안웅기] 추천해제
@app.route('/api/post-recommend', methods=['DELETE'])
def post_unrecommend():
cur_status, cur_user_id = token_request()
id_receive = request.form['id_give']
result = db.posts.find_one({'_id': ObjectId(id_receive)})
if cur_status == 1:
if cur_user_id in result['recommend']:
db.posts.update_one({'_id': ObjectId(id_receive)}, {'$pull': {'recommend': cur_user_id}})
return jsonify({'result': 'success'})
else:
return jsonify({'result': 'fail', 'msg': '이미 추천하셨습니다.'})
elif cur_status == 2:
return jsonify({'result': 'fail', 'msg': '로그인 시간이 만료되었습니다.'})
else:
return jsonify({'result': 'fail', 'msg': '로그인 하세요.'})
# [안웅기] 뷰 수 추가
@app.route('/api/post-view', methods=['POST'])
def post_view():
cur_status, cur_user_id = token_request()
id_receive = request.form['id_give']
result = db.posts.find_one({'_id': ObjectId(id_receive)})
if cur_status == 1:
db.posts.update_one({'_id': ObjectId(id_receive)}, {'$set': {'view': result['view'] + 1}})
return jsonify({'result': 'success'})
elif cur_status == 2:
return jsonify({'result': 'fail', 'msg': '로그인 시간이 만료되었습니다.'})
else:
return jsonify({'result': 'fail', 'msg': '로그인 하세요.'})
# [안웅기] 리뷰 API
# [안웅기] 리뷰 작성
@app.route('/api/review', methods=['POST'])
def review_post():
cur_status, cur_user_id = token_request()
comment_receive = request.form['comment_give']
id_receive = request.form['id_give']
doc = {
'post_id': ObjectId(id_receive),
'user_id': cur_user_id,
'comment': comment_receive,
'date': datetime.now()
}
if cur_status == 1:
db.reviews.insert_one(doc)
return jsonify({'result': 'success'})
elif cur_status == 2:
return jsonify({'result': 'fail', 'msg': '로그인 시간이 만료되었습니다.'})
else:
return jsonify({'result': 'fail', 'msg': '로그인 하세요.'})
# [안웅기] 리뷰 삭
@app.route('/api/review', methods=['DELETE'])
def review_delete():
id_receive = request.form['id_give']
review = list(db.reviews.find_one({'_id': ObjectId(id_receive)}))
if review:
db.reviews.delete_one({'_id': ObjectId(id_receive)})
return jsonify({'result': 'success'})
else:
return jsonify({'result': 'fail', 'msg': '실패쓰'})
# [안웅기] 리뷰 수정
@app.route('/api/review', methods=['PUT'])
def review_edit():
id_receive = request.form['id_give']
comment_receive = request.form['comment_give']
review = list(db.reviews.find_one({'_id': ObjectId(id_receive)}))
if review:
db.reviews.update_one({'_id': ObjectId(id_receive)}, {'$set': {'comment': comment_receive}})
return jsonify({'result': 'success'})
else:
return jsonify({'result': 'fail', 'msg': '실패쓰'})
if __name__ == '__main__':
app.run('0.0.0.0', port=5000, debug=True)