2017-03-17 15:16:08 +01:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-01-26 16:36:53 +01:00
|
|
|
package forms
|
2017-03-17 15:16:08 +01:00
|
|
|
|
|
|
|
import (
|
2021-01-26 16:36:53 +01:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2021-01-30 09:55:53 +01:00
|
|
|
"code.gitea.io/gitea/modules/web/middleware"
|
2021-11-17 13:34:35 +01:00
|
|
|
|
2021-01-26 16:36:53 +01:00
|
|
|
"gitea.com/go-chi/binding"
|
2017-03-17 15:16:08 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// SignInOpenIDForm form for signing in with OpenID
|
|
|
|
type SignInOpenIDForm struct {
|
2017-03-21 01:55:00 +01:00
|
|
|
Openid string `binding:"Required;MaxSize(256)"`
|
2017-03-17 15:16:08 +01:00
|
|
|
Remember bool
|
|
|
|
}
|
|
|
|
|
2020-06-05 16:34:23 +02:00
|
|
|
// Validate validates the fields
|
2021-01-26 16:36:53 +01:00
|
|
|
func (f *SignInOpenIDForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 09:55:53 +01:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-03-17 15:16:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// SignUpOpenIDForm form for signin up with OpenID
|
|
|
|
type SignUpOpenIDForm struct {
|
2022-11-04 10:04:08 +01:00
|
|
|
UserName string `binding:"Required;Username;MaxSize(40)"`
|
2018-07-05 06:13:05 +02:00
|
|
|
Email string `binding:"Required;Email;MaxSize(254)"`
|
|
|
|
GRecaptchaResponse string `form:"g-recaptcha-response"`
|
2020-10-03 05:37:53 +02:00
|
|
|
HcaptchaResponse string `form:"h-captcha-response"`
|
2022-08-10 15:20:10 +02:00
|
|
|
McaptchaResponse string `form:"m-captcha-response"`
|
2017-03-17 15:16:08 +01:00
|
|
|
}
|
|
|
|
|
2020-06-05 16:34:23 +02:00
|
|
|
// Validate validates the fields
|
2021-01-26 16:36:53 +01:00
|
|
|
func (f *SignUpOpenIDForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 09:55:53 +01:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-03-17 15:16:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ConnectOpenIDForm form for connecting an existing account to an OpenID URI
|
|
|
|
type ConnectOpenIDForm struct {
|
|
|
|
UserName string `binding:"Required;MaxSize(254)"`
|
|
|
|
Password string `binding:"Required;MaxSize(255)"`
|
|
|
|
}
|
|
|
|
|
2020-06-05 16:34:23 +02:00
|
|
|
// Validate validates the fields
|
2021-01-26 16:36:53 +01:00
|
|
|
func (f *ConnectOpenIDForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
|
|
|
ctx := context.GetContext(req)
|
2021-01-30 09:55:53 +01:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-03-17 15:16:08 +01:00
|
|
|
}
|