2020-07-12 03:10:56 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-07-12 03:10:56 -06:00
|
|
|
|
2021-08-24 10:47:09 -06:00
|
|
|
//go:build !bindata
|
2020-07-12 03:10:56 -06:00
|
|
|
|
|
|
|
package svg
|
|
|
|
|
|
|
|
import (
|
2021-09-21 23:38:34 -06:00
|
|
|
"os"
|
2020-07-12 03:10:56 -06:00
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Discover returns a map of discovered SVG icons in the file system
|
|
|
|
func Discover() map[string]string {
|
|
|
|
svgs := make(map[string]string)
|
|
|
|
|
2020-07-13 14:16:40 -06:00
|
|
|
files, _ := filepath.Glob(filepath.Join(setting.StaticRootPath, "public", "img", "svg", "*.svg"))
|
2020-07-12 03:10:56 -06:00
|
|
|
for _, file := range files {
|
2021-09-21 23:38:34 -06:00
|
|
|
content, err := os.ReadFile(file)
|
2020-07-12 03:10:56 -06:00
|
|
|
if err == nil {
|
2020-07-13 14:16:40 -06:00
|
|
|
filename := filepath.Base(file)
|
2020-07-12 03:10:56 -06:00
|
|
|
svgs[filename[:len(filename)-4]] = string(content)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return svgs
|
|
|
|
}
|