mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
package captcha
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/1Panel-dev/1Panel/core/app/dto"
|
|
"github.com/1Panel-dev/1Panel/core/constant"
|
|
"github.com/mojocn/base64Captcha"
|
|
)
|
|
|
|
var store = base64Captcha.DefaultMemStore
|
|
|
|
func VerifyCode(codeID string, code string) error {
|
|
if codeID == "" {
|
|
return constant.ErrCaptchaCode
|
|
}
|
|
vv := store.Get(codeID, true)
|
|
vv = strings.TrimSpace(vv)
|
|
code = strings.TrimSpace(code)
|
|
|
|
if strings.EqualFold(vv, code) {
|
|
return nil
|
|
}
|
|
return constant.ErrCaptchaCode
|
|
}
|
|
|
|
func CreateCaptcha() (*dto.CaptchaResponse, error) {
|
|
var driverString base64Captcha.DriverString
|
|
driverString.Source = "1234567890QWERTYUPLKJHGFDSAZXCVBNMqwertyupkjhgfdsazxcvbnm"
|
|
driverString.Width = 120
|
|
driverString.Height = 50
|
|
driverString.NoiseCount = 0
|
|
driverString.Length = 4
|
|
driverString.Fonts = []string{"RitaSmith.ttf", "actionj.ttf", "chromohv.ttf"}
|
|
driver := driverString.ConvertFonts()
|
|
c := base64Captcha.NewCaptcha(driver, store)
|
|
id, b64s, _, err := c.Generate()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &dto.CaptchaResponse{
|
|
CaptchaID: id,
|
|
ImagePath: b64s,
|
|
}, nil
|
|
}
|