2020-07-12 09:10:56 +00: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 16:47:09 +00:00
|
|
|
//go:build bindata
|
2020-07-12 09:10:56 +00:00
|
|
|
|
|
|
|
package svg
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/public"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Discover returns a map of discovered SVG icons in bindata
|
|
|
|
func Discover() map[string]string {
|
|
|
|
svgs := make(map[string]string)
|
|
|
|
|
|
|
|
for _, file := range public.AssetNames() {
|
|
|
|
matched, _ := filepath.Match("img/svg/*.svg", file)
|
|
|
|
if matched {
|
|
|
|
content, err := public.Asset(file)
|
|
|
|
if err == nil {
|
2020-07-13 20:16:40 +00:00
|
|
|
filename := filepath.Base(file)
|
2020-07-12 09:10:56 +00:00
|
|
|
svgs[filename[:len(filename)-4]] = string(content)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return svgs
|
|
|
|
}
|