2017-02-04 21:23:46 +05:30
|
|
|
// 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 10:07:04 +05:30
|
|
|
|
2019-08-15 20:16:21 +05:30
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2017-02-04 21:23:46 +05:30
|
|
|
|
2019-08-23 22:10:30 +05:30
|
|
|
"github.com/unknwon/com"
|
2019-10-17 14:56:49 +05:30
|
|
|
"xorm.io/xorm"
|
2020-03-22 20:42:55 +05:30
|
|
|
"xorm.io/xorm/convert"
|
2017-02-04 21:23:46 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// RepoUnit describes all units of a repository
|
|
|
|
type RepoUnit struct {
|
|
|
|
ID int64
|
2019-08-15 20:16:21 +05:30
|
|
|
RepoID int64 `xorm:"INDEX(s)"`
|
|
|
|
Type UnitType `xorm:"INDEX(s)"`
|
2020-03-22 20:42:55 +05:30
|
|
|
Config convert.Conversion `xorm:"TEXT"`
|
2019-08-15 20:16:21 +05:30
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX CREATED"`
|
2017-02-04 21:23:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// 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 12:18:13 +05:30
|
|
|
// IssuesConfig describes issues config
|
|
|
|
type IssuesConfig struct {
|
|
|
|
EnableTimetracker bool
|
|
|
|
AllowOnlyContributorsToTrackTime bool
|
2018-07-18 02:53:58 +05:30
|
|
|
EnableDependencies bool
|
2017-09-12 12:18:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// 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-06 00:26:50 +05:30
|
|
|
// PullRequestsConfig describes pull requests config
|
|
|
|
type PullRequestsConfig struct {
|
|
|
|
IgnoreWhitespaceConflicts bool
|
|
|
|
AllowMerge bool
|
|
|
|
AllowRebase bool
|
2018-12-27 15:57:08 +05:30
|
|
|
AllowRebaseMerge bool
|
2018-01-06 00:26:50 +05:30
|
|
|
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 15:57:08 +05:30
|
|
|
mergeStyle == MergeStyleRebaseMerge && cfg.AllowRebaseMerge ||
|
2018-01-06 00:26:50 +05:30
|
|
|
mergeStyle == MergeStyleSquash && cfg.AllowSquash
|
|
|
|
}
|
|
|
|
|
2017-02-04 21:23:46 +05:30
|
|
|
// 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-06 00:26:50 +05:30
|
|
|
case UnitTypeCode, UnitTypeReleases, UnitTypeWiki:
|
2017-02-04 21:23:46 +05:30
|
|
|
r.Config = new(UnitConfig)
|
|
|
|
case UnitTypeExternalWiki:
|
|
|
|
r.Config = new(ExternalWikiConfig)
|
|
|
|
case UnitTypeExternalTracker:
|
|
|
|
r.Config = new(ExternalTrackerConfig)
|
2018-01-06 00:26:50 +05:30
|
|
|
case UnitTypePullRequests:
|
|
|
|
r.Config = new(PullRequestsConfig)
|
2017-09-12 12:18:13 +05:30
|
|
|
case UnitTypeIssues:
|
|
|
|
r.Config = new(IssuesConfig)
|
2017-02-04 21:23:46 +05:30
|
|
|
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-06 00:26:50 +05:30
|
|
|
func (r *RepoUnit) PullRequestsConfig() *PullRequestsConfig {
|
|
|
|
return r.Config.(*PullRequestsConfig)
|
2017-02-04 21:23:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// 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 12:18:13 +05:30
|
|
|
// IssuesConfig returns config for UnitTypeIssues
|
|
|
|
func (r *RepoUnit) IssuesConfig() *IssuesConfig {
|
|
|
|
return r.Config.(*IssuesConfig)
|
|
|
|
}
|
|
|
|
|
2017-02-04 21:23:46 +05:30
|
|
|
// ExternalTrackerConfig returns config for UnitTypeExternalTracker
|
|
|
|
func (r *RepoUnit) ExternalTrackerConfig() *ExternalTrackerConfig {
|
|
|
|
return r.Config.(*ExternalTrackerConfig)
|
|
|
|
}
|
2018-11-28 16:56:14 +05:30
|
|
|
|
2017-05-18 20:24:24 +05:30
|
|
|
func getUnitsByRepoID(e Engine, repoID int64) (units []*RepoUnit, err error) {
|
2020-01-17 13:04:37 +05:30
|
|
|
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 20:24:24 +05:30
|
|
|
}
|