์ธ์คํ๊ทธ๋จ UIํด๋ก ๋ฐฑ์๋๊ฐ๋ฐ + ํ๋ก ํธ ์ถ๊ฐ๊ฐ๋ฐ
: ์ด๋ฒ ํ๋ก์ ํธ๋ ํํ๋ก์ ํธ๋ก ์์ํฉ๋๋ค.
์๋์ ๊ฐ์ด ํ์๊ฐ์
์ ํ ๋ 5๊ฐ์ ๊ฐ์ ๋ฐ์ db์ ์ ์ฅํ๊ณ ,
'profile_pic_real'์๋ ๊ณ ์ ๋ ๊ธฐ๋ณธ ํ๋กํ์ด๋ฏธ์ง ๊ฐ์ ์ ์ฅํ๋ค.
# ํ์๊ฐ์
๊ธฐ๋ฅ
@app.route('/sign_up/save', methods=['POST'])
def sign_up():
id_receive = request.form['id_give']
name_receive = request.form['name_give']
username_receive = request.form['username_give']
pw_receive = request.form['pw_give']
pw_hash = hashlib.sha256(pw_receive.encode('utf-8')).hexdigest()
doc = {
'id': id_receive,
'name': name_receive,
'username': username_receive,
'pw': pw_hash,
'profile_pic_real': 'profile_pics/profile_placeholder.png'
}
db.users.insert_one(doc)
return jsonify({'result': 'success'})
๊ทผ๋ฐ ์ฌ๊ธฐ์ ๋ฌธ์ ๋ ๋ก๊ทธ์ธํ ๋ ๋ฐ๋ ๊ฐ์ id์ pw ๋จ ๋๊ฐ๋ฟ์ด์๊ณ , ๋ก๊ทธ์ธํ ์ ์๋ id๋ 'id'์ 'username' ๋ ๊ฐ ๋ชจ๋๋ก ์ค์ ํ๊ณ ์ถ์๋๋ฐ, python๋ฌธ๋ฒ์ ์ด๋ป๊ฒ ์ ์ฉ์์ผ์ผํ ์ง ๊ณ์ ๊ณ ๋ฏผํ๋ค ์๋์ ๊ฐ์ด if๋ฌธ์ ์ ์ฉํด์ ์ค์ ํ ์ ์์๋ค.
๐งฉ ์ ์ฉ ์์
# ๋ก๊ทธ์ธ๊ธฐ๋ฅ
@app.route('/sign_in', methods=['POST'])
def sign_in():
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({'id': id_receive, 'pw': pw_hash})
if result is None: # ์์ผ๋ฉด
result = db.users.find_one({'username': id_receive, 'pw': pw_hash})
print(result)
if result is not None: # ์์ผ๋ฉด
payload = {
'id': result['id'],
'exp': datetime.utcnow() + timedelta(seconds=60 * 60 * 24) # ๋ก๊ทธ์ธ 24์๊ฐ ์ ์ง
}
token = jwt.encode(payload, SECRET_KEY, algorithm='HS256')
return jsonify({'result': 'success', 'token': token})
# ์ฐพ์ง ๋ชปํ๋ฉด
else:
return jsonify({'result': 'fail', 'msg': '์์ด๋/๋น๋ฐ๋ฒํธ๊ฐ ์ผ์นํ์ง ์์ต๋๋ค.'})
๊ทผ๋ฐ ์ฌ๊ธฐ์ ๋๋ค๋ฅธ ๋ฌธ์ ๊ฐ ๋ฐ์ํ๋ค. ๋ก๊ทธ์ธ ํ์๋ ๋ฉ์ธํ์ด์ง์ ํ๋กํ์ฌ์ง๊ณผ ๊ฐ์ธํ์ด์ง๋ฅผ ์ด๋ํ ๋ ๋ฑ username์ ์ด์ฉํ์ฌ ์ฝ๋๋ฅผ ์งฐ๋๋ฐ, id๋ก ๋ก๊ทธ์ธ์ํ๋ฉด ํด๋น username์ด๋ ํ๋กํ ์ฌ์ง์ด ๋ณด์ด์ง ์๊ณ , username์ผ๋ก ๋ก๊ทธ์ธํ์๋๋ง ํด๋น ์ ์ ์ username๊ณผ ํ๋กํ์ฌ์ง์ด ๋ณด์๋ค.
๊ทธ๋์ ์๋์ ๊ฐ์ด my_info๋ณ์์ user_info๋ณ์๋ฅผ ์ด์ฉํด์ ๊ฐ์ ๊ฑธ๋ฌ๋ด์ด jinja๋ฅผ ์ด์ฉํ์ฌ html์์ ๊ตฌํํ ์ ์๋๋ก ํ๋ผ๋ฏธํฐ๋ก ๋๊ฒจ์ฃผ์๋ค.
๐งฉ ์ ์ฉ ์์
@app.route('/user/<username>')
def user(username):
token_receive = request.cookies.get('mytoken')
try:
payload = jwt.decode(token_receive, SECRET_KEY, algorithms=['HS256'])
my_info = db.users.find_one({"id": payload['id']}, {"_id": False}) # ๋ก๊ทธ์ธํ ์์ด๋๊ฐ db์ 'id'์ด๋ ๊ฐ์๊ฒ ์๋
status = (username == my_info['username']) # ๋ด ํ๋กํ์ด๋ฉด True, ๋ค๋ฅธ ์ฌ๋ ํ๋กํ ํ์ด์ง๋ฉด False / ์์ ์ ์ ์ ๋ค์ ๋์ผํ์ง
user_info = db.users.find_one({"username": username}, {"_id": False})
return render_template('detail.html', user_info=user_info, status=status)
except (jwt.ExpiredSignatureError, jwt.exceptions.DecodeError):
return redirect(url_for("home"))
์๋๋ ํ๋กํ์ด๋ฏธ์ง์ username์ jinja๋ฅผ ์ด์ฉํ์ฌ ์ ์ฉํ html์ด๋ค.
href๋ก ํด๋น์ ์ ์ ๊ฐ์ธํ์ด์ง๋ก ์ด๋ํ ์ ์๋๋ก ํจ๊ป ์ ์ฉํ๋ค.
<div class="right-body">
<div class="feed-name" style="flex-direction: row;">
<div class="big-profile-box">
<a href="/user/{{ user_info.username }}" > <img class="profile-img" style="cursor: pointer;"
src="{{ url_for('static', filename=user_info.profile_pic_real) }}"></a>
</div>
<div class="name-content">
<a class="feed-name-text" style="margin:20px 130px 0px 0px;"
href="/user/{{ user_info.username }}" >{{ user_info.username }}</a>
</div>
menu modal
๋ก๊ทธ์ธ์ ์ ์ ๋ฉ์ธํ์ด์ง
ํํฐ๋๋ค๊ป์ ๋ก๊ทธ์ธ๊ธฐ๋ฅ๊ณผ ํ์๊ฐ์
๊ธฐ๋ฅ์ ๊ธฐ๋ณธ์ค์ ๊ธฐ๋ณธ์ด๋ผ๊ณ ํ์
จ๋๋ฐ, ์ฒ์์ผ๋ก ๊ตฌํํด๋ณธ ๊ธฐ๋ฅ์ด๋ผ ์ดํดํ๋ ์๊ฐ์ด ๋ง์ด ํ์ํด์ ์๊ฐ์ด ์ค๋ ๊ฑธ๋ ธ๋ค. ๐
ํ์ง๋ง ํ๋ฃจ๋ง์ ๊ตฌํํ๊ฒ ์น๊ณ ๋ ๋นจ๋ฆฌ ๊ตฌํํ๋ค๊ณ ๊ธ์ ์ ์ผ๋ก ์๊ฐํ๊ณ ์ถ๋ค.
ํ์๋ค๋ ๋ค๋ค ๋์ฒ๋ผ ์ฒ์ํด๋ณด๋ ๊ธฐ๋ฅ์ด๋ผ ์ดํดํ๋๋ฐ ์๊ฐ์ด ์ข ํ์ํด๋ณด์๋ค.
ํ์๋ค๊ณผ ๊ธฐ๋ฅ์ ๊ฐ์ ๋ถ๋ดํ์ฌ ์งํ์ค์ด๊ธดํ๋, ๋ด์ผ ๋ด๊ฐ ๋งก์ ๋ง์ง๋ง๊ธฐ๋ฅ์ธ ๋ก๊ทธ์์๊ธฐ๋ฅ์ ๋นจ๋ฆฌ ๋๋ด๊ณ ํด๋ณด๊ณ ์ถ์๋ ์ข์์ ๋ฐ ์ ์ฅ๊ธฐ๋ฅ์ ๊ตฌํํด๋ด์ผํ ๊ฒ๊ฐ๋ค.
๐ ์์ธํ ์ฝ๋๋ Moonmoo ์ ๊ฒ์ํ์ต๋๋ค
๋ก๊ทธ์ธ ๊ณผ์ ์ ์ดํดํ๋ ๊ฑด ๋ฌผ๋ก ์ด๋ ต์ง๋ง! ํ ๋ฒ ์ดํดํ๋ฉด ๋ชจ๋ ์๋น์ค์์ ์ฐ์ด๋ ๊ณตํต ๊ธฐ๋ฅ์ด๋ ์ถฉ๋ถํ ์ค๋ ๊ธฐ๊ฐ ํ์ตํ์ ๋ ์ข์ต๋๋ค!! ํ์ดํ ์ ๋๋ค!!