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