mirror of
https://github.com/pocketbase/pocketbase.git
synced 2024-11-25 01:16:21 +02:00
77 lines
2.0 KiB
Go
77 lines
2.0 KiB
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"strconv"
|
|
|
|
"golang.org/x/oauth2"
|
|
"golang.org/x/oauth2/kakao"
|
|
)
|
|
|
|
var _ Provider = (*Kakao)(nil)
|
|
|
|
// NameKakao is the unique name of the Kakao provider.
|
|
const NameKakao string = "kakao"
|
|
|
|
// Kakao allows authentication via Kakao OAuth2.
|
|
type Kakao struct {
|
|
*baseProvider
|
|
}
|
|
|
|
// NewKakaoProvider creates a new Kakao provider instance with some defaults.
|
|
func NewKakaoProvider() *Kakao {
|
|
return &Kakao{&baseProvider{
|
|
ctx: context.Background(),
|
|
scopes: []string{"account_email", "profile_nickname", "profile_image"},
|
|
authUrl: kakao.Endpoint.AuthURL,
|
|
tokenUrl: kakao.Endpoint.TokenURL,
|
|
userApiUrl: "https://kapi.kakao.com/v2/user/me",
|
|
}}
|
|
}
|
|
|
|
// FetchAuthUser returns an AuthUser instance based on the Kakao's user api.
|
|
//
|
|
// API reference: https://developers.kakao.com/docs/latest/en/kakaologin/rest-api#req-user-info-response
|
|
func (p *Kakao) FetchAuthUser(token *oauth2.Token) (*AuthUser, error) {
|
|
data, err := p.FetchRawUserData(token)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
rawUser := map[string]any{}
|
|
if err := json.Unmarshal(data, &rawUser); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
extracted := struct {
|
|
Id int `json:"id"`
|
|
Profile struct {
|
|
Nickname string `json:"nickname"`
|
|
ImageUrl string `json:"profile_image"`
|
|
} `json:"properties"`
|
|
KakaoAccount struct {
|
|
Email string `json:"email"`
|
|
IsEmailVerified bool `json:"is_email_verified"`
|
|
IsEmailValid bool `json:"is_email_valid"`
|
|
} `json:"kakao_account"`
|
|
}{}
|
|
if err := json.Unmarshal(data, &extracted); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
user := &AuthUser{
|
|
Id: strconv.Itoa(extracted.Id),
|
|
Username: extracted.Profile.Nickname,
|
|
AvatarUrl: extracted.Profile.ImageUrl,
|
|
RawUser: rawUser,
|
|
AccessToken: token.AccessToken,
|
|
RefreshToken: token.RefreshToken,
|
|
}
|
|
if extracted.KakaoAccount.IsEmailValid && extracted.KakaoAccount.IsEmailVerified {
|
|
user.Email = extracted.KakaoAccount.Email
|
|
}
|
|
|
|
return user, nil
|
|
}
|