Compare commits
5 Commits
155875d2ce
...
master
Author | SHA1 | Date | |
---|---|---|---|
d7016ad386 | |||
f06ca4b247 | |||
661c189bf4 | |||
d0b8e93b80 | |||
64b33915da |
@ -5,7 +5,7 @@ import (
|
||||
)
|
||||
|
||||
type ClientCredential struct {
|
||||
request.Error
|
||||
AccessToken string `json:"access_token"`
|
||||
ExpiresIn int32 `json:"expires_in"`
|
||||
request.Error `gorm:"-"`
|
||||
AccessToken string `json:"access_token"`
|
||||
ExpiresIn int32 `json:"expires_in"`
|
||||
}
|
||||
|
@ -5,10 +5,10 @@ import (
|
||||
)
|
||||
|
||||
type Token struct {
|
||||
request.Error
|
||||
AccessToken string `json:"access_token"` //获取到的凭证
|
||||
ExpiresIn int32 `json:"expires_in"` //凭证有效时间,单位:秒
|
||||
RefreshToken string `json:"refresh_token"` //有效期为30天,当失效之后,需要用户重新授
|
||||
OpenID string `json:"openid" gorm:"index"`
|
||||
Scope string `json:"scope"`
|
||||
request.Error `gorm:"-"`
|
||||
AccessToken string `json:"access_token"` //获取到的凭证
|
||||
ExpiresIn int32 `json:"expires_in"` //凭证有效时间,单位:秒
|
||||
RefreshToken string `json:"refresh_token"` //有效期为30天,当失效之后,需要用户重新授
|
||||
OpenID string `json:"openid" gorm:"index"`
|
||||
Scope string `json:"scope"`
|
||||
}
|
||||
|
@ -5,14 +5,14 @@ import (
|
||||
)
|
||||
|
||||
type Userinfo struct {
|
||||
request.Error
|
||||
OpenID string `json:"openid" gorm:"index"`
|
||||
NickName string `json:"nickname"`
|
||||
Sex int32 `json:"sex"`
|
||||
Province string `json:"province"`
|
||||
City string `json:"city"`
|
||||
Country string `json:"country"`
|
||||
HeadImgURL string `json:"headimgurl"`
|
||||
Privilege []string `json:"privilege" gorm:"type:text[]"`
|
||||
UnionID string `json:"unionid"`
|
||||
request.Error `gorm:"-"`
|
||||
OpenID string `json:"openid" gorm:"index"`
|
||||
NickName string `json:"nickname"`
|
||||
Sex int32 `json:"sex"`
|
||||
Province string `json:"province"`
|
||||
City string `json:"city"`
|
||||
Country string `json:"country"`
|
||||
HeadImgURL string `json:"headimgurl"`
|
||||
Privilege []string `json:"privilege" gorm:"type:text[]"`
|
||||
UnionID string `json:"unionid"`
|
||||
}
|
||||
|
113
cmd/mp-auth-http/main.go
Normal file
113
cmd/mp-auth-http/main.go
Normal file
@ -0,0 +1,113 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"flag"
|
||||
"net/http"
|
||||
|
||||
pb "git.esin.io/lab/weixin/protobuf/clientapi/mp/auth"
|
||||
"google.golang.org/grpc"
|
||||
)
|
||||
|
||||
var (
|
||||
lisPort string
|
||||
authServerEndpoint string
|
||||
)
|
||||
|
||||
func init() {
|
||||
flag.StringVar(&lisPort, "port", "3000", "server listen port")
|
||||
flag.StringVar(&authServerEndpoint, "auth.server", "localhost:13721", "auth grpc server endpoint")
|
||||
}
|
||||
|
||||
func main() {
|
||||
flag.Parse()
|
||||
|
||||
if err := run(); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
func run() error {
|
||||
grpcDialOpts := []grpc.DialOption{
|
||||
grpc.WithInsecure(),
|
||||
grpc.WithBlock(),
|
||||
}
|
||||
grpcConn, err := grpc.Dial(authServerEndpoint, grpcDialOpts...)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
h := NewHandler(pb.NewAuthServiceClient(grpcConn))
|
||||
|
||||
http.HandleFunc("/url", h.getCodeURL)
|
||||
http.HandleFunc("/token", h.exchangeToken)
|
||||
http.HandleFunc("/userinfo", h.getUserinfo)
|
||||
http.HandleFunc("/userinfo/sync", h.syncUserinfo)
|
||||
|
||||
return http.ListenAndServe(":"+lisPort, nil)
|
||||
}
|
||||
|
||||
type restHandler struct {
|
||||
client pb.AuthServiceClient
|
||||
}
|
||||
|
||||
func NewHandler(client pb.AuthServiceClient) *restHandler {
|
||||
return &restHandler{
|
||||
client: client,
|
||||
}
|
||||
}
|
||||
|
||||
func (h restHandler) getCodeURL(w http.ResponseWriter, r *http.Request) {
|
||||
resp, err := h.client.GetCodeURL(r.Context(), &pb.GetCodeURLRequest{
|
||||
RedirectUrl: r.FormValue("redirect_url"),
|
||||
State: r.FormValue("state"),
|
||||
Scope: pb.GetCodeURLRequest_snsapi_base,
|
||||
})
|
||||
if err != nil {
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
encoder := json.NewEncoder(w)
|
||||
encoder.SetEscapeHTML(false)
|
||||
encoder.Encode(resp)
|
||||
}
|
||||
|
||||
func (h restHandler) exchangeToken(w http.ResponseWriter, r *http.Request) {
|
||||
code := r.FormValue("code")
|
||||
|
||||
resp, err := h.client.ExchangeToken(r.Context(), &pb.ExchangeTokenRequest{
|
||||
Code: code,
|
||||
})
|
||||
if err != nil {
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
json.NewEncoder(w).Encode(resp)
|
||||
}
|
||||
|
||||
func (h restHandler) getUserinfo(w http.ResponseWriter, r *http.Request) {
|
||||
openid := r.FormValue("openid")
|
||||
resp, err := h.client.GetUserinfo(r.Context(), &pb.GetUserinfoRequest{
|
||||
OpenId: openid,
|
||||
Lang: pb.GetUserinfoRequest_zh_CN,
|
||||
})
|
||||
if err != nil {
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
json.NewEncoder(w).Encode(resp)
|
||||
}
|
||||
|
||||
func (h restHandler) syncUserinfo(w http.ResponseWriter, r *http.Request) {
|
||||
openid := r.FormValue("openid")
|
||||
resp, err := h.client.SyncUserinfo(r.Context(), &pb.SyncUserinfoRequest{
|
||||
OpenId: openid,
|
||||
Lang: pb.SyncUserinfoRequest_zh_CN,
|
||||
})
|
||||
if err != nil {
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
json.NewEncoder(w).Encode(resp)
|
||||
}
|
2
go.mod
2
go.mod
@ -5,7 +5,7 @@ go 1.17
|
||||
require (
|
||||
github.com/golang/protobuf v1.5.2
|
||||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.6.0
|
||||
github.com/rs/zerolog v1.15.0
|
||||
github.com/pkg/errors v0.9.1
|
||||
google.golang.org/genproto v0.0.0-20211104193956-4c6863e31247
|
||||
google.golang.org/grpc v1.42.0
|
||||
google.golang.org/protobuf v1.27.1
|
||||
|
3
go.sum
3
go.sum
@ -209,6 +209,8 @@ github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hd
|
||||
github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
|
||||
github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
|
||||
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
|
||||
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
|
||||
@ -216,7 +218,6 @@ github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6L
|
||||
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
|
||||
github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ=
|
||||
github.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OKkWU=
|
||||
github.com/rs/zerolog v1.15.0 h1:uPRuwkWF4J6fGsJ2R0Gn2jB1EQiav9k3S6CSdygQJXY=
|
||||
github.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc=
|
||||
github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0=
|
||||
github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4=
|
||||
|
@ -2,9 +2,9 @@ package auth
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"time"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
"google.golang.org/grpc"
|
||||
"google.golang.org/grpc/codes"
|
||||
"google.golang.org/grpc/status"
|
||||
@ -53,7 +53,7 @@ func (srv Service) PublishEvent(ctx context.Context, subject string, message int
|
||||
return nil
|
||||
}
|
||||
|
||||
func (srv Service) GetAuthCodeURL(ctx context.Context, req *pb.GetCodeURLRequest) (*pb.GetCodeURLResponse, error) {
|
||||
func (srv Service) GetCodeURL(ctx context.Context, req *pb.GetCodeURLRequest) (*pb.GetCodeURLResponse, error) {
|
||||
resp := srv.client.GetCodeURL(req.RedirectUrl, req.State, mpauth.Scope(req.Scope.String()))
|
||||
|
||||
return &pb.GetCodeURLResponse{
|
||||
@ -64,7 +64,7 @@ func (srv Service) GetAuthCodeURL(ctx context.Context, req *pb.GetCodeURLRequest
|
||||
func (srv Service) ExchangeToken(ctx context.Context, req *pb.ExchangeTokenRequest) (*pb.ExchangeTokenResponse, error) {
|
||||
resp, err := srv.client.ExchangeToken(ctx, req.Code)
|
||||
if err != nil {
|
||||
return nil, status.Errorf(codes.Internal, "exchange token from weixin failed")
|
||||
return nil, status.Errorf(codes.Internal, errors.Wrap(err, "exchange token from weixin failed").Error())
|
||||
}
|
||||
|
||||
var token Token
|
||||
@ -76,7 +76,7 @@ func (srv Service) ExchangeToken(ctx context.Context, req *pb.ExchangeTokenReque
|
||||
}
|
||||
token.Assign(resp)
|
||||
if err := srv.db.Save(&token).Error; err != nil {
|
||||
return nil, status.Errorf(codes.Internal, "save token to database failed")
|
||||
return nil, status.Errorf(codes.Internal, errors.Wrap(err, "save token to database failed").Error())
|
||||
}
|
||||
|
||||
go srv.PublishEvent(ctx, "auth.token.exchanged", &token)
|
||||
@ -96,13 +96,13 @@ func (srv Service) RefreshToken(ctx context.Context, req *pb.RefreshTokenRequest
|
||||
|
||||
resp, err := srv.client.RefreshToken(ctx, token.RefreshToken)
|
||||
if err != nil {
|
||||
return nil, status.Errorf(codes.Internal, "refresh refreshed token from weixin failed")
|
||||
return nil, status.Errorf(codes.Internal, errors.Wrap(err, "refresh refreshed token from weixin failed").Error())
|
||||
}
|
||||
|
||||
token.Assign(resp)
|
||||
|
||||
if err := srv.db.Save(&token).Error; err != nil {
|
||||
return nil, status.Errorf(codes.Internal, "save refreshed token to database failed")
|
||||
return nil, status.Errorf(codes.Internal, errors.Wrap(err, "save refreshed token to database failed").Error())
|
||||
}
|
||||
|
||||
go srv.PublishEvent(ctx, "auth.token.refreshed", &token)
|
||||
@ -127,12 +127,12 @@ func (srv Service) GetUserinfo(ctx context.Context, req *pb.GetUserinfoRequest)
|
||||
|
||||
resp, err := srv.client.GetUserinfo(ctx, token.AccessToken, req.OpenId, mpauth.Lang(req.Lang.String()))
|
||||
if err != nil {
|
||||
return nil, status.Errorf(codes.Internal, "get userinfo token from weixin failed")
|
||||
return nil, status.Errorf(codes.Internal, errors.Wrap(err, "get userinfo token from weixin failed").Error())
|
||||
}
|
||||
|
||||
userinfo = Userinfo{Userinfo: *resp}
|
||||
if err := srv.db.Create(&userinfo).Error; err != nil {
|
||||
return nil, status.Errorf(codes.Internal, "save userinfo to database failed")
|
||||
return nil, status.Errorf(codes.Internal, errors.Wrap(err, "save userinfo to database failed").Error())
|
||||
}
|
||||
|
||||
go srv.PublishEvent(ctx, "auth.userinfo.created", &userinfo)
|
||||
@ -160,12 +160,12 @@ func (srv Service) SyncUserinfo(ctx context.Context, req *pb.SyncUserinfoRequest
|
||||
|
||||
resp, err := srv.client.GetUserinfo(ctx, token.AccessToken, req.OpenId, mpauth.Lang(req.Lang.String()))
|
||||
if err != nil {
|
||||
return nil, status.Errorf(codes.Internal, "get userinfo token from weixin failed")
|
||||
return nil, status.Errorf(codes.Internal, errors.Wrap(err, "get userinfo token from weixin failed").Error())
|
||||
}
|
||||
|
||||
userinfo = Userinfo{Userinfo: *resp}
|
||||
userinfo.Userinfo = *resp
|
||||
if err := srv.db.Save(&userinfo).Error; err != nil {
|
||||
return nil, status.Errorf(codes.Internal, "sync userinfo and save to database failed")
|
||||
return nil, status.Errorf(codes.Internal, errors.Wrap(err, "sync userinfo and save to database failed").Error())
|
||||
}
|
||||
|
||||
go srv.PublishEvent(ctx, "auth.userinfo.synchronized", &userinfo)
|
||||
@ -188,13 +188,13 @@ func (srv Service) GetClientCredential(ctx context.Context, _ *emptypb.Empty) (*
|
||||
if errors.Is(err, gorm.ErrRecordNotFound) || cred.Expired() {
|
||||
resp, err := srv.client.GetClientCredential(ctx)
|
||||
if err != nil {
|
||||
return nil, status.Errorf(codes.Internal, "get client credential token from weixin failed")
|
||||
return nil, status.Errorf(codes.Internal, errors.Wrap(err, "get client credential token from weixin failed").Error())
|
||||
}
|
||||
cred = ClientCredential{
|
||||
ClientCredential: *resp,
|
||||
}
|
||||
if err := srv.db.Create(&cred).Error; err != nil {
|
||||
return nil, status.Errorf(codes.Internal, "save client credential to database failed")
|
||||
return nil, status.Errorf(codes.Internal, errors.Wrap(err, "save client credential to database failed").Error())
|
||||
}
|
||||
|
||||
go srv.PublishEvent(ctx, "auth.clientcredential.created", &cred)
|
||||
|
Loading…
x
Reference in New Issue
Block a user