2017-02-04 23:53:46 +08: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.
2021-12-10 09:27:50 +08:00
package repo
2017-02-04 23:53:46 +08:00
import (
2020-12-25 09:59:32 +00:00
"fmt"
2017-12-11 12:37:04 +08:00
2021-09-19 19:49:59 +08:00
"code.gitea.io/gitea/models/db"
2021-11-10 03:57:58 +08:00
"code.gitea.io/gitea/models/unit"
2021-07-25 00:03:58 +08:00
"code.gitea.io/gitea/modules/json"
2019-08-15 22:46:21 +08:00
"code.gitea.io/gitea/modules/timeutil"
2017-02-04 23:53:46 +08:00
2019-10-17 17:26:49 +08:00
"xorm.io/xorm"
2020-03-22 23:12:55 +08:00
"xorm.io/xorm/convert"
2017-02-04 23:53:46 +08:00
)
2021-12-10 09:27:50 +08: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 ( ) )
}
2017-02-04 23:53:46 +08:00
// RepoUnit describes all units of a repository
2021-12-10 09:27:50 +08:00
type RepoUnit struct { //revive:disable-line:exported
2017-02-04 23:53:46 +08:00
ID int64
2019-08-15 22:46:21 +08:00
RepoID int64 ` xorm:"INDEX(s)" `
2021-11-10 03:57:58 +08:00
Type unit . Type ` xorm:"INDEX(s)" `
2020-03-22 23:12:55 +08:00
Config convert . Conversion ` xorm:"TEXT" `
2019-08-15 22:46:21 +08:00
CreatedUnix timeutil . TimeStamp ` xorm:"INDEX CREATED" `
2017-02-04 23:53:46 +08:00
}
2021-09-19 19:49:59 +08:00
func init ( ) {
db . RegisterModel ( new ( RepoUnit ) )
}
2017-02-04 23:53:46 +08:00
// UnitConfig describes common unit config
2021-03-15 02:52:12 +08:00
type UnitConfig struct { }
2017-02-04 23:53:46 +08:00
// FromDB fills up a UnitConfig from serialized format.
func ( cfg * UnitConfig ) FromDB ( bs [ ] byte ) error {
2021-12-10 09:27:50 +08:00
return json . UnmarshalHandleDoubleEncode ( bs , & cfg )
2017-02-04 23:53:46 +08: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-10 09:27:50 +08:00
return json . UnmarshalHandleDoubleEncode ( bs , & cfg )
2017-02-04 23:53:46 +08: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 {
ExternalTrackerURL string
ExternalTrackerFormat string
ExternalTrackerStyle string
}
// FromDB fills up a ExternalTrackerConfig from serialized format.
func ( cfg * ExternalTrackerConfig ) FromDB ( bs [ ] byte ) error {
2021-12-10 09:27:50 +08:00
return json . UnmarshalHandleDoubleEncode ( bs , & cfg )
2017-02-04 23:53:46 +08:00
}
// ToDB exports a ExternalTrackerConfig to a serialized format.
func ( cfg * ExternalTrackerConfig ) ToDB ( ) ( [ ] byte , error ) {
return json . Marshal ( cfg )
}
2017-09-12 08:48:13 +02:00
// IssuesConfig describes issues config
type IssuesConfig struct {
EnableTimetracker bool
AllowOnlyContributorsToTrackTime bool
2018-07-17 23:23:58 +02:00
EnableDependencies bool
2017-09-12 08:48:13 +02:00
}
// FromDB fills up a IssuesConfig from serialized format.
func ( cfg * IssuesConfig ) FromDB ( bs [ ] byte ) error {
2021-12-10 09:27:50 +08:00
return json . UnmarshalHandleDoubleEncode ( bs , & cfg )
2017-09-12 08:48:13 +02:00
}
// ToDB exports a IssuesConfig to a serialized format.
func ( cfg * IssuesConfig ) ToDB ( ) ( [ ] byte , error ) {
return json . Marshal ( cfg )
}
2018-01-05 20:56:50 +02:00
// PullRequestsConfig describes pull requests config
type PullRequestsConfig struct {
2021-07-13 01:26:25 +02:00
IgnoreWhitespaceConflicts bool
AllowMerge bool
AllowRebase bool
AllowRebaseMerge bool
AllowSquash bool
AllowManualMerge bool
AutodetectManualMerge bool
2022-03-04 09:30:49 +01:00
AllowRebaseUpdate bool
2021-07-13 01:26:25 +02:00
DefaultDeleteBranchAfterMerge bool
DefaultMergeStyle MergeStyle
2018-01-05 20:56:50 +02:00
}
// FromDB fills up a PullRequestsConfig from serialized format.
func ( cfg * PullRequestsConfig ) FromDB ( bs [ ] byte ) error {
2022-03-04 09:30:49 +01:00
// AllowRebaseUpdate = true as default for existing PullRequestConfig in DB
cfg . AllowRebaseUpdate = true
2021-12-10 09:27:50 +08:00
return json . UnmarshalHandleDoubleEncode ( bs , & cfg )
2018-01-05 20:56:50 +02: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 11:27:08 +01:00
mergeStyle == MergeStyleRebaseMerge && cfg . AllowRebaseMerge ||
2021-03-04 11:41:23 +08:00
mergeStyle == MergeStyleSquash && cfg . AllowSquash ||
mergeStyle == MergeStyleManuallyMerged && cfg . AllowManualMerge
2018-01-05 20:56:50 +02:00
}
2021-03-27 09:55:40 -05: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 14:58:12 +01: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 23:53:46 +08: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 21:12:35 +08:00
switch unit . Type ( db . Cell2Int64 ( val ) ) {
2021-11-10 03:57:58 +08:00
case unit . TypeCode , unit . TypeReleases , unit . TypeWiki , unit . TypeProjects :
2017-02-04 23:53:46 +08:00
r . Config = new ( UnitConfig )
2021-11-10 03:57:58 +08:00
case unit . TypeExternalWiki :
2017-02-04 23:53:46 +08:00
r . Config = new ( ExternalWikiConfig )
2021-11-10 03:57:58 +08:00
case unit . TypeExternalTracker :
2017-02-04 23:53:46 +08:00
r . Config = new ( ExternalTrackerConfig )
2021-11-10 03:57:58 +08:00
case unit . TypePullRequests :
2018-01-05 20:56:50 +02:00
r . Config = new ( PullRequestsConfig )
2021-11-10 03:57:58 +08:00
case unit . TypeIssues :
2017-09-12 08:48:13 +02:00
r . Config = new ( IssuesConfig )
2017-02-04 23:53:46 +08:00
default :
2020-12-25 09:59:32 +00:00
panic ( fmt . Sprintf ( "unrecognized repo unit type: %v" , * val ) )
2017-02-04 23:53:46 +08:00
}
}
}
// Unit returns Unit
2021-11-10 03:57:58 +08:00
func ( r * RepoUnit ) Unit ( ) unit . Unit {
return unit . Units [ r . Type ]
2017-02-04 23:53:46 +08:00
}
2021-11-10 03:57:58 +08:00
// CodeConfig returns config for unit.TypeCode
2017-02-04 23:53:46 +08:00
func ( r * RepoUnit ) CodeConfig ( ) * UnitConfig {
return r . Config . ( * UnitConfig )
}
2021-11-10 03:57:58 +08:00
// PullRequestsConfig returns config for unit.TypePullRequests
2018-01-05 20:56:50 +02:00
func ( r * RepoUnit ) PullRequestsConfig ( ) * PullRequestsConfig {
return r . Config . ( * PullRequestsConfig )
2017-02-04 23:53:46 +08:00
}
2021-11-10 03:57:58 +08:00
// ReleasesConfig returns config for unit.TypeReleases
2017-02-04 23:53:46 +08:00
func ( r * RepoUnit ) ReleasesConfig ( ) * UnitConfig {
return r . Config . ( * UnitConfig )
}
2021-11-10 03:57:58 +08:00
// ExternalWikiConfig returns config for unit.TypeExternalWiki
2017-02-04 23:53:46 +08:00
func ( r * RepoUnit ) ExternalWikiConfig ( ) * ExternalWikiConfig {
return r . Config . ( * ExternalWikiConfig )
}
2021-11-10 03:57:58 +08:00
// IssuesConfig returns config for unit.TypeIssues
2017-09-12 08:48:13 +02:00
func ( r * RepoUnit ) IssuesConfig ( ) * IssuesConfig {
return r . Config . ( * IssuesConfig )
}
2021-11-10 03:57:58 +08:00
// ExternalTrackerConfig returns config for unit.TypeExternalTracker
2017-02-04 23:53:46 +08:00
func ( r * RepoUnit ) ExternalTrackerConfig ( ) * ExternalTrackerConfig {
return r . Config . ( * ExternalTrackerConfig )
}
2018-11-28 19:26:14 +08:00
2021-09-19 19:49:59 +08:00
func getUnitsByRepoID ( e db . Engine , repoID int64 ) ( units [ ] * RepoUnit , err error ) {
2020-01-17 08:34:37 +01: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 22:54:24 +08:00
}
2021-09-27 16:55:12 +01:00
// UpdateRepoUnit updates the provided repo unit
func UpdateRepoUnit ( unit * RepoUnit ) error {
_ , err := db . GetEngine ( db . DefaultContext ) . ID ( unit . ID ) . Update ( unit )
return err
}
2021-12-12 23:48:20 +08:00
// UpdateRepositoryUnits updates a repository's units
func UpdateRepositoryUnits ( repo * Repository , units [ ] RepoUnit , deleteUnitTypes [ ] unit . Type ) ( err error ) {
ctx , committer , err := db . TxContext ( )
if err != nil {
return err
}
defer committer . Close ( )
// Delete existing settings of units before adding again
for _ , u := range units {
deleteUnitTypes = append ( deleteUnitTypes , u . Type )
}
if _ , err = db . GetEngine ( ctx ) . Where ( "repo_id = ?" , repo . ID ) . In ( "type" , deleteUnitTypes ) . Delete ( new ( RepoUnit ) ) ; err != nil {
return err
}
if len ( units ) > 0 {
if err = db . Insert ( ctx , units ) ; err != nil {
return err
}
}
return committer . Commit ( )
}