Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
students
survey
Commits
f781c7d8
Commit
f781c7d8
authored
Dec 30, 2022
by
Jiwon Yoon
Browse files
카카오로그인
parent
fda21b20
Changes
3
Hide whitespace changes
Inline
Side-by-side
frontend/src/auth/OAuthRedirectHandler.tsx
View file @
f781c7d8
import
React
,
{
useEffect
,
useState
}
from
"
react
"
;
import
{
useNavigate
}
from
"
react-router-dom
"
;
import
{
authApi
}
from
"
../apis
"
;
import
{
catchErrors
}
from
"
../helpers
"
;
const
LOCAL_USER_INFO
=
"
survey-user-info
"
;
export
const
OAuthRedirectHandler
=
()
=>
{
const
navigate
=
useNavigate
();
const
[
error
,
setError
]
=
useState
(
""
);
const
[
loading
,
setLoading
]
=
useState
(
false
);
const
[
message
,
setMessage
]
=
useState
(
"
잠시만 기다려 주세요! 로그인 중입니다.
"
);
...
...
@@ -28,6 +29,7 @@ export const OAuthRedirectHandler = () => {
isLoggedIn
:
user
.
isLoggedIn
,
})
);
window
.
location
.
replace
(
"
/
"
);
}
}
catch
(
error
)
{
setLoading
(
false
);
...
...
src/controllers/auth.controller.ts
View file @
f781c7d8
...
...
@@ -175,32 +175,37 @@ export const kakaoAuthenticate = asyncWrap(async (req, res) => {
params
);
const
kakaoUserData
=
jwt
.
decode
(
kakaoResponse
.
data
.
id_token
)
as
any
;
//카카오에서 받아온 u
ser
d
ata
를 db에 저장
console
.
log
(
kakaoU
ser
D
ata
);
if
(
kakaoUserData
)
{
// 카카오 계정이든 아니든 같은 이메일이 있는지 확인
const
userExist
=
await
userDb
.
isUser
(
kakaoUserData
.
email
);
if
(
userExist
)
{
// 이메일이 있을 경우
// 카카오 계정으로 이메일이 있는지 확인
const
kakaoUser
=
await
userDb
.
isSocialType
(
kakao
UserData
.
email
,
"
kakao
"
"
kakao
"
,
kakao
UserData
.
email
);
console
.
log
(
"
카카오 유저:
"
,
kakaoUser
);
if
(
kakaoUser
)
{
//
3
)
비밀번호가 맞으면
토큰 생성
//
1
)
카카오 유저가 있을 경우
토큰 생성
const
token
=
jwt
.
sign
({
userId
:
kakaoUser
.
id
},
jwtCofig
.
secret
,
{
expiresIn
:
jwtCofig
.
expires
,
});
//
4
) 토큰을 쿠키에 저장
//
2
) 토큰을 쿠키에 저장
res
.
cookie
(
cookieConfig
.
name
,
token
,
{
maxAge
:
cookieConfig
.
maxAge
,
path
:
"
/
"
,
httpOnly
:
envConfig
.
mode
===
"
production
"
,
secure
:
envConfig
.
mode
===
"
production
"
,
});
//
5
) 사용자 반환
//
3
) 사용자 반환
res
.
json
({
isLoggedIn
:
true
,
email
:
kakaoUser
.
email
,
});
}
else
{
// 카카오 유저가 아닌 다른 이메일 유저일 경우
return
res
.
status
(
422
)
.
send
(
...
...
@@ -208,23 +213,25 @@ export const kakaoAuthenticate = asyncWrap(async (req, res) => {
);
}
}
else
{
// 이미 존재하는 이메일이 없을 경우
// 1) email이랑 password(sub:고유 회원번호) DB에 저장
const
newUser
=
await
userDb
.
createUser
({
email
:
kakaoUserData
.
email
,
password
:
""
,
password
:
kakaoUserData
.
sub
,
socialType
:
"
kakao
"
,
});
//
3) 비밀번호가 맞으면
토큰 생성
//
2)
토큰 생성
const
token
=
jwt
.
sign
({
userId
:
newUser
.
id
},
jwtCofig
.
secret
,
{
expiresIn
:
jwtCofig
.
expires
,
});
//
4
) 토큰을 쿠키에 저장
//
3
) 토큰을 쿠키에 저장
res
.
cookie
(
cookieConfig
.
name
,
token
,
{
maxAge
:
cookieConfig
.
maxAge
,
path
:
"
/
"
,
httpOnly
:
envConfig
.
mode
===
"
production
"
,
secure
:
envConfig
.
mode
===
"
production
"
,
});
//
5
) 사용자 반환
//
4
) 사용자 반환
res
.
json
({
isLoggedIn
:
true
,
email
:
newUser
.
email
,
...
...
@@ -234,7 +241,7 @@ export const kakaoAuthenticate = asyncWrap(async (req, res) => {
}
}
catch
(
error
)
{
console
.
log
(
error
);
res
.
send
(
"
에러
"
);
res
.
send
(
"
카카오 로그인
에러
"
);
}
});
...
...
src/db/user.db.ts
View file @
f781c7d8
...
...
@@ -73,6 +73,7 @@ export const isValidUserId = async (userId: string) => {
};
export
const
isSocialType
=
async
(
socialType
:
string
,
email
:
string
)
=>
{
const
user
=
await
User
.
findOne
({
email
,
socialType
});
const
user
=
await
User
.
findOne
({
email
:
email
,
socialType
:
socialType
});
console
.
log
(
"
유우우우저:
"
,
user
);
return
user
;
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment