2020-07-12 11:10:56 +02:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-08-24 18:47:09 +02:00
|
|
|
//go:build !bindata
|
2020-07-12 11:10:56 +02:00
|
|
|
// +build !bindata
|
|
|
|
|
|
|
|
package svg
|
|
|
|
|
|
|
|
import (
|
2021-09-22 07:38:34 +02:00
|
|
|
"os"
|
2020-07-12 11:10:56 +02: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 22:16:40 +02:00
|
|
|
files, _ := filepath.Glob(filepath.Join(setting.StaticRootPath, "public", "img", "svg", "*.svg"))
|
2020-07-12 11:10:56 +02:00
|
|
|
for _, file := range files {
|
2021-09-22 07:38:34 +02:00
|
|
|
content, err := os.ReadFile(file)
|
2020-07-12 11:10:56 +02:00
|
|
|
if err == nil {
|
2020-07-13 22:16:40 +02:00
|
|
|
filename := filepath.Base(file)
|
2020-07-12 11:10:56 +02:00
|
|
|
svgs[filename[:len(filename)-4]] = string(content)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return svgs
|
|
|
|
}
|