thehrz 0b880bece8
All checks were successful
CI / deploy (push) Successful in 57s
pref: rename project
2025-01-24 17:12:15 +08:00

44 lines
927 B
Go

package service
import (
"context"
"fmt"
"tinyskin/config"
"tinyskin/db/ent"
"tinyskin/model"
"tinyskin/utils"
)
type WebService struct {
config config.Config
}
func NewWebService(c config.Config) *WebService {
return &WebService{
config: c,
}
}
func validatePass(ctx context.Context, u *ent.User, password string) error {
if !utils.Argon2Compare(password, u.Password, u.Salt) {
return fmt.Errorf("validatePass: %w", ErrPassWord)
}
return nil
}
func (w *WebService) GetConfig(ctx context.Context) model.Config {
return model.Config{
Captcha: model.Captcha{
Type: w.config.Captcha.Type,
SiteKey: w.config.Captcha.SiteKey,
},
ServerName: w.config.ServerName,
AllowChangeName: !w.config.OfflineUUID,
NeedEmail: w.config.Email.Enable,
AllowDomain: w.config.Email.AllowDomain,
EmailReg: w.config.Email.EmailReg,
EmailRegMsg: w.config.Email.EmailRegMsg,
}
}