mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
// Copyright 2020 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package templates |
|
|
|
import ( |
|
"slices" |
|
"strings" |
|
|
|
"code.gitea.io/gitea/modules/assetfs" |
|
"code.gitea.io/gitea/modules/setting" |
|
) |
|
|
|
func AssetFS() *assetfs.LayeredFS { |
|
return assetfs.Layered(CustomAssets(), BuiltinAssets()) |
|
} |
|
|
|
func CustomAssets() *assetfs.Layer { |
|
return assetfs.Local("custom", setting.CustomPath, "templates") |
|
} |
|
|
|
func ListWebTemplateAssetNames(assets *assetfs.LayeredFS) ([]string, error) { |
|
files, err := assets.ListAllFiles(".", true) |
|
if err != nil { |
|
return nil, err |
|
} |
|
return slices.DeleteFunc(files, func(file string) bool { |
|
return strings.HasPrefix(file, "mail/") || !strings.HasSuffix(file, ".tmpl") |
|
}), nil |
|
} |
|
|
|
func ListMailTemplateAssetNames(assets *assetfs.LayeredFS) ([]string, error) { |
|
files, err := assets.ListAllFiles(".", true) |
|
if err != nil { |
|
return nil, err |
|
} |
|
return slices.DeleteFunc(files, func(file string) bool { |
|
return !strings.HasPrefix(file, "mail/") || !strings.HasSuffix(file, ".tmpl") |
|
}), nil |
|
}
|
|
|