2017-03-17 14:16:08 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-03-17 14:16:08 +00:00
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
package forms
|
2017-03-17 14:16:08 +00:00
|
|
|
|
|
|
|
import (
|
2021-01-26 15:36:53 +00:00
|
|
|
"net/http"
|
|
|
|
|
2021-01-30 08:55:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web/middleware"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2021-11-17 12:34:35 +00:00
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
"gitea.com/go-chi/binding"
|
2017-03-17 14:16:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// SignInOpenIDForm form for signing in with OpenID
|
|
|
|
type SignInOpenIDForm struct {
|
2017-03-21 00:55:00 +00:00
|
|
|
Openid string `binding:"Required;MaxSize(256)"`
|
2017-03-17 14:16:08 +00:00
|
|
|
Remember bool
|
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *SignInOpenIDForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-03-17 14:16:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SignUpOpenIDForm form for signin up with OpenID
|
|
|
|
type SignUpOpenIDForm struct {
|
2022-11-22 21:13:18 +00:00
|
|
|
UserName string `binding:"Required;Username;MaxSize(40)"`
|
|
|
|
Email string `binding:"Required;Email;MaxSize(254)"`
|
2017-03-17 14:16:08 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *SignUpOpenIDForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-03-17 14:16:08 +00: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 14:34:23 +00:00
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *ConnectOpenIDForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-01-30 08:55:53 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
2017-03-17 14:16:08 +00:00
|
|
|
}
|