2020-06-04 09:16:53 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-06-04 09:16:53 +00:00
|
|
|
|
2020-06-22 18:21:31 +00:00
|
|
|
package settings
|
2020-06-04 09:16:53 +00:00
|
|
|
|
|
|
|
import (
|
2020-06-04 18:06:24 +00:00
|
|
|
"net/http"
|
|
|
|
|
2020-06-04 09:16:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-06-10 12:05:46 +00:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2020-06-04 09:16:53 +00:00
|
|
|
)
|
|
|
|
|
2020-06-22 18:21:31 +00:00
|
|
|
// GetGeneralUISettings returns instance's global settings for ui
|
|
|
|
func GetGeneralUISettings(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /settings/ui settings getGeneralUISettings
|
2020-06-04 09:16:53 +00:00
|
|
|
// ---
|
2020-06-22 18:21:31 +00:00
|
|
|
// summary: Get instance's global settings for ui
|
2020-06-04 09:16:53 +00:00
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
2020-06-22 18:21:31 +00:00
|
|
|
// "$ref": "#/responses/GeneralUISettings"
|
|
|
|
ctx.JSON(http.StatusOK, api.GeneralUISettings{
|
2020-12-03 12:53:21 +00:00
|
|
|
DefaultTheme: setting.UI.DefaultTheme,
|
2020-06-22 18:21:31 +00:00
|
|
|
AllowedReactions: setting.UI.Reactions,
|
2021-06-29 14:28:38 +00:00
|
|
|
CustomEmojis: setting.UI.CustomEmojis,
|
2020-06-22 18:21:31 +00:00
|
|
|
})
|
2020-06-04 09:16:53 +00:00
|
|
|
}
|
2020-06-10 12:05:46 +00:00
|
|
|
|
2020-09-04 18:10:15 +00:00
|
|
|
// GetGeneralAPISettings returns instance's global settings for api
|
|
|
|
func GetGeneralAPISettings(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /settings/api settings getGeneralAPISettings
|
|
|
|
// ---
|
|
|
|
// summary: Get instance's global settings for api
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/GeneralAPISettings"
|
|
|
|
ctx.JSON(http.StatusOK, api.GeneralAPISettings{
|
|
|
|
MaxResponseItems: setting.API.MaxResponseItems,
|
|
|
|
DefaultPagingNum: setting.API.DefaultPagingNum,
|
|
|
|
DefaultGitTreesPerPage: setting.API.DefaultGitTreesPerPage,
|
|
|
|
DefaultMaxBlobSize: setting.API.DefaultMaxBlobSize,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-06-10 12:05:46 +00:00
|
|
|
// GetGeneralRepoSettings returns instance's global settings for repositories
|
|
|
|
func GetGeneralRepoSettings(ctx *context.APIContext) {
|
2020-06-22 18:21:31 +00:00
|
|
|
// swagger:operation GET /settings/repository settings getGeneralRepositorySettings
|
2020-06-10 12:05:46 +00:00
|
|
|
// ---
|
|
|
|
// summary: Get instance's global settings for repositories
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/GeneralRepoSettings"
|
|
|
|
ctx.JSON(http.StatusOK, api.GeneralRepoSettings{
|
2021-09-07 15:49:36 +00:00
|
|
|
MirrorsDisabled: !setting.Mirror.Enabled,
|
2021-02-20 10:17:51 +00:00
|
|
|
HTTPGitDisabled: setting.Repository.DisableHTTPGit,
|
|
|
|
MigrationsDisabled: setting.Repository.DisableMigrations,
|
2021-04-15 16:53:57 +00:00
|
|
|
StarsDisabled: setting.Repository.DisableStars,
|
2024-02-25 10:58:23 +00:00
|
|
|
ForksDisabled: setting.Repository.DisableForks,
|
2021-02-20 10:17:51 +00:00
|
|
|
TimeTrackingDisabled: !setting.Service.EnableTimetracking,
|
|
|
|
LFSDisabled: !setting.LFS.StartServer,
|
2020-06-10 12:05:46 +00:00
|
|
|
})
|
|
|
|
}
|
2020-09-05 07:43:06 +00:00
|
|
|
|
|
|
|
// GetGeneralAttachmentSettings returns instance's global settings for Attachment
|
|
|
|
func GetGeneralAttachmentSettings(ctx *context.APIContext) {
|
2020-10-06 16:16:16 +00:00
|
|
|
// swagger:operation GET /settings/attachment settings getGeneralAttachmentSettings
|
2020-09-05 07:43:06 +00:00
|
|
|
// ---
|
|
|
|
// summary: Get instance's global settings for Attachment
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/GeneralAttachmentSettings"
|
|
|
|
ctx.JSON(http.StatusOK, api.GeneralAttachmentSettings{
|
|
|
|
Enabled: setting.Attachment.Enabled,
|
|
|
|
AllowedTypes: setting.Attachment.AllowedTypes,
|
|
|
|
MaxFiles: setting.Attachment.MaxFiles,
|
|
|
|
MaxSize: setting.Attachment.MaxSize,
|
|
|
|
})
|
|
|
|
}
|