2014-06-24 22:44:48 -06:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-02-18 09:00:27 -07:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-06-24 22:44:48 -06:00
|
|
|
|
2021-01-26 08:36:53 -07:00
|
|
|
package forms
|
2014-06-24 22:44:48 -06:00
|
|
|
|
|
|
|
import (
|
2021-01-26 08:36:53 -07:00
|
|
|
"net/http"
|
|
|
|
|
2019-02-18 09:00:27 -07:00
|
|
|
"code.gitea.io/gitea/modules/structs"
|
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"
|
2017-05-18 08:54:24 -06:00
|
|
|
|
2021-01-26 08:36:53 -07:00
|
|
|
"gitea.com/go-chi/binding"
|
2014-06-24 22:44:48 -06:00
|
|
|
)
|
|
|
|
|
2014-07-02 14:42:16 -06:00
|
|
|
// ________ .__ __ .__
|
|
|
|
// \_____ \_______ _________ ____ |__|____________ _/ |_|__| ____ ____
|
|
|
|
// / | \_ __ \/ ___\__ \ / \| \___ /\__ \\ __\ |/ _ \ / \
|
|
|
|
// / | \ | \/ /_/ > __ \| | \ |/ / / __ \| | | ( <_> ) | \
|
|
|
|
// \_______ /__| \___ (____ /___| /__/_____ \(____ /__| |__|\____/|___| /
|
|
|
|
// \/ /_____/ \/ \/ \/ \/ \/
|
|
|
|
|
2016-11-26 23:03:59 -07:00
|
|
|
// CreateOrgForm form for creating organization
|
2014-06-27 01:37:01 -06:00
|
|
|
type CreateOrgForm struct {
|
2022-11-04 03:04:08 -06:00
|
|
|
OrgName string `binding:"Required;Username;MaxSize(40)" locale:"org.org_name_holder"`
|
2019-10-14 12:20:42 -06:00
|
|
|
Visibility structs.VisibleType
|
|
|
|
RepoAdminChangeTeamAccess bool
|
2014-06-24 22:44:48 -06:00
|
|
|
}
|
|
|
|
|
2017-03-14 18:52:01 -06:00
|
|
|
// Validate validates the fields
|
2021-01-26 08:36:53 -07:00
|
|
|
func (f *CreateOrgForm) 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)
|
2014-06-24 22:44:48 -06:00
|
|
|
}
|
2014-06-27 01:37:01 -06:00
|
|
|
|
2016-11-26 23:03:59 -07:00
|
|
|
// UpdateOrgSettingForm form for updating organization settings
|
2014-08-14 00:12:21 -06:00
|
|
|
type UpdateOrgSettingForm struct {
|
2022-11-04 03:04:08 -06:00
|
|
|
Name string `binding:"Required;Username;MaxSize(40)" locale:"org.org_name_holder"`
|
2019-09-23 14:08:03 -06:00
|
|
|
FullName string `binding:"MaxSize(100)"`
|
2023-07-25 02:26:27 -06:00
|
|
|
Email string `binding:"MaxSize(255)"`
|
2019-09-23 14:08:03 -06:00
|
|
|
Description string `binding:"MaxSize(255)"`
|
|
|
|
Website string `binding:"ValidUrl;MaxSize(255)"`
|
|
|
|
Location string `binding:"MaxSize(50)"`
|
|
|
|
Visibility structs.VisibleType
|
|
|
|
MaxRepoCreation int
|
|
|
|
RepoAdminChangeTeamAccess bool
|
2014-06-27 01:37:01 -06:00
|
|
|
}
|
|
|
|
|
2017-03-14 18:52:01 -06:00
|
|
|
// Validate validates the fields
|
2021-01-26 08:36:53 -07:00
|
|
|
func (f *UpdateOrgSettingForm) 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)
|
2014-06-27 01:37:01 -06:00
|
|
|
}
|
2014-07-02 14:42:16 -06:00
|
|
|
|
|
|
|
// ___________
|
|
|
|
// \__ ___/___ _____ _____
|
|
|
|
// | |_/ __ \\__ \ / \
|
|
|
|
// | |\ ___/ / __ \| Y Y \
|
|
|
|
// |____| \___ >____ /__|_| /
|
|
|
|
// \/ \/ \/
|
|
|
|
|
2016-11-26 23:03:59 -07:00
|
|
|
// CreateTeamForm form for creating team
|
2014-07-02 14:42:16 -06:00
|
|
|
type CreateTeamForm struct {
|
2019-11-20 04:27:49 -07:00
|
|
|
TeamName string `binding:"Required;AlphaDashDot;MaxSize(30)"`
|
|
|
|
Description string `binding:"MaxSize(255)"`
|
|
|
|
Permission string
|
|
|
|
RepoAccess string
|
|
|
|
CanCreateOrgRepo bool
|
2014-07-02 14:42:16 -06:00
|
|
|
}
|
|
|
|
|
2017-03-14 18:52:01 -06:00
|
|
|
// Validate validates the fields
|
2021-01-26 08:36:53 -07:00
|
|
|
func (f *CreateTeamForm) 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)
|
2014-07-02 14:42:16 -06:00
|
|
|
}
|