2020-07-12 05:10:56 -04:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-07-12 05:10:56 -04:00
|
|
|
|
2021-08-24 12:47:09 -04:00
|
|
|
//go:build !bindata
|
2020-07-12 05:10:56 -04:00
|
|
|
|
|
|
|
package svg
|
|
|
|
|
|
|
|
import (
|
2021-09-22 01:38:34 -04:00
|
|
|
"os"
|
2020-07-12 05:10:56 -04: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 16:16:40 -04:00
|
|
|
files, _ := filepath.Glob(filepath.Join(setting.StaticRootPath, "public", "img", "svg", "*.svg"))
|
2020-07-12 05:10:56 -04:00
|
|
|
for _, file := range files {
|
2021-09-22 01:38:34 -04:00
|
|
|
content, err := os.ReadFile(file)
|
2020-07-12 05:10:56 -04:00
|
|
|
if err == nil {
|
2020-07-13 16:16:40 -04:00
|
|
|
filename := filepath.Base(file)
|
2020-07-12 05:10:56 -04:00
|
|
|
svgs[filename[:len(filename)-4]] = string(content)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return svgs
|
|
|
|
}
|