mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 13:01:15 +00:00
f90b802634
Adds a new `/{username}/{repo}/badges` family of routes, which redirect to various shields.io badges. The goal is to not reimplement badge generation, and delegate it to shields.io (or a similar service), which are already used by many. This way, we get all the goodies that come with it: different styles, colors, logos, you name it. So these routes are just thin wrappers around shields.io that make it easier to display the information we want. The URL is configurable via `app.ini`, and is templatable, allowing to use alternative badge generator services with slightly different URL patterns. Additionally, for compatibility with GitHub, there's an `/{username}/{repo}/actions/workflows/{workflow_file}/badge.svg` route that works much the same way as on GitHub. Change the hostname in the URL, and done. Fixes gitea#5633, gitea#23688, and also fixes #126. Work sponsored by Codeberg e.V. Signed-off-by: Gergely Nagy <forgejo@gergo.csillger.hu> (cherry picked from commitfcd0f61212
) (cherry picked from commit20d14f7844
) (cherry picked from commit4359741431
) (cherry picked from commit35cff45eb8
) (cherry picked from commit2fc0d0b8a3
)
25 lines
703 B
Go
25 lines
703 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package setting
|
|
|
|
import (
|
|
"text/template"
|
|
)
|
|
|
|
// Badges settings
|
|
var Badges = struct {
|
|
Enabled bool `ini:"ENABLED"`
|
|
GeneratorURLTemplate string `ini:"GENERATOR_URL_TEMPLATE"`
|
|
GeneratorURLTemplateTemplate *template.Template `ini:"-"`
|
|
}{
|
|
Enabled: true,
|
|
GeneratorURLTemplate: "https://img.shields.io/badge/{{.label}}-{{.text}}-{{.color}}",
|
|
}
|
|
|
|
func loadBadgesFrom(rootCfg ConfigProvider) {
|
|
mustMapSetting(rootCfg, "badges", &Badges)
|
|
|
|
Badges.GeneratorURLTemplateTemplate = template.Must(template.New("").Parse(Badges.GeneratorURLTemplate))
|
|
}
|