From eacab6b10dd30a0361f159875571e3e1c42676e1 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Fri, 12 Aug 2022 23:53:10 +0800 Subject: Add disable download source configuration (#20548) (#20579) * Add disable download source configuration (#20548) Add configuration to enable/disable download source from UI. Co-authored-by: zeripath * Fix BaseVars not used in renderering * Fix disabled open in vscode menu when disabling download source from UI Co-authored-by: zeripath Co-authored-by: Lauris BH --- routers/web/web.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'routers') diff --git a/routers/web/web.go b/routers/web/web.go index d594caf643..b604337715 100644 --- a/routers/web/web.go +++ b/routers/web/web.go @@ -289,6 +289,13 @@ func RegisterRoutes(m *web.Route) { } } + dlSourceEnabled := func(ctx *context.Context) { + if setting.Repository.DisableDownloadSourceArchives { + ctx.Error(http.StatusNotFound) + return + } + } + // FIXME: not all routes need go through same middleware. // Especially some AJAX requests, we can reduce middleware number to improve performance. // Routers. @@ -1096,7 +1103,7 @@ func RegisterRoutes(m *web.Route) { m.Group("/archive", func() { m.Get("/*", repo.Download) m.Post("/*", repo.InitiateDownload) - }, repo.MustBeNotEmpty, reqRepoCodeReader) + }, repo.MustBeNotEmpty, dlSourceEnabled, reqRepoCodeReader) m.Group("/branches", func() { m.Get("", repo.Branches) -- cgit v1.2.3