注册
This commit is contained in:
parent
b9f8876fde
commit
e837c745b1
|
@ -38,7 +38,7 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
||||||
Handler: UserSaveBasicInfoHandler(serverCtx),
|
Handler: UserSaveBasicInfoHandler(serverCtx),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Method: http.MethodPost,
|
Method: http.MethodGet,
|
||||||
Path: "/api/user/status-config",
|
Path: "/api/user/status-config",
|
||||||
Handler: UserStatusConfigHandler(serverCtx),
|
Handler: UserStatusConfigHandler(serverCtx),
|
||||||
},
|
},
|
||||||
|
|
|
@ -28,6 +28,10 @@ func NewUserStatusConfigLogic(ctx context.Context, svcCtx *svc.ServiceContext) *
|
||||||
func (l *UserStatusConfigLogic) UserStatusConfig(req *types.Request, userinfo *auth.UserInfo) (resp *basic.Response) {
|
func (l *UserStatusConfigLogic) UserStatusConfig(req *types.Request, userinfo *auth.UserInfo) (resp *basic.Response) {
|
||||||
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
|
// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
|
||||||
|
|
||||||
|
if !userinfo.IsUser() {
|
||||||
|
return resp.SetStatus(basic.CodeUnAuth)
|
||||||
|
}
|
||||||
|
|
||||||
data := &types.DataStatusConfig{
|
data := &types.DataStatusConfig{
|
||||||
SearchList: []types.KeyName{
|
SearchList: []types.KeyName{
|
||||||
{Key: -1, Name: "All"},
|
{Key: -1, Name: "All"},
|
||||||
|
|
|
@ -10,6 +10,10 @@ info (
|
||||||
import "basic.api"
|
import "basic.api"
|
||||||
|
|
||||||
service home-user-auth {
|
service home-user-auth {
|
||||||
|
|
||||||
|
@handler UserRegisterHandler
|
||||||
|
post /api/user/register(RequestUserRegister) returns (response);
|
||||||
|
|
||||||
@handler UserLoginHandler
|
@handler UserLoginHandler
|
||||||
post /api/user/login(RequestUserLogin) returns (response);
|
post /api/user/login(RequestUserLogin) returns (response);
|
||||||
|
|
||||||
|
@ -26,7 +30,7 @@ service home-user-auth {
|
||||||
post /api/user/basic-info(RequestBasicInfoForm) returns (response);
|
post /api/user/basic-info(RequestBasicInfoForm) returns (response);
|
||||||
|
|
||||||
@handler UserStatusConfigHandler
|
@handler UserStatusConfigHandler
|
||||||
post /api/user/status-config(request) returns (response);
|
get /api/user/status-config(request) returns (response);
|
||||||
|
|
||||||
@handler UserBasicInfoHandler
|
@handler UserBasicInfoHandler
|
||||||
get /api/user/basic-info(request) returns (response);
|
get /api/user/basic-info(request) returns (response);
|
||||||
|
|
76
utils/auth/register.go
Normal file
76
utils/auth/register.go
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
package auth
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/mail"
|
||||||
|
)
|
||||||
|
|
||||||
|
// ValidateEmail checks if the provided string is a valid email address.
|
||||||
|
func ValidateEmail(email string) bool {
|
||||||
|
_, err := mail.ParseAddress(email)
|
||||||
|
return err == nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ValidatePassword checks if the provided password is strong enough.
|
||||||
|
// In this example, we just check if the password length is 8 or more.
|
||||||
|
func ValidatePassword(password string) bool {
|
||||||
|
const minPasswordLength = 8
|
||||||
|
return len(password) >= minPasswordLength
|
||||||
|
}
|
||||||
|
|
||||||
|
var secret = []byte("your-secret")
|
||||||
|
|
||||||
|
// func generateConfirmationLink(id, email, password, name string, platform string) (string, error) {
|
||||||
|
// // 创建一个新的 JWT,并将用户的电子邮件设置为它的主题。
|
||||||
|
// token := jwt.NewWithClaims(jwt.SigningMethodHS256, jwt.MapClaims{
|
||||||
|
// "email": email,
|
||||||
|
// "password": password,
|
||||||
|
// "id": id,
|
||||||
|
// "platform": platform,
|
||||||
|
// "exp": time.Now().Add(24 * time.Hour).Unix(), // Token expires after 24 hours
|
||||||
|
// })
|
||||||
|
|
||||||
|
// // 签署 JWT。
|
||||||
|
// tokenString, err := token.SignedString(secret)
|
||||||
|
// if err != nil {
|
||||||
|
// return "", err
|
||||||
|
// }
|
||||||
|
|
||||||
|
// // 生成确认链接,这个链接包含 JWT。
|
||||||
|
// link := url.URL{
|
||||||
|
// Scheme: "http",
|
||||||
|
// Host: "yourserver.com",
|
||||||
|
// Path: "/confirm",
|
||||||
|
// RawQuery: url.Values{
|
||||||
|
// "token": []string{tokenString},
|
||||||
|
// }.Encode(),
|
||||||
|
// }
|
||||||
|
|
||||||
|
// return link.String(), nil
|
||||||
|
// }
|
||||||
|
|
||||||
|
// func handleConfirm(w http.ResponseWriter, r *http.Request) {
|
||||||
|
// // 从请求中获取 JWT。
|
||||||
|
// tokenString := r.URL.Query().Get("token")
|
||||||
|
|
||||||
|
// // 解析和验证 JWT。
|
||||||
|
// token, err := jwt.Parse(tokenString, func(token *jwt.Token) (interface{}, error) {
|
||||||
|
// return secret, nil
|
||||||
|
// })
|
||||||
|
|
||||||
|
// if err != nil || !token.Valid {
|
||||||
|
// http.Error(w, "Invalid confirmation link", http.StatusBadRequest)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
|
||||||
|
// claims, ok := token.Claims.(jwt.MapClaims)
|
||||||
|
|
||||||
|
// if !ok || !token.Valid {
|
||||||
|
// http.Error(w, "Invalid token", http.StatusBadRequest)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
|
||||||
|
// email := claims["sub"].(string)
|
||||||
|
|
||||||
|
// // 确认链接有效,可以创建用户账号了。
|
||||||
|
// createUser(email)
|
||||||
|
// }
|
|
@ -19,12 +19,14 @@ const TCategoryPersonalization TypeCategory = "personalization"
|
||||||
const TCategory3DTools TypeCategory = "3dtools"
|
const TCategory3DTools TypeCategory = "3dtools"
|
||||||
const TCategoryQuotation TypeCategory = "quotation"
|
const TCategoryQuotation TypeCategory = "quotation"
|
||||||
const TCategoryRenderMegre TypeCategory = "render_megre"
|
const TCategoryRenderMegre TypeCategory = "render_megre"
|
||||||
|
const TCategoryImage TypeCategory = "image"
|
||||||
|
|
||||||
var CategoryMap = map[string]bool{
|
var CategoryMap = map[string]bool{
|
||||||
string(TCategoryPersonalization): true,
|
string(TCategoryPersonalization): true,
|
||||||
string(TCategory3DTools): true,
|
string(TCategory3DTools): true,
|
||||||
string(TCategoryQuotation): true,
|
string(TCategoryQuotation): true,
|
||||||
string(TCategoryRenderMegre): true,
|
string(TCategoryRenderMegre): true,
|
||||||
|
string(TCategoryImage): true,
|
||||||
}
|
}
|
||||||
|
|
||||||
// FormatS3KeyName 需要输入选
|
// FormatS3KeyName 需要输入选
|
||||||
|
@ -51,6 +53,8 @@ func FormatS3KeyNameUser(userid int64, now time.Time, env string, category TypeC
|
||||||
}
|
}
|
||||||
|
|
||||||
switch category {
|
switch category {
|
||||||
|
case TCategoryImage:
|
||||||
|
return fmt.Sprintf("/%s/%s/%d/%s_%d.%s", env, category, userid, name, now.UnixNano(), ext)
|
||||||
case TCategoryPersonalization:
|
case TCategoryPersonalization:
|
||||||
// /{env}/personalization/{userid}/{filename}
|
// /{env}/personalization/{userid}/{filename}
|
||||||
return fmt.Sprintf("/%s/%s/%d/%s.%s", env, category, userid, name, ext)
|
return fmt.Sprintf("/%s/%s/%d/%s.%s", env, category, userid, name, ext)
|
||||||
|
@ -82,12 +86,14 @@ func FormatS3KeyNameGuest(guestid int64, now time.Time, env string, category Typ
|
||||||
}
|
}
|
||||||
|
|
||||||
switch category {
|
switch category {
|
||||||
|
case TCategoryImage:
|
||||||
|
return fmt.Sprintf("/%s/%s/g/%d/%s_%d.%s", env, category, guestid, name, now.UnixNano(), ext)
|
||||||
case TCategoryPersonalization:
|
case TCategoryPersonalization:
|
||||||
// /{env}/personalization/{guestid}/{filename}
|
// /{env}/personalization/g/{guestid}/{filename}
|
||||||
return fmt.Sprintf("/%s/%s/%d/%s.%s", env, category, guestid, name, ext)
|
return fmt.Sprintf("/%s/%s/g/%d/%s.%s", env, category, guestid, name, ext)
|
||||||
case TCategoryRenderMegre:
|
case TCategoryRenderMegre:
|
||||||
// /{env}/render_megre/{guestid}/{filename} 自动删除
|
// /{env}/render_megre/{guestid}/{filename} 自动删除
|
||||||
return fmt.Sprintf("/%s/%s/%d/%s_%d.%s", env, category, guestid, name, now.UnixNano(), ext)
|
return fmt.Sprintf("/%s/%s/g/%d/%s_%d.%s", env, category, guestid, name, now.UnixNano(), ext)
|
||||||
case TCategory3DTools:
|
case TCategory3DTools:
|
||||||
panic(TCategory3DTools + "不存在游客")
|
panic(TCategory3DTools + "不存在游客")
|
||||||
// /{env}/3dtools/年月/{guestid}/{filename}
|
// /{env}/3dtools/年月/{guestid}/{filename}
|
||||||
|
@ -97,7 +103,7 @@ func FormatS3KeyNameGuest(guestid int64, now time.Time, env string, category Typ
|
||||||
// /{env}/quotation/年月/{guestid}/{filename}
|
// /{env}/quotation/年月/{guestid}/{filename}
|
||||||
// return fmt.Sprintf("/%s/%s/%04d%02d/%d/%s_%d.%s", env, category, year, int(month), guestid, name, now.UnixNano(), ext)
|
// return fmt.Sprintf("/%s/%s/%04d%02d/%d/%s_%d.%s", env, category, year, int(month), guestid, name, now.UnixNano(), ext)
|
||||||
default:
|
default:
|
||||||
return fmt.Sprintf("/%s/%s/%d/%04d%02d/%s_%d.%s", env, category, guestid, year, int(month), name, now.UnixNano(), ext)
|
return fmt.Sprintf("/%s/%s/g/%d/%04d%02d/%s_%d.%s", env, category, guestid, year, int(month), name, now.UnixNano(), ext)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user