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 (
"encoding/json"
2017-12-11 07:37:04 +03:00
"code.gitea.io/gitea/modules/util"
2017-02-04 18:53:46 +03:00
"github.com/Unknwon/com"
"github.com/go-xorm/xorm"
2019-06-23 18:22:43 +03:00
"xorm.io/core"
2017-02-04 18:53:46 +03:00
)
// RepoUnit describes all units of a repository
type RepoUnit struct {
ID int64
2017-10-02 23:22:25 +03:00
RepoID int64 ` xorm:"INDEX(s)" `
Type UnitType ` xorm:"INDEX(s)" `
2017-02-04 18:53:46 +03:00
Config core . Conversion ` xorm:"TEXT" `
2017-12-11 07:37:04 +03:00
CreatedUnix util . TimeStamp ` xorm:"INDEX CREATED" `
2017-02-04 18:53:46 +03:00
}
// UnitConfig describes common unit config
type UnitConfig struct {
}
// FromDB fills up a UnitConfig from serialized format.
func ( cfg * UnitConfig ) FromDB ( bs [ ] byte ) error {
return json . Unmarshal ( bs , & cfg )
}
// 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 {
return json . Unmarshal ( bs , & cfg )
}
// 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 {
return json . Unmarshal ( bs , & cfg )
}
// ToDB exports a ExternalTrackerConfig to a serialized format.
func ( cfg * ExternalTrackerConfig ) ToDB ( ) ( [ ] byte , error ) {
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 {
return json . Unmarshal ( bs , & cfg )
}
// ToDB exports a IssuesConfig to a serialized format.
func ( cfg * IssuesConfig ) ToDB ( ) ( [ ] byte , error ) {
return json . Marshal ( cfg )
}
2018-01-05 21:56:50 +03:00
// PullRequestsConfig describes pull requests config
type PullRequestsConfig struct {
IgnoreWhitespaceConflicts bool
AllowMerge bool
AllowRebase bool
2018-12-27 13:27:08 +03:00
AllowRebaseMerge bool
2018-01-05 21:56:50 +03:00
AllowSquash bool
}
// FromDB fills up a PullRequestsConfig from serialized format.
func ( cfg * PullRequestsConfig ) FromDB ( bs [ ] byte ) error {
return json . Unmarshal ( bs , & cfg )
}
// 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 13:27:08 +03:00
mergeStyle == MergeStyleRebaseMerge && cfg . AllowRebaseMerge ||
2018-01-05 21:56:50 +03:00
mergeStyle == MergeStyleSquash && cfg . AllowSquash
}
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 ) ) {
2018-01-05 21:56:50 +03:00
case UnitTypeCode , UnitTypeReleases , UnitTypeWiki :
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 :
panic ( "unrecognized repo unit type: " + com . ToStr ( * val ) )
}
}
}
// 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 ) {
return units , e . Where ( "repo_id = ?" , repoID ) . Find ( & units )
}