2023-02-19 17:12:01 +01:00
|
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
|
|
package setting
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/container"
|
2024-01-02 02:25:30 +01:00
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2023-02-19 17:12:01 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// UI settings
|
|
|
|
|
var UI = struct {
|
2024-01-02 02:25:30 +01:00
|
|
|
|
ExplorePagingNum int
|
|
|
|
|
SitemapPagingNum int
|
|
|
|
|
IssuePagingNum int
|
|
|
|
|
RepoSearchPagingNum int
|
|
|
|
|
MembersPagingNum int
|
|
|
|
|
FeedMaxCommitNum int
|
|
|
|
|
FeedPagingNum int
|
|
|
|
|
PackagesPagingNum int
|
|
|
|
|
GraphMaxCommitNum int
|
|
|
|
|
CodeCommentLines int
|
|
|
|
|
ReactionMaxUserNum int
|
|
|
|
|
MaxDisplayFileSize int64
|
|
|
|
|
ShowUserEmail bool
|
|
|
|
|
DefaultShowFullName bool
|
|
|
|
|
DefaultTheme string
|
|
|
|
|
Themes []string
|
|
|
|
|
Reactions []string
|
|
|
|
|
ReactionsLookup container.Set[string] `ini:"-"`
|
|
|
|
|
CustomEmojis []string
|
|
|
|
|
CustomEmojisMap map[string]string `ini:"-"`
|
|
|
|
|
SearchRepoDescription bool
|
|
|
|
|
OnlyShowRelevantRepos bool
|
|
|
|
|
ExploreDefaultSort string `ini:"EXPLORE_PAGING_DEFAULT_SORT"`
|
|
|
|
|
PreferredTimestampTense string
|
2023-02-19 17:12:01 +01:00
|
|
|
|
|
2023-12-17 15:38:54 +01:00
|
|
|
|
AmbiguousUnicodeDetection bool
|
2024-02-21 22:18:44 +01:00
|
|
|
|
SkipEscapeContexts []string
|
2023-12-17 15:38:54 +01:00
|
|
|
|
|
2023-02-19 17:12:01 +01:00
|
|
|
|
Notification struct {
|
|
|
|
|
MinTimeout time.Duration
|
|
|
|
|
TimeoutStep time.Duration
|
|
|
|
|
MaxTimeout time.Duration
|
|
|
|
|
EventSourceUpdateTime time.Duration
|
|
|
|
|
} `ini:"ui.notification"`
|
|
|
|
|
|
|
|
|
|
SVG struct {
|
|
|
|
|
Enabled bool `ini:"ENABLE_RENDER"`
|
|
|
|
|
} `ini:"ui.svg"`
|
|
|
|
|
|
|
|
|
|
CSV struct {
|
|
|
|
|
MaxFileSize int64
|
|
|
|
|
} `ini:"ui.csv"`
|
|
|
|
|
|
|
|
|
|
Admin struct {
|
|
|
|
|
UserPagingNum int
|
|
|
|
|
RepoPagingNum int
|
|
|
|
|
NoticePagingNum int
|
|
|
|
|
OrgPagingNum int
|
|
|
|
|
} `ini:"ui.admin"`
|
|
|
|
|
User struct {
|
|
|
|
|
RepoPagingNum int
|
|
|
|
|
} `ini:"ui.user"`
|
|
|
|
|
Meta struct {
|
|
|
|
|
Author string
|
|
|
|
|
Description string
|
|
|
|
|
Keywords string
|
|
|
|
|
} `ini:"ui.meta"`
|
|
|
|
|
}{
|
2024-01-02 02:25:30 +01:00
|
|
|
|
ExplorePagingNum: 20,
|
|
|
|
|
SitemapPagingNum: 20,
|
|
|
|
|
IssuePagingNum: 20,
|
|
|
|
|
RepoSearchPagingNum: 20,
|
|
|
|
|
MembersPagingNum: 20,
|
|
|
|
|
FeedMaxCommitNum: 5,
|
|
|
|
|
FeedPagingNum: 20,
|
|
|
|
|
PackagesPagingNum: 20,
|
|
|
|
|
GraphMaxCommitNum: 100,
|
|
|
|
|
CodeCommentLines: 4,
|
|
|
|
|
ReactionMaxUserNum: 10,
|
|
|
|
|
MaxDisplayFileSize: 8388608,
|
2022-12-25 12:44:04 +01:00
|
|
|
|
DefaultTheme: `forgejo-auto`,
|
2023-11-08 02:53:37 +01:00
|
|
|
|
Themes: []string{`forgejo-auto`, `forgejo-light`, `forgejo-dark`, `gitea-auto`, `gitea-light`, `gitea-dark`, `forgejo-auto-deuteranopia-protanopia`, `forgejo-light-deuteranopia-protanopia`, `forgejo-dark-deuteranopia-protanopia`, `forgejo-auto-tritanopia`, `forgejo-light-tritanopia`, `forgejo-dark-tritanopia`},
|
2024-01-02 02:25:30 +01:00
|
|
|
|
Reactions: []string{`+1`, `-1`, `laugh`, `hooray`, `confused`, `heart`, `rocket`, `eyes`},
|
2022-12-19 11:05:51 +01:00
|
|
|
|
CustomEmojis: []string{`git`, `gitea`, `codeberg`, `gitlab`, `github`, `gogs`, `forgejo`},
|
|
|
|
|
CustomEmojisMap: map[string]string{"git": ":git:", "gitea": ":gitea:", "codeberg": ":codeberg:", "gitlab": ":gitlab:", "github": ":github:", "gogs": ":gogs:", "forgejo": ":forgejo:"},
|
2024-01-02 02:25:30 +01:00
|
|
|
|
PreferredTimestampTense: "mixed",
|
2023-12-17 15:38:54 +01:00
|
|
|
|
|
|
|
|
|
AmbiguousUnicodeDetection: true,
|
2024-02-21 22:18:44 +01:00
|
|
|
|
SkipEscapeContexts: []string{},
|
2023-12-17 15:38:54 +01:00
|
|
|
|
|
2023-02-19 17:12:01 +01:00
|
|
|
|
Notification: struct {
|
|
|
|
|
MinTimeout time.Duration
|
|
|
|
|
TimeoutStep time.Duration
|
|
|
|
|
MaxTimeout time.Duration
|
|
|
|
|
EventSourceUpdateTime time.Duration
|
|
|
|
|
}{
|
|
|
|
|
MinTimeout: 10 * time.Second,
|
|
|
|
|
TimeoutStep: 10 * time.Second,
|
|
|
|
|
MaxTimeout: 60 * time.Second,
|
|
|
|
|
EventSourceUpdateTime: 10 * time.Second,
|
|
|
|
|
},
|
|
|
|
|
SVG: struct {
|
|
|
|
|
Enabled bool `ini:"ENABLE_RENDER"`
|
|
|
|
|
}{
|
|
|
|
|
Enabled: true,
|
|
|
|
|
},
|
|
|
|
|
CSV: struct {
|
|
|
|
|
MaxFileSize int64
|
|
|
|
|
}{
|
|
|
|
|
MaxFileSize: 524288,
|
|
|
|
|
},
|
|
|
|
|
Admin: struct {
|
|
|
|
|
UserPagingNum int
|
|
|
|
|
RepoPagingNum int
|
|
|
|
|
NoticePagingNum int
|
|
|
|
|
OrgPagingNum int
|
|
|
|
|
}{
|
|
|
|
|
UserPagingNum: 50,
|
|
|
|
|
RepoPagingNum: 50,
|
|
|
|
|
NoticePagingNum: 25,
|
|
|
|
|
OrgPagingNum: 50,
|
|
|
|
|
},
|
|
|
|
|
User: struct {
|
|
|
|
|
RepoPagingNum int
|
|
|
|
|
}{
|
|
|
|
|
RepoPagingNum: 15,
|
|
|
|
|
},
|
|
|
|
|
Meta: struct {
|
|
|
|
|
Author string
|
|
|
|
|
Description string
|
|
|
|
|
Keywords string
|
|
|
|
|
}{
|
2022-12-28 11:28:39 +01:00
|
|
|
|
Author: "Forgejo – Beyond coding. We forge.",
|
|
|
|
|
Description: "Forgejo is a self-hosted lightweight software forge. Easy to install and low maintenance, it just does the job.",
|
|
|
|
|
Keywords: "git,forge,forgejo",
|
2023-02-19 17:12:01 +01:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func loadUIFrom(rootCfg ConfigProvider) {
|
|
|
|
|
mustMapSetting(rootCfg, "ui", &UI)
|
|
|
|
|
sec := rootCfg.Section("ui")
|
|
|
|
|
UI.ShowUserEmail = sec.Key("SHOW_USER_EMAIL").MustBool(true)
|
|
|
|
|
UI.DefaultShowFullName = sec.Key("DEFAULT_SHOW_FULL_NAME").MustBool(false)
|
|
|
|
|
UI.SearchRepoDescription = sec.Key("SEARCH_REPO_DESCRIPTION").MustBool(true)
|
2023-03-29 15:41:45 +02:00
|
|
|
|
|
2024-01-02 02:25:30 +01:00
|
|
|
|
if UI.PreferredTimestampTense != "mixed" && UI.PreferredTimestampTense != "absolute" {
|
|
|
|
|
log.Fatal("ui.PREFERRED_TIMESTAMP_TENSE must be either 'mixed' or 'absolute'")
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-29 15:41:45 +02:00
|
|
|
|
// OnlyShowRelevantRepos=false is important for many private/enterprise instances,
|
|
|
|
|
// because many private repositories do not have "description/topic", users just want to search by their names.
|
2023-02-19 17:12:01 +01:00
|
|
|
|
UI.OnlyShowRelevantRepos = sec.Key("ONLY_SHOW_RELEVANT_REPOS").MustBool(false)
|
|
|
|
|
|
|
|
|
|
UI.ReactionsLookup = make(container.Set[string])
|
|
|
|
|
for _, reaction := range UI.Reactions {
|
|
|
|
|
UI.ReactionsLookup.Add(reaction)
|
|
|
|
|
}
|
|
|
|
|
UI.CustomEmojisMap = make(map[string]string)
|
|
|
|
|
for _, emoji := range UI.CustomEmojis {
|
|
|
|
|
UI.CustomEmojisMap[emoji] = ":" + emoji + ":"
|
|
|
|
|
}
|
|
|
|
|
}
|