2017-10-15 19:59:24 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-10-15 19:59:24 +00:00
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
package forms
|
2017-10-15 19:59:24 +00:00
|
|
|
|
|
|
|
import (
|
2021-01-26 15:36:53 +00:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2021-01-30 08:55:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web/middleware"
|
2021-01-26 15:36:53 +00:00
|
|
|
|
|
|
|
"gitea.com/go-chi/binding"
|
2017-10-15 19:59:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewBranchForm form for creating a new branch
|
|
|
|
type NewBranchForm struct {
|
|
|
|
NewBranchName string `binding:"Required;MaxSize(100);GitRefName"`
|
2022-09-15 13:25:16 +00:00
|
|
|
CurrentPath string
|
2021-02-28 19:57:45 +00:00
|
|
|
CreateTag bool
|
2017-10-15 19:59:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the fields
|
2021-01-26 15:36:53 +00:00
|
|
|
func (f *NewBranchForm) 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-10-15 19:59:24 +00:00
|
|
|
}
|
2021-10-08 17:03:04 +00:00
|
|
|
|
|
|
|
// RenameBranchForm form for rename a branch
|
|
|
|
type RenameBranchForm struct {
|
|
|
|
From string `binding:"Required;MaxSize(100);GitRefName"`
|
|
|
|
To string `binding:"Required;MaxSize(100);GitRefName"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the fields
|
|
|
|
func (f *RenameBranchForm) Validate(req *http.Request, errs binding.Errors) binding.Errors {
|
2023-05-21 01:50:53 +00:00
|
|
|
ctx := context.GetValidateContext(req)
|
2021-10-08 17:03:04 +00:00
|
|
|
return middleware.Validate(errs, ctx.Data, f, ctx.Locale)
|
|
|
|
}
|