2024-03-22 16:28:27 +00:00
|
|
|
package grpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2024-05-17 09:13:11 +00:00
|
|
|
jsoniter "github.com/json-iterator/go"
|
2024-03-22 16:28:27 +00:00
|
|
|
|
2024-04-13 05:48:19 +00:00
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg/grpc/proto"
|
|
|
|
"git.solsynth.dev/hydrogen/passport/pkg/services"
|
2024-03-22 16:28:27 +00:00
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (v *Server) Authenticate(_ context.Context, in *proto.AuthRequest) (*proto.AuthReply, error) {
|
2024-05-17 09:13:11 +00:00
|
|
|
user, perms, atk, rtk, err := services.Authenticate(in.GetAccessToken(), in.GetRefreshToken(), 0)
|
2024-03-22 16:28:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return &proto.AuthReply{
|
|
|
|
IsValid: false,
|
|
|
|
}, nil
|
|
|
|
} else {
|
2024-05-17 09:13:11 +00:00
|
|
|
rawPerms, _ := jsoniter.Marshal(perms)
|
2024-03-22 16:28:27 +00:00
|
|
|
return &proto.AuthReply{
|
|
|
|
IsValid: true,
|
|
|
|
AccessToken: &atk,
|
|
|
|
RefreshToken: &rtk,
|
2024-05-17 09:13:11 +00:00
|
|
|
Permissions: rawPerms,
|
2024-03-22 16:28:27 +00:00
|
|
|
Userinfo: &proto.Userinfo{
|
|
|
|
Id: uint64(user.ID),
|
|
|
|
Name: user.Name,
|
|
|
|
Nick: user.Nick,
|
|
|
|
Email: user.GetPrimaryEmail().Content,
|
|
|
|
Avatar: fmt.Sprintf("https://%s/api/avatar/%s", viper.GetString("domain"), user.Avatar),
|
|
|
|
Banner: fmt.Sprintf("https://%s/api/avatar/%s", viper.GetString("domain"), user.Banner),
|
|
|
|
Description: &user.Description,
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
}
|