Compare commits

...

6 Commits

Author SHA1 Message Date
daniel.w 5d865243f8 merge feature/fix_proto_name into main 2024-08-27 15:54:14 +08:00
daniel.w 4f06c8038a add checkout verify code 2024-08-26 16:33:28 +08:00
daniel.w 80c8bb63a7 fix proto name 2024-08-25 22:08:56 +08:00
daniel.w b1a19ffba7 fix proto name 2024-08-25 22:07:24 +08:00
daniel.w 5d55ba14a3 add verify google auth result 2024-08-24 14:46:26 +08:00
daniel.w 575931f210 fix miss file 2024-08-22 23:13:09 +08:00
9 changed files with 31 additions and 14 deletions

5
.gitignore vendored
View File

@ -2,5 +2,6 @@
go.sum
account/
gen_result/
etc/service.yaml
client/
etc/member.yaml
client/
.DS_Store

View File

@ -19,7 +19,7 @@ fmt: # 格式優化
.PHONY: gen-rpc
gen-rpc: # 建立 rpc code
goctl rpc protoc ./generate/protobuf/service.proto -m --style=$(GO_ZERO_STYLE) --go_out=./gen_result/pb --go-grpc_out=./gen_result/pb --zrpc_out=.
goctl rpc protoc ./generate/protobuf/member.proto -m --style=$(GO_ZERO_STYLE) --go_out=./gen_result/pb --go-grpc_out=./gen_result/pb --zrpc_out=.
go mod tidy
@echo "Generate core-api files successfully"

View File

@ -32,7 +32,7 @@ RUN --mount=type=ssh go mod download
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build \
-ldflags "$FLAG" \
-o service
-o member
##########
## FINAL #
@ -41,7 +41,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build \
FROM gcr.io/distroless/static-debian11
WORKDIR /app
COPY --from=builder /app/service /app/service
COPY --from=builder /app/etc/service.yaml /app/etc/service.yaml
COPY --from=builder /app/member /app/member
COPY --from=builder /app/etc/member.yaml /app/etc/member.yaml
EXPOSE 8080
CMD ["/app/service"]
CMD ["/app/member"]

View File

@ -169,6 +169,7 @@ message ListUserInfoResp {
message VerifyAuthResultReq {
string token = 1;
optional string account = 2;
}
message VerifyAuthResultResp {
@ -204,7 +205,11 @@ service Account {
rpc GenerateRefreshCode(GenerateRefreshCodeReq) returns(GenerateRefreshCodeResp);
// VerifyRefreshCode token
rpc VerifyRefreshCode(VerifyRefreshCodeReq) returns(OKResp);
// CheckRefreshCode token )
rpc CheckRefreshCode(VerifyRefreshCodeReq) returns(OKResp);
// VerifyGoogleAuthResult google
rpc VerifyGoogleAuthResult(VerifyAuthResultReq)returns(VerifyAuthResultResp);
// VerifyPlatformAuthResult google
rpc VerifyPlatformAuthResult(VerifyAuthResultReq)returns(VerifyAuthResultResp);
}
// ================ account ================

View File

@ -5,7 +5,6 @@ import "time"
const (
DefaultPageSize = 100
DefaultPageIndex = 1
Scope = 10
)
const InitAutoId = 10000000

View File

@ -1,5 +1,5 @@
// Code generated by goctl. DO NOT EDIT.
// Source: service.proto
// Source: member.proto
package server
@ -94,8 +94,20 @@ func (s *AccountServer) VerifyRefreshCode(ctx context.Context, in *member.Verify
return l.VerifyRefreshCode(in)
}
// CheckRefreshCode 驗證忘記密碼 token 不刪除,只確認)
func (s *AccountServer) CheckRefreshCode(ctx context.Context, in *member.VerifyRefreshCodeReq) (*member.OKResp, error) {
l := accountlogic.NewCheckRefreshCodeLogic(ctx, s.svcCtx)
return l.CheckRefreshCode(in)
}
// VerifyGoogleAuthResult 驗證 google 登入是否有效
func (s *AccountServer) VerifyGoogleAuthResult(ctx context.Context, in *member.VerifyAuthResultReq) (*member.VerifyAuthResultResp, error) {
l := accountlogic.NewVerifyGoogleAuthResultLogic(ctx, s.svcCtx)
return l.VerifyGoogleAuthResult(in)
}
// VerifyPlatformAuthResult 驗證 google 登入是否有效
func (s *AccountServer) VerifyPlatformAuthResult(ctx context.Context, in *member.VerifyAuthResultReq) (*member.VerifyAuthResultResp, error) {
l := accountlogic.NewVerifyPlatformAuthResultLogic(ctx, s.svcCtx)
return l.VerifyPlatformAuthResult(in)
}

View File

@ -8,6 +8,7 @@ import (
mgo "app-cloudep-member-server/internal/model/mongo"
"app-cloudep-member-server/internal/usecase"
ers "code.30cm.net/digimon/library-go/errors"
"code.30cm.net/digimon/library-go/errors/code"
vi "code.30cm.net/digimon/library-go/validator"
"fmt"
"github.com/zeromicro/go-zero/core/stores/cache"
@ -28,7 +29,7 @@ type ServiceContext struct {
func NewServiceContext(c config.Config) *ServiceContext {
// 設置
ers.Scope = domain.Scope
ers.Scope = code.CloudEPMember
// TODO 可優化項目,將連線數量以及 timeout 都便可設定
sqlConn := sqlx.NewMysql(c.DB.DsnString)

View File

@ -2,8 +2,7 @@ package main
import (
"flag"
"github.com/zeromicro/go-zero/core/logx"
"fmt"
"app-cloudep-member-server/gen_result/pb/member"
"app-cloudep-member-server/internal/config"
@ -17,7 +16,7 @@ import (
"google.golang.org/grpc/reflection"
)
var configFile = flag.String("f", "etc/service.yaml", "the config file")
var configFile = flag.String("f", "etc/member.yaml", "the config file")
func main() {
flag.Parse()
@ -35,6 +34,6 @@ func main() {
})
defer s.Stop()
logx.Info("Starting rpc server at %s...\n", c.ListenOn)
fmt.Printf("Starting rpc server at %s...\n", c.ListenOn)
s.Start()
}