2017-03-17 17:16:08 +03: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.
package auth
import (
2019-08-23 19:40:30 +03:00
"gitea.com/macaron/binding"
"gitea.com/macaron/macaron"
2017-03-17 17:16:08 +03:00
)
// SignInOpenIDForm form for signing in with OpenID
type SignInOpenIDForm struct {
2017-03-21 03:55:00 +03:00
Openid string ` binding:"Required;MaxSize(256)" `
2017-03-17 17:16:08 +03:00
Remember bool
}
2020-06-05 17:34:23 +03:00
// Validate validates the fields
2017-03-17 17:16:08 +03:00
func ( f * SignInOpenIDForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
return validate ( errs , ctx . Data , f , ctx . Locale )
}
// SignUpOpenIDForm form for signin up with OpenID
type SignUpOpenIDForm struct {
2019-02-25 21:56:47 +03:00
UserName string ` binding:"Required;AlphaDashDot;MaxSize(40)" `
2018-07-05 07:13:05 +03:00
Email string ` binding:"Required;Email;MaxSize(254)" `
GRecaptchaResponse string ` form:"g-recaptcha-response" `
2017-03-17 17:16:08 +03:00
}
2020-06-05 17:34:23 +03:00
// Validate validates the fields
2017-03-17 17:16:08 +03:00
func ( f * SignUpOpenIDForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
return validate ( errs , ctx . Data , f , ctx . Locale )
}
// 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 17:34:23 +03:00
// Validate validates the fields
2017-03-17 17:16:08 +03:00
func ( f * ConnectOpenIDForm ) Validate ( ctx * macaron . Context , errs binding . Errors ) binding . Errors {
return validate ( errs , ctx . Data , f , ctx . Locale )
}