Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/#206 서버사이드 로그인 기능 개발 #207

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open

Conversation

ylem76
Copy link
Member

@ylem76 ylem76 commented Aug 17, 2024

resolved: #206

로그인 수정했습니다.

  • axios client/server두 가지로 나눔
  • login actions(react server action)으로 로그인 처리 -> 서버 axios instance
  • 클라이언트에서 호출하는 api 대응 -> 클라이언트 axios instance
  • 미들웨어 추가
  • cookie로 토큰 데이터 관리

요 정도 수정한 것 같습니다.

제가 수정한 기존 소스는
기존에 로그인 하면서 대시보드 데이터와 유저 데이터도 같이 세션 스토리지에 저장하고 있었는데,
유저 데이터는 세션 스토리지에 저장하는 걸 getUser하는 부분으로 옮김
(대시보드 데이터는 따로 처리하지 않았는데 잘 나오네요)
기존 useRedirect 주석 처리

꼭 머지하려는 건 아니고 이런 방식으로 구현하는 방법 연구했다고 생각해주심 될 거 같습니다.
참고 : https://www.youtube.com/watch?v=INwOeQ0RagY

제가 어렵게 생각했던 부분이

  1. 쿠키 set하는 방법
  2. axios interceptor 처리
  3. server action 작성 및 사용

이 세 가지 정도로 정리할 수 있을 것 같은데,
axios 클라이언트를 분리해야한다는 생각을 못해서 axios 인터셉터가 여기저기 꼬이다보니까
이것들을 어떻게 처리해야할지 고민이 많았습니다.
특히 2번이 이해가 잘 안 가다 보니까 전체적인 그림을 어떻게 그려야할 지 몰라서 많이 헤맸는데, 분리가 답이었네요

httpOnly옵션을 써서 서버사이드에서만 적용할 수 있도록 작성해볼까 했는데, 이미 클라이언트에서 api호출을 다 하고 있어 전체적인 구조 변경이 불가피 하더라구요
그래서 일단 두 가지로 이원화해봤습니다.

Copy link

vercel bot commented Aug 17, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
taskify ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 17, 2024 7:25am

Copy link

netlify bot commented Aug 17, 2024

Deploy Preview for taskify-deploy ready!

Name Link
🔨 Latest commit 2a34546
🔍 Latest deploy log https://app.netlify.com/sites/taskify-deploy/deploys/66c050855c95ca00087cf877
😎 Deploy Preview https://deploy-preview-207--taskify-deploy.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Contributor

@KingNono1030 KingNono1030 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

로그인 기능에 대해 큰 고민 없이 접근 했어서, 로그인 기능 리팩토링에 대한 욕심이 있었는데

효정님께서 좋은 예시가 되어 주셔서, 저도 자극 받고 리팩토링 힘내보겠습니다..!

Comment on lines +1 to +25
'use server'
import { cookies } from 'next/headers'
import { redirect } from 'next/navigation'

import api from '@/lib/axiosServer'

import { LoginFormValue } from './components/LoginForm'

export default async function loginAction(data: LoginFormValue) {
// 백엔드 요청
try {
const response = await api.post('/auth/login', data, {})
const { accessToken, user } = response.data

// 가져온 json token 쿠키 설정 하기
cookies().set('Authorization', accessToken, {
secure: true,
// httpOnly: true,
expires: new Date(Date.now() + 24 * 60 * 60 * 1000 * 3),
// path: '/',
sameSite: 'strict',
})
} catch (error: any) {
return error.response?.data?.message || error.message
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

서버 액션 이렇게 적용하는 거군요...!
감사합니다 큰 공부가 되네요

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feat/ 서버사이드 로그인 기능 개발
2 participants