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