2017-02-04 18:53:46 +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 models
import (
2020-12-25 12:59:32 +03:00
"fmt"
2017-12-11 07:37:04 +03:00
2019-08-15 17:46:21 +03:00
"code.gitea.io/gitea/modules/timeutil"
2017-02-04 18:53:46 +03:00
2021-03-02 00:08:10 +03:00
jsoniter "github.com/json-iterator/go"
2019-10-17 12:26:49 +03:00
"xorm.io/xorm"
2020-03-22 18:12:55 +03:00
"xorm.io/xorm/convert"
2017-02-04 18:53:46 +03:00
)
// RepoUnit describes all units of a repository
type RepoUnit struct {
ID int64
2019-08-15 17:46:21 +03:00
RepoID int64 ` xorm:"INDEX(s)" `
Type UnitType ` xorm:"INDEX(s)" `
2020-03-22 18:12:55 +03:00
Config convert . Conversion ` xorm:"TEXT" `
2019-08-15 17:46:21 +03:00
CreatedUnix timeutil . TimeStamp ` xorm:"INDEX CREATED" `
2017-02-04 18:53:46 +03:00
}
// UnitConfig describes common unit config
2021-03-14 21:52:12 +03:00
type UnitConfig struct { }
2017-02-04 18:53:46 +03:00
// FromDB fills up a UnitConfig from serialized format.
func ( cfg * UnitConfig ) FromDB ( bs [ ] byte ) error {
2021-07-24 13:16:34 +03:00
return JSONUnmarshalHandleDoubleEncode ( bs , & cfg )
2017-02-04 18:53:46 +03:00
}
// ToDB exports a UnitConfig to a serialized format.
func ( cfg * UnitConfig ) ToDB ( ) ( [ ] byte , error ) {
2021-03-02 00:08:10 +03:00
json := jsoniter . ConfigCompatibleWithStandardLibrary
2017-02-04 18:53:46 +03:00
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-07-24 13:16:34 +03:00
return JSONUnmarshalHandleDoubleEncode ( bs , & cfg )
2017-02-04 18:53:46 +03:00
}
// ToDB exports a ExternalWikiConfig to a serialized format.
func ( cfg * ExternalWikiConfig ) ToDB ( ) ( [ ] byte , error ) {
2021-03-02 00:08:10 +03:00
json := jsoniter . ConfigCompatibleWithStandardLibrary
2017-02-04 18:53:46 +03:00
return json . Marshal ( cfg )
}
// ExternalTrackerConfig describes external tracker config
type ExternalTrackerConfig struct {
ExternalTrackerURL string
ExternalTrackerFormat string
ExternalTrackerStyle string
}
// FromDB fills up a ExternalTrackerConfig from serialized format.
func ( cfg * ExternalTrackerConfig ) FromDB ( bs [ ] byte ) error {
2021-07-24 13:16:34 +03:00
return JSONUnmarshalHandleDoubleEncode ( bs , & cfg )
2017-02-04 18:53:46 +03:00
}
// ToDB exports a ExternalTrackerConfig to a serialized format.
func ( cfg * ExternalTrackerConfig ) ToDB ( ) ( [ ] byte , error ) {
2021-03-02 00:08:10 +03:00
json := jsoniter . ConfigCompatibleWithStandardLibrary
2017-02-04 18:53:46 +03:00
return json . Marshal ( cfg )
}
2017-09-12 09:48:13 +03:00
// IssuesConfig describes issues config
type IssuesConfig struct {
EnableTimetracker bool
AllowOnlyContributorsToTrackTime bool
2018-07-18 00:23:58 +03:00
EnableDependencies bool
2017-09-12 09:48:13 +03:00
}
// FromDB fills up a IssuesConfig from serialized format.
func ( cfg * IssuesConfig ) FromDB ( bs [ ] byte ) error {
2021-07-24 13:16:34 +03:00
return JSONUnmarshalHandleDoubleEncode ( bs , & cfg )
2017-09-12 09:48:13 +03:00
}
// ToDB exports a IssuesConfig to a serialized format.
func ( cfg * IssuesConfig ) ToDB ( ) ( [ ] byte , error ) {
2021-03-02 00:08:10 +03:00
json := jsoniter . ConfigCompatibleWithStandardLibrary
2017-09-12 09:48:13 +03:00
return json . Marshal ( cfg )
}
2018-01-05 21:56:50 +03:00
// PullRequestsConfig describes pull requests config
type PullRequestsConfig struct {
2021-07-13 02:26:25 +03:00
IgnoreWhitespaceConflicts bool
AllowMerge bool
AllowRebase bool
AllowRebaseMerge bool
AllowSquash bool
AllowManualMerge bool
AutodetectManualMerge bool
DefaultDeleteBranchAfterMerge bool
DefaultMergeStyle MergeStyle
2018-01-05 21:56:50 +03:00
}
// FromDB fills up a PullRequestsConfig from serialized format.
func ( cfg * PullRequestsConfig ) FromDB ( bs [ ] byte ) error {
2021-07-24 13:16:34 +03:00
return JSONUnmarshalHandleDoubleEncode ( bs , & cfg )
2018-01-05 21:56:50 +03:00
}
// ToDB exports a PullRequestsConfig to a serialized format.
func ( cfg * PullRequestsConfig ) ToDB ( ) ( [ ] byte , error ) {
2021-03-02 00:08:10 +03:00
json := jsoniter . ConfigCompatibleWithStandardLibrary
2018-01-05 21:56:50 +03:00
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 13:27:08 +03:00
mergeStyle == MergeStyleRebaseMerge && cfg . AllowRebaseMerge ||
2021-03-04 06:41:23 +03:00
mergeStyle == MergeStyleSquash && cfg . AllowSquash ||
mergeStyle == MergeStyleManuallyMerged && cfg . AllowManualMerge
2018-01-05 21:56:50 +03:00
}
2021-03-27 17:55:40 +03:00
// GetDefaultMergeStyle returns the default merge style for this pull request
func ( cfg * PullRequestsConfig ) GetDefaultMergeStyle ( ) MergeStyle {
if len ( cfg . DefaultMergeStyle ) != 0 {
return cfg . DefaultMergeStyle
}
return MergeStyleMerge
}
2020-11-22 16:58:12 +03:00
// AllowedMergeStyleCount returns the total count of allowed merge styles for the PullRequestsConfig
func ( cfg * PullRequestsConfig ) AllowedMergeStyleCount ( ) int {
count := 0
if cfg . AllowMerge {
count ++
}
if cfg . AllowRebase {
count ++
}
if cfg . AllowRebaseMerge {
count ++
}
if cfg . AllowSquash {
count ++
}
return count
}
2017-02-04 18:53:46 +03: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" :
switch UnitType ( Cell2Int64 ( val ) ) {
2020-08-17 06:07:38 +03:00
case UnitTypeCode , UnitTypeReleases , UnitTypeWiki , UnitTypeProjects :
2017-02-04 18:53:46 +03:00
r . Config = new ( UnitConfig )
case UnitTypeExternalWiki :
r . Config = new ( ExternalWikiConfig )
case UnitTypeExternalTracker :
r . Config = new ( ExternalTrackerConfig )
2018-01-05 21:56:50 +03:00
case UnitTypePullRequests :
r . Config = new ( PullRequestsConfig )
2017-09-12 09:48:13 +03:00
case UnitTypeIssues :
r . Config = new ( IssuesConfig )
2017-02-04 18:53:46 +03:00
default :
2020-12-25 12:59:32 +03:00
panic ( fmt . Sprintf ( "unrecognized repo unit type: %v" , * val ) )
2017-02-04 18:53:46 +03:00
}
}
}
// Unit returns Unit
func ( r * RepoUnit ) Unit ( ) Unit {
return Units [ r . Type ]
}
// CodeConfig returns config for UnitTypeCode
func ( r * RepoUnit ) CodeConfig ( ) * UnitConfig {
return r . Config . ( * UnitConfig )
}
// PullRequestsConfig returns config for UnitTypePullRequests
2018-01-05 21:56:50 +03:00
func ( r * RepoUnit ) PullRequestsConfig ( ) * PullRequestsConfig {
return r . Config . ( * PullRequestsConfig )
2017-02-04 18:53:46 +03:00
}
// ReleasesConfig returns config for UnitTypeReleases
func ( r * RepoUnit ) ReleasesConfig ( ) * UnitConfig {
return r . Config . ( * UnitConfig )
}
// ExternalWikiConfig returns config for UnitTypeExternalWiki
func ( r * RepoUnit ) ExternalWikiConfig ( ) * ExternalWikiConfig {
return r . Config . ( * ExternalWikiConfig )
}
2017-09-12 09:48:13 +03:00
// IssuesConfig returns config for UnitTypeIssues
func ( r * RepoUnit ) IssuesConfig ( ) * IssuesConfig {
return r . Config . ( * IssuesConfig )
}
2017-02-04 18:53:46 +03:00
// ExternalTrackerConfig returns config for UnitTypeExternalTracker
func ( r * RepoUnit ) ExternalTrackerConfig ( ) * ExternalTrackerConfig {
return r . Config . ( * ExternalTrackerConfig )
}
2018-11-28 14:26:14 +03:00
2017-05-18 17:54:24 +03:00
func getUnitsByRepoID ( e Engine , repoID int64 ) ( units [ ] * RepoUnit , err error ) {
2020-01-17 10:34:37 +03:00
var tmpUnits [ ] * RepoUnit
if err := e . Where ( "repo_id = ?" , repoID ) . Find ( & tmpUnits ) ; err != nil {
return nil , err
}
for _ , u := range tmpUnits {
if ! u . Type . UnitGlobalDisabled ( ) {
units = append ( units , u )
}
}
return units , nil
2017-05-18 17:54:24 +03:00
}