2017-02-04 08:53:46 -07:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-02-04 08:53:46 -07:00
|
|
|
|
2021-12-09 18:27:50 -07:00
|
|
|
package repo
|
2017-02-04 08:53:46 -07:00
|
|
|
|
|
|
|
import (
|
2022-05-20 08:08:52 -06:00
|
|
|
"context"
|
2020-12-25 02:59:32 -07:00
|
|
|
"fmt"
|
2023-09-07 03:37:47 -06:00
|
|
|
"slices"
|
2023-08-14 09:14:30 -06:00
|
|
|
"strings"
|
2017-12-10 21:37:04 -07:00
|
|
|
|
2021-09-19 05:49:59 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2024-04-17 09:58:37 -06:00
|
|
|
"code.gitea.io/gitea/models/perm"
|
2021-11-09 12:57:58 -07:00
|
|
|
"code.gitea.io/gitea/models/unit"
|
2021-07-24 10:03:58 -06:00
|
|
|
"code.gitea.io/gitea/modules/json"
|
2022-06-02 21:45:54 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-15 08:46:21 -06:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2022-10-17 23:50:37 -06:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2017-02-04 08:53:46 -07:00
|
|
|
|
2019-10-17 03:26:49 -06:00
|
|
|
"xorm.io/xorm"
|
2020-03-22 09:12:55 -06:00
|
|
|
"xorm.io/xorm/convert"
|
2017-02-04 08:53:46 -07:00
|
|
|
)
|
|
|
|
|
2021-12-09 18:27:50 -07:00
|
|
|
// ErrUnitTypeNotExist represents a "UnitTypeNotExist" kind of error.
|
|
|
|
type ErrUnitTypeNotExist struct {
|
|
|
|
UT unit.Type
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrUnitTypeNotExist checks if an error is a ErrUnitNotExist.
|
|
|
|
func IsErrUnitTypeNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrUnitTypeNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrUnitTypeNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("Unit type does not exist: %s", err.UT.String())
|
|
|
|
}
|
|
|
|
|
2022-10-17 23:50:37 -06:00
|
|
|
func (err ErrUnitTypeNotExist) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
|
|
|
}
|
|
|
|
|
2017-02-04 08:53:46 -07:00
|
|
|
// RepoUnit describes all units of a repository
|
2021-12-09 18:27:50 -07:00
|
|
|
type RepoUnit struct { //revive:disable-line:exported
|
2024-04-17 09:58:37 -06:00
|
|
|
ID int64
|
|
|
|
RepoID int64 `xorm:"INDEX(s)"`
|
|
|
|
Type unit.Type `xorm:"INDEX(s)"`
|
|
|
|
Config convert.Conversion `xorm:"TEXT"`
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX CREATED"`
|
|
|
|
EveryoneAccessMode perm.AccessMode `xorm:"NOT NULL DEFAULT 0"`
|
2017-02-04 08:53:46 -07:00
|
|
|
}
|
|
|
|
|
2021-09-19 05:49:59 -06:00
|
|
|
func init() {
|
|
|
|
db.RegisterModel(new(RepoUnit))
|
|
|
|
}
|
|
|
|
|
2017-02-04 08:53:46 -07:00
|
|
|
// UnitConfig describes common unit config
|
2021-03-14 12:52:12 -06:00
|
|
|
type UnitConfig struct{}
|
2017-02-04 08:53:46 -07:00
|
|
|
|
|
|
|
// FromDB fills up a UnitConfig from serialized format.
|
|
|
|
func (cfg *UnitConfig) FromDB(bs []byte) error {
|
2021-12-09 18:27:50 -07:00
|
|
|
return json.UnmarshalHandleDoubleEncode(bs, &cfg)
|
2017-02-04 08:53:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports a UnitConfig to a serialized format.
|
|
|
|
func (cfg *UnitConfig) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(cfg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExternalWikiConfig describes external wiki config
|
|
|
|
type ExternalWikiConfig struct {
|
|
|
|
ExternalWikiURL string
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromDB fills up a ExternalWikiConfig from serialized format.
|
|
|
|
func (cfg *ExternalWikiConfig) FromDB(bs []byte) error {
|
2021-12-09 18:27:50 -07:00
|
|
|
return json.UnmarshalHandleDoubleEncode(bs, &cfg)
|
2017-02-04 08:53:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports a ExternalWikiConfig to a serialized format.
|
|
|
|
func (cfg *ExternalWikiConfig) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(cfg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExternalTrackerConfig describes external tracker config
|
|
|
|
type ExternalTrackerConfig struct {
|
2022-06-09 23:39:53 -06:00
|
|
|
ExternalTrackerURL string
|
|
|
|
ExternalTrackerFormat string
|
|
|
|
ExternalTrackerStyle string
|
|
|
|
ExternalTrackerRegexpPattern string
|
2017-02-04 08:53:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// FromDB fills up a ExternalTrackerConfig from serialized format.
|
|
|
|
func (cfg *ExternalTrackerConfig) FromDB(bs []byte) error {
|
2021-12-09 18:27:50 -07:00
|
|
|
return json.UnmarshalHandleDoubleEncode(bs, &cfg)
|
2017-02-04 08:53:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports a ExternalTrackerConfig to a serialized format.
|
|
|
|
func (cfg *ExternalTrackerConfig) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(cfg)
|
|
|
|
}
|
|
|
|
|
2017-09-12 00:48:13 -06:00
|
|
|
// IssuesConfig describes issues config
|
|
|
|
type IssuesConfig struct {
|
|
|
|
EnableTimetracker bool
|
|
|
|
AllowOnlyContributorsToTrackTime bool
|
2018-07-17 15:23:58 -06:00
|
|
|
EnableDependencies bool
|
2017-09-12 00:48:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// FromDB fills up a IssuesConfig from serialized format.
|
|
|
|
func (cfg *IssuesConfig) FromDB(bs []byte) error {
|
2021-12-09 18:27:50 -07:00
|
|
|
return json.UnmarshalHandleDoubleEncode(bs, &cfg)
|
2017-09-12 00:48:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports a IssuesConfig to a serialized format.
|
|
|
|
func (cfg *IssuesConfig) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(cfg)
|
|
|
|
}
|
|
|
|
|
2018-01-05 11:56:50 -07:00
|
|
|
// PullRequestsConfig describes pull requests config
|
|
|
|
type PullRequestsConfig struct {
|
2021-07-12 17:26:25 -06:00
|
|
|
IgnoreWhitespaceConflicts bool
|
|
|
|
AllowMerge bool
|
|
|
|
AllowRebase bool
|
|
|
|
AllowRebaseMerge bool
|
|
|
|
AllowSquash bool
|
2024-02-12 15:37:23 -07:00
|
|
|
AllowFastForwardOnly bool
|
2021-07-12 17:26:25 -06:00
|
|
|
AllowManualMerge bool
|
|
|
|
AutodetectManualMerge bool
|
2022-03-04 01:30:49 -07:00
|
|
|
AllowRebaseUpdate bool
|
2021-07-12 17:26:25 -06:00
|
|
|
DefaultDeleteBranchAfterMerge bool
|
|
|
|
DefaultMergeStyle MergeStyle
|
2023-02-12 23:09:52 -07:00
|
|
|
DefaultAllowMaintainerEdit bool
|
2018-01-05 11:56:50 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// FromDB fills up a PullRequestsConfig from serialized format.
|
|
|
|
func (cfg *PullRequestsConfig) FromDB(bs []byte) error {
|
2022-03-04 01:30:49 -07:00
|
|
|
// AllowRebaseUpdate = true as default for existing PullRequestConfig in DB
|
|
|
|
cfg.AllowRebaseUpdate = true
|
2021-12-09 18:27:50 -07:00
|
|
|
return json.UnmarshalHandleDoubleEncode(bs, &cfg)
|
2018-01-05 11:56:50 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports a PullRequestsConfig to a serialized format.
|
|
|
|
func (cfg *PullRequestsConfig) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(cfg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsMergeStyleAllowed returns if merge style is allowed
|
|
|
|
func (cfg *PullRequestsConfig) IsMergeStyleAllowed(mergeStyle MergeStyle) bool {
|
|
|
|
return mergeStyle == MergeStyleMerge && cfg.AllowMerge ||
|
|
|
|
mergeStyle == MergeStyleRebase && cfg.AllowRebase ||
|
2018-12-27 03:27:08 -07:00
|
|
|
mergeStyle == MergeStyleRebaseMerge && cfg.AllowRebaseMerge ||
|
2021-03-03 20:41:23 -07:00
|
|
|
mergeStyle == MergeStyleSquash && cfg.AllowSquash ||
|
2024-02-12 15:37:23 -07:00
|
|
|
mergeStyle == MergeStyleFastForwardOnly && cfg.AllowFastForwardOnly ||
|
2021-03-03 20:41:23 -07:00
|
|
|
mergeStyle == MergeStyleManuallyMerged && cfg.AllowManualMerge
|
2018-01-05 11:56:50 -07:00
|
|
|
}
|
|
|
|
|
2021-03-27 08:55:40 -06:00
|
|
|
// GetDefaultMergeStyle returns the default merge style for this pull request
|
|
|
|
func (cfg *PullRequestsConfig) GetDefaultMergeStyle() MergeStyle {
|
|
|
|
if len(cfg.DefaultMergeStyle) != 0 {
|
|
|
|
return cfg.DefaultMergeStyle
|
|
|
|
}
|
|
|
|
|
2022-06-02 21:45:54 -06:00
|
|
|
if setting.Repository.PullRequest.DefaultMergeStyle != "" {
|
|
|
|
return MergeStyle(setting.Repository.PullRequest.DefaultMergeStyle)
|
|
|
|
}
|
|
|
|
|
2021-03-27 08:55:40 -06:00
|
|
|
return MergeStyleMerge
|
|
|
|
}
|
|
|
|
|
2023-08-14 09:14:30 -06:00
|
|
|
type ActionsConfig struct {
|
|
|
|
DisabledWorkflows []string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *ActionsConfig) EnableWorkflow(file string) {
|
|
|
|
cfg.DisabledWorkflows = util.SliceRemoveAll(cfg.DisabledWorkflows, file)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *ActionsConfig) ToString() string {
|
|
|
|
return strings.Join(cfg.DisabledWorkflows, ",")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *ActionsConfig) IsWorkflowDisabled(file string) bool {
|
2023-09-07 03:37:47 -06:00
|
|
|
return slices.Contains(cfg.DisabledWorkflows, file)
|
2023-08-14 09:14:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *ActionsConfig) DisableWorkflow(file string) {
|
|
|
|
for _, workflow := range cfg.DisabledWorkflows {
|
|
|
|
if file == workflow {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cfg.DisabledWorkflows = append(cfg.DisabledWorkflows, file)
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromDB fills up a ActionsConfig from serialized format.
|
|
|
|
func (cfg *ActionsConfig) FromDB(bs []byte) error {
|
|
|
|
return json.UnmarshalHandleDoubleEncode(bs, &cfg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports a ActionsConfig to a serialized format.
|
|
|
|
func (cfg *ActionsConfig) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(cfg)
|
|
|
|
}
|
|
|
|
|
2024-03-03 19:56:52 -07:00
|
|
|
// ProjectsMode represents the projects enabled for a repository
|
|
|
|
type ProjectsMode string
|
|
|
|
|
|
|
|
const (
|
|
|
|
// ProjectsModeRepo allows only repo-level projects
|
|
|
|
ProjectsModeRepo ProjectsMode = "repo"
|
|
|
|
// ProjectsModeOwner allows only owner-level projects
|
|
|
|
ProjectsModeOwner ProjectsMode = "owner"
|
|
|
|
// ProjectsModeAll allows both kinds of projects
|
|
|
|
ProjectsModeAll ProjectsMode = "all"
|
|
|
|
// ProjectsModeNone doesn't allow projects
|
|
|
|
ProjectsModeNone ProjectsMode = "none"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ProjectsConfig describes projects config
|
|
|
|
type ProjectsConfig struct {
|
|
|
|
ProjectsMode ProjectsMode
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromDB fills up a ProjectsConfig from serialized format.
|
|
|
|
func (cfg *ProjectsConfig) FromDB(bs []byte) error {
|
|
|
|
return json.UnmarshalHandleDoubleEncode(bs, &cfg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToDB exports a ProjectsConfig to a serialized format.
|
|
|
|
func (cfg *ProjectsConfig) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(cfg)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *ProjectsConfig) GetProjectsMode() ProjectsMode {
|
|
|
|
if cfg.ProjectsMode != "" {
|
|
|
|
return cfg.ProjectsMode
|
|
|
|
}
|
|
|
|
|
2024-03-04 13:49:21 -07:00
|
|
|
return ProjectsModeAll
|
2024-03-03 19:56:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *ProjectsConfig) IsProjectsAllowed(m ProjectsMode) bool {
|
|
|
|
projectsMode := cfg.GetProjectsMode()
|
|
|
|
|
|
|
|
if m == ProjectsModeNone {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return projectsMode == m || projectsMode == ProjectsModeAll
|
|
|
|
}
|
|
|
|
|
2017-02-04 08:53:46 -07:00
|
|
|
// BeforeSet is invoked from XORM before setting the value of a field of this object.
|
|
|
|
func (r *RepoUnit) BeforeSet(colName string, val xorm.Cell) {
|
|
|
|
switch colName {
|
|
|
|
case "type":
|
2022-01-02 06:12:35 -07:00
|
|
|
switch unit.Type(db.Cell2Int64(val)) {
|
2021-11-09 12:57:58 -07:00
|
|
|
case unit.TypeExternalWiki:
|
2017-02-04 08:53:46 -07:00
|
|
|
r.Config = new(ExternalWikiConfig)
|
2021-11-09 12:57:58 -07:00
|
|
|
case unit.TypeExternalTracker:
|
2017-02-04 08:53:46 -07:00
|
|
|
r.Config = new(ExternalTrackerConfig)
|
2021-11-09 12:57:58 -07:00
|
|
|
case unit.TypePullRequests:
|
2018-01-05 11:56:50 -07:00
|
|
|
r.Config = new(PullRequestsConfig)
|
2021-11-09 12:57:58 -07:00
|
|
|
case unit.TypeIssues:
|
2017-09-12 00:48:13 -06:00
|
|
|
r.Config = new(IssuesConfig)
|
2023-08-14 09:14:30 -06:00
|
|
|
case unit.TypeActions:
|
|
|
|
r.Config = new(ActionsConfig)
|
2024-03-03 19:56:52 -07:00
|
|
|
case unit.TypeProjects:
|
|
|
|
r.Config = new(ProjectsConfig)
|
|
|
|
case unit.TypeCode, unit.TypeReleases, unit.TypeWiki, unit.TypePackages:
|
2022-05-08 06:32:45 -06:00
|
|
|
fallthrough
|
2017-02-04 08:53:46 -07:00
|
|
|
default:
|
2022-05-08 06:32:45 -06:00
|
|
|
r.Config = new(UnitConfig)
|
2017-02-04 08:53:46 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unit returns Unit
|
2021-11-09 12:57:58 -07:00
|
|
|
func (r *RepoUnit) Unit() unit.Unit {
|
|
|
|
return unit.Units[r.Type]
|
2017-02-04 08:53:46 -07:00
|
|
|
}
|
|
|
|
|
2021-11-09 12:57:58 -07:00
|
|
|
// CodeConfig returns config for unit.TypeCode
|
2017-02-04 08:53:46 -07:00
|
|
|
func (r *RepoUnit) CodeConfig() *UnitConfig {
|
|
|
|
return r.Config.(*UnitConfig)
|
|
|
|
}
|
|
|
|
|
2021-11-09 12:57:58 -07:00
|
|
|
// PullRequestsConfig returns config for unit.TypePullRequests
|
2018-01-05 11:56:50 -07:00
|
|
|
func (r *RepoUnit) PullRequestsConfig() *PullRequestsConfig {
|
|
|
|
return r.Config.(*PullRequestsConfig)
|
2017-02-04 08:53:46 -07:00
|
|
|
}
|
|
|
|
|
2021-11-09 12:57:58 -07:00
|
|
|
// ReleasesConfig returns config for unit.TypeReleases
|
2017-02-04 08:53:46 -07:00
|
|
|
func (r *RepoUnit) ReleasesConfig() *UnitConfig {
|
|
|
|
return r.Config.(*UnitConfig)
|
|
|
|
}
|
|
|
|
|
2021-11-09 12:57:58 -07:00
|
|
|
// ExternalWikiConfig returns config for unit.TypeExternalWiki
|
2017-02-04 08:53:46 -07:00
|
|
|
func (r *RepoUnit) ExternalWikiConfig() *ExternalWikiConfig {
|
|
|
|
return r.Config.(*ExternalWikiConfig)
|
|
|
|
}
|
|
|
|
|
2021-11-09 12:57:58 -07:00
|
|
|
// IssuesConfig returns config for unit.TypeIssues
|
2017-09-12 00:48:13 -06:00
|
|
|
func (r *RepoUnit) IssuesConfig() *IssuesConfig {
|
|
|
|
return r.Config.(*IssuesConfig)
|
|
|
|
}
|
|
|
|
|
2021-11-09 12:57:58 -07:00
|
|
|
// ExternalTrackerConfig returns config for unit.TypeExternalTracker
|
2017-02-04 08:53:46 -07:00
|
|
|
func (r *RepoUnit) ExternalTrackerConfig() *ExternalTrackerConfig {
|
|
|
|
return r.Config.(*ExternalTrackerConfig)
|
|
|
|
}
|
2018-11-28 04:26:14 -07:00
|
|
|
|
2023-08-14 09:14:30 -06:00
|
|
|
// ActionsConfig returns config for unit.ActionsConfig
|
|
|
|
func (r *RepoUnit) ActionsConfig() *ActionsConfig {
|
|
|
|
return r.Config.(*ActionsConfig)
|
|
|
|
}
|
|
|
|
|
2024-03-03 19:56:52 -07:00
|
|
|
// ProjectsConfig returns config for unit.ProjectsConfig
|
|
|
|
func (r *RepoUnit) ProjectsConfig() *ProjectsConfig {
|
|
|
|
return r.Config.(*ProjectsConfig)
|
|
|
|
}
|
|
|
|
|
2022-05-20 08:08:52 -06:00
|
|
|
func getUnitsByRepoID(ctx context.Context, repoID int64) (units []*RepoUnit, err error) {
|
2020-01-17 00:34:37 -07:00
|
|
|
var tmpUnits []*RepoUnit
|
2022-05-20 08:08:52 -06:00
|
|
|
if err := db.GetEngine(ctx).Where("repo_id = ?", repoID).Find(&tmpUnits); err != nil {
|
2020-01-17 00:34:37 -07:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, u := range tmpUnits {
|
|
|
|
if !u.Type.UnitGlobalDisabled() {
|
|
|
|
units = append(units, u)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return units, nil
|
2017-05-18 08:54:24 -06:00
|
|
|
}
|
2021-09-27 09:55:12 -06:00
|
|
|
|
|
|
|
// UpdateRepoUnit updates the provided repo unit
|
2023-10-03 04:30:41 -06:00
|
|
|
func UpdateRepoUnit(ctx context.Context, unit *RepoUnit) error {
|
|
|
|
_, err := db.GetEngine(ctx).ID(unit.ID).Update(unit)
|
2021-09-27 09:55:12 -06:00
|
|
|
return err
|
|
|
|
}
|