Files
Atay-Makhzan/modules/setting/repository.go
T

382 lines
13 KiB
Go
Raw Normal View History

2019-03-16 11:12:44 +08:00
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2019-03-16 11:12:44 +08:00
package setting
import (
"os/exec"
2019-03-16 11:12:44 +08:00
"path/filepath"
"strings"
"code.gitea.io/gitea/modules/log"
)
// enumerates all the policy repository creating
const (
RepoCreatingLastUserVisibility = "last"
RepoCreatingPrivate = "private"
RepoCreatingPublic = "public"
)
// enumerates the values for [repository.pull-request] DEFAULT_TITLE_SOURCE
const (
RepoPRTitleSourceFirstCommit = "first-commit"
RepoPRTitleSourceAuto = "auto"
)
2022-06-12 23:51:54 +08:00
// ItemsPerPage maximum items per page in forks, watchers and stars of a repo
const ItemsPerPage = 40
2019-03-16 11:12:44 +08:00
// Repository settings
var (
Repository = struct {
DetectedCharsetsOrder []string
DetectedCharsetScore map[string]int `ini:"-"`
2019-03-16 11:12:44 +08:00
AnsiCharset string
ForcePrivate bool
DefaultPrivate string
DefaultPushCreatePrivate bool
2019-03-16 11:12:44 +08:00
MaxCreationLimit int
PreferredLicenses []string
DisableHTTPGit bool
AccessControlAllowOrigin string
UseCompatSSHURI bool
2023-05-12 17:44:37 +08:00
GoGetCloneURLProtocol string
2019-03-16 11:12:44 +08:00
DefaultCloseIssuesViaCommitsInAnyBranch bool
2019-12-14 20:49:52 -06:00
EnablePushCreateUser bool
EnablePushCreateOrg bool
DisabledRepoUnits []string
DefaultRepoUnits []string
DefaultForkRepoUnits []string
DefaultMirrorRepoUnits []string
DefaultTemplateRepoUnits []string
PrefixArchiveFiles bool
2020-12-21 15:39:41 +01:00
DisableMigrations bool
2021-04-15 10:53:57 -06:00
DisableStars bool `ini:"DISABLE_STARS"`
2020-06-17 16:53:55 -04:00
DefaultBranch string
2020-09-25 05:09:23 +01:00
AllowAdoptionOfUnadoptedRepositories bool
AllowDeleteOfUnadoptedRepositories bool
DisableDownloadSourceArchives bool
AllowForkWithoutMaximumLimit bool
AllowForkIntoSameOwner bool
2019-03-16 11:12:44 +08:00
// StreamArchives makes Gitea stream git archive files to the client directly instead of creating an archive first.
// Ideally all users should use this streaming method. However, at the moment we don't know whether there are
// any users who still need the old behavior, so we introduce this option, intentionally not documenting it.
// After one or two releases, if no one complains, we will remove this option and always use streaming.
StreamArchives bool
2019-03-16 11:12:44 +08:00
// Repository editor settings
Editor struct {
LineWrapExtensions []string
2019-03-16 11:12:44 +08:00
} `ini:"-"`
// Repository upload settings
Upload struct {
Enabled bool
AllowedTypes string
2019-03-16 11:12:44 +08:00
FileMaxSize int64
MaxFiles int
} `ini:"-"`
// Pull request settings
PullRequest struct {
2019-12-30 23:34:11 +00:00
WorkInProgressPrefixes []string
CloseKeywords []string
ReopenKeywords []string
DefaultMergeStyle string
2019-12-30 23:34:11 +00:00
DefaultMergeMessageCommitsLimit int
DefaultMergeMessageSize int
DefaultMergeMessageAllAuthors bool
DefaultMergeMessageMaxApprovers int
DefaultMergeMessageOfficialApproversOnly bool
PopulateSquashCommentWithCommitMessages bool
AddCoCommitterTrailers bool
RetargetChildrenOnMerge bool
DelayCheckForInactiveDays int
DefaultDeleteBranchAfterMerge bool
DefaultTitleSource string
2019-03-16 11:12:44 +08:00
} `ini:"repository.pull-request"`
// Issue Setting
Issue struct {
LockReasons []string
2023-05-25 15:17:19 +02:00
MaxPinned int
2019-03-16 11:12:44 +08:00
} `ini:"repository.issue"`
Release struct {
AllowedTypes string
DefaultPagingNum int
2026-02-22 08:01:43 +01:00
FileMaxSize int64
MaxFiles int64
} `ini:"repository.release"`
Signing struct {
2020-09-19 17:44:55 +01:00
SigningKey string
SigningName string
SigningEmail string
SigningFormat string
2020-09-19 17:44:55 +01:00
InitialCommit []string
CRUDActions []string `ini:"CRUD_ACTIONS"`
Merges []string
Wiki []string
DefaultTrustModel string
TrustedSSHKeys []string `ini:"TRUSTED_SSH_KEYS"`
} `ini:"repository.signing"`
2019-03-16 11:12:44 +08:00
}{
DetectedCharsetsOrder: []string{
"UTF-8",
"UTF-16BE",
"UTF-16LE",
"UTF-32BE",
"UTF-32LE",
"ISO-8859-1",
"windows-1252",
"ISO-8859-2",
"windows-1250",
"ISO-8859-5",
"ISO-8859-6",
"ISO-8859-7",
"windows-1253",
"ISO-8859-8-I",
"windows-1255",
"ISO-8859-8",
"windows-1251",
"windows-1256",
"KOI8-R",
"ISO-8859-9",
"windows-1254",
"Shift_JIS",
"GB18030",
"EUC-JP",
"EUC-KR",
"Big5",
"ISO-2022-JP",
"ISO-2022-KR",
"ISO-2022-CN",
"IBM424_rtl",
"IBM424_ltr",
"IBM420_rtl",
"IBM420_ltr",
},
DetectedCharsetScore: map[string]int{},
2019-03-16 11:12:44 +08:00
AnsiCharset: "",
ForcePrivate: false,
DefaultPrivate: RepoCreatingLastUserVisibility,
DefaultPushCreatePrivate: true,
2019-03-16 11:12:44 +08:00
MaxCreationLimit: -1,
PreferredLicenses: []string{"Apache License 2.0", "MIT License"},
2019-03-16 11:12:44 +08:00
DisableHTTPGit: false,
AccessControlAllowOrigin: "",
UseCompatSSHURI: false,
DefaultCloseIssuesViaCommitsInAnyBranch: false,
2019-12-14 20:49:52 -06:00
EnablePushCreateUser: false,
EnablePushCreateOrg: false,
DisabledRepoUnits: []string{},
DefaultRepoUnits: []string{},
DefaultForkRepoUnits: []string{},
DefaultMirrorRepoUnits: []string{},
DefaultTemplateRepoUnits: []string{},
PrefixArchiveFiles: true,
2020-12-21 15:39:41 +01:00
DisableMigrations: false,
2021-04-15 10:53:57 -06:00
DisableStars: false,
2022-04-09 12:26:48 +08:00
DefaultBranch: "main",
AllowForkWithoutMaximumLimit: true,
StreamArchives: true,
2019-03-16 11:12:44 +08:00
// Repository editor settings
Editor: struct {
LineWrapExtensions []string
2019-03-16 11:12:44 +08:00
}{
LineWrapExtensions: strings.Split(".txt,.md,.markdown,.mdown,.mkd,.livemd,", ","),
2019-03-16 11:12:44 +08:00
},
// Repository upload settings
Upload: struct {
Enabled bool
AllowedTypes string
2019-03-16 11:12:44 +08:00
FileMaxSize int64
MaxFiles int
}{
Enabled: true,
AllowedTypes: "",
FileMaxSize: 50,
2019-03-16 11:12:44 +08:00
MaxFiles: 5,
},
// Pull request settings
PullRequest: struct {
2019-12-30 23:34:11 +00:00
WorkInProgressPrefixes []string
CloseKeywords []string
ReopenKeywords []string
DefaultMergeStyle string
2019-12-30 23:34:11 +00:00
DefaultMergeMessageCommitsLimit int
DefaultMergeMessageSize int
DefaultMergeMessageAllAuthors bool
DefaultMergeMessageMaxApprovers int
DefaultMergeMessageOfficialApproversOnly bool
PopulateSquashCommentWithCommitMessages bool
AddCoCommitterTrailers bool
RetargetChildrenOnMerge bool
DelayCheckForInactiveDays int
DefaultDeleteBranchAfterMerge bool
DefaultTitleSource string
2019-03-16 11:12:44 +08:00
}{
WorkInProgressPrefixes: []string{"WIP:", "[WIP]"},
// Same as GitHub. See
// https://help.github.com/articles/closing-issues-via-commit-messages
2019-12-30 23:34:11 +00:00
CloseKeywords: strings.Split("close,closes,closed,fix,fixes,fixed,resolve,resolves,resolved", ","),
ReopenKeywords: strings.Split("reopen,reopens,reopened", ","),
DefaultMergeStyle: "merge",
2019-12-30 23:34:11 +00:00
DefaultMergeMessageCommitsLimit: 50,
DefaultMergeMessageSize: 5 * 1024,
DefaultMergeMessageAllAuthors: false,
DefaultMergeMessageMaxApprovers: 10,
DefaultMergeMessageOfficialApproversOnly: true,
PopulateSquashCommentWithCommitMessages: false,
AddCoCommitterTrailers: true,
RetargetChildrenOnMerge: true,
DelayCheckForInactiveDays: 7,
DefaultTitleSource: RepoPRTitleSourceAuto,
2019-03-16 11:12:44 +08:00
},
// Issue settings
Issue: struct {
LockReasons []string
2023-05-25 15:17:19 +02:00
MaxPinned int
2019-03-16 11:12:44 +08:00
}{
LockReasons: strings.Split("Too heated,Off-topic,Spam,Resolved", ","),
2023-05-25 15:17:19 +02:00
MaxPinned: 3,
2019-03-16 11:12:44 +08:00
},
Release: struct {
AllowedTypes string
DefaultPagingNum int
2026-02-22 08:01:43 +01:00
FileMaxSize int64
MaxFiles int64
}{
AllowedTypes: "",
DefaultPagingNum: 10,
2026-02-22 08:01:43 +01:00
FileMaxSize: 2048,
MaxFiles: 5,
},
// Signing settings
Signing: struct {
2020-09-19 17:44:55 +01:00
SigningKey string
SigningName string
SigningEmail string
SigningFormat string
2020-09-19 17:44:55 +01:00
InitialCommit []string
CRUDActions []string `ini:"CRUD_ACTIONS"`
Merges []string
Wiki []string
DefaultTrustModel string
TrustedSSHKeys []string `ini:"TRUSTED_SSH_KEYS"`
}{
2020-09-19 17:44:55 +01:00
SigningKey: "default",
SigningName: "",
SigningEmail: "",
SigningFormat: "openpgp", // git.SigningKeyFormatOpenPGP
2020-09-19 17:44:55 +01:00
InitialCommit: []string{"always"},
CRUDActions: []string{"pubkey", "twofa", "parentsigned"},
Merges: []string{"pubkey", "twofa", "basesigned", "commitssigned"},
Wiki: []string{"never"},
DefaultTrustModel: "collaborator",
TrustedSSHKeys: []string{},
},
2019-03-16 11:12:44 +08:00
}
RepoRootPath string
ScriptType = "bash"
)
func loadRepositoryFrom(rootCfg ConfigProvider) {
var err error
2019-03-16 11:12:44 +08:00
// Determine and create root git repository path.
sec := rootCfg.Section("repository")
2019-03-16 11:12:44 +08:00
Repository.DisableHTTPGit = sec.Key("DISABLE_HTTP_GIT").MustBool()
Repository.UseCompatSSHURI = sec.Key("USE_COMPAT_SSH_URI").MustBool()
2023-05-12 17:44:37 +08:00
Repository.GoGetCloneURLProtocol = sec.Key("GO_GET_CLONE_URL_PROTOCOL").MustString("https")
2019-03-16 11:12:44 +08:00
Repository.MaxCreationLimit = sec.Key("MAX_CREATION_LIMIT").MustInt(-1)
2020-09-25 05:09:23 +01:00
Repository.DefaultBranch = sec.Key("DEFAULT_BRANCH").MustString(Repository.DefaultBranch)
RepoRootPath = sec.Key("ROOT").MustString(filepath.Join(AppDataPath, "gitea-repositories"))
2019-03-16 11:12:44 +08:00
if !filepath.IsAbs(RepoRootPath) {
RepoRootPath = filepath.Join(AppWorkPath, RepoRootPath)
} else {
RepoRootPath = filepath.Clean(RepoRootPath)
}
2024-02-09 22:06:03 +08:00
checkOverlappedPath("[repository].ROOT", RepoRootPath)
2024-02-09 22:06:03 +08:00
defaultDetectedCharsetsOrder := make([]string, 0, len(Repository.DetectedCharsetsOrder))
for _, charset := range Repository.DetectedCharsetsOrder {
defaultDetectedCharsetsOrder = append(defaultDetectedCharsetsOrder, strings.ToLower(strings.TrimSpace(charset)))
}
2019-03-16 11:12:44 +08:00
ScriptType = sec.Key("SCRIPT_TYPE").MustString("bash")
if _, err := exec.LookPath(ScriptType); err != nil {
log.Warn("SCRIPT_TYPE %q is not on the current PATH. Are you sure that this is the correct SCRIPT_TYPE?", ScriptType)
}
if err = sec.MapTo(&Repository); err != nil {
2019-04-02 08:48:31 +01:00
log.Fatal("Failed to map Repository settings: %v", err)
} else if err = rootCfg.Section("repository.editor").MapTo(&Repository.Editor); err != nil {
2019-04-02 08:48:31 +01:00
log.Fatal("Failed to map Repository.Editor settings: %v", err)
} else if err = rootCfg.Section("repository.upload").MapTo(&Repository.Upload); err != nil {
2019-04-02 08:48:31 +01:00
log.Fatal("Failed to map Repository.Upload settings: %v", err)
} else if err = rootCfg.Section("repository.pull-request").MapTo(&Repository.PullRequest); err != nil {
2019-04-02 08:48:31 +01:00
log.Fatal("Failed to map Repository.PullRequest settings: %v", err)
2019-03-16 11:12:44 +08:00
}
if !rootCfg.Section("packages").Key("ENABLED").MustBool(Packages.Enabled) {
Repository.DisabledRepoUnits = append(Repository.DisabledRepoUnits, "repo.packages")
}
if !rootCfg.Section("actions").Key("ENABLED").MustBool(Actions.Enabled) {
Repository.DisabledRepoUnits = append(Repository.DisabledRepoUnits, "repo.actions")
}
2020-09-19 17:44:55 +01:00
// Handle default trustmodel settings
Repository.Signing.DefaultTrustModel = strings.ToLower(strings.TrimSpace(Repository.Signing.DefaultTrustModel))
if Repository.Signing.DefaultTrustModel == "default" {
Repository.Signing.DefaultTrustModel = "collaborator"
}
// Handle preferred charset orders
preferred := make([]string, 0, len(Repository.DetectedCharsetsOrder))
for _, charset := range Repository.DetectedCharsetsOrder {
canonicalCharset := strings.ToLower(strings.TrimSpace(charset))
preferred = append(preferred, canonicalCharset)
// remove it from the defaults
for i, charset := range defaultDetectedCharsetsOrder {
if charset == canonicalCharset {
defaultDetectedCharsetsOrder = append(defaultDetectedCharsetsOrder[:i], defaultDetectedCharsetsOrder[i+1:]...)
break
}
}
}
i := 0
for _, charset := range preferred {
// Add the defaults
if charset == "defaults" {
for _, charset := range defaultDetectedCharsetsOrder {
canonicalCharset := strings.ToLower(strings.TrimSpace(charset))
if _, has := Repository.DetectedCharsetScore[canonicalCharset]; !has {
Repository.DetectedCharsetScore[canonicalCharset] = i
i++
}
}
continue
}
if _, has := Repository.DetectedCharsetScore[charset]; !has {
Repository.DetectedCharsetScore[charset] = i
i++
}
}
if err := loadRepoArchiveFrom(rootCfg); err != nil {
log.Fatal("loadRepoArchiveFrom: %v", err)
}
2019-03-16 11:12:44 +08:00
}