2016-12-22 23:42:23 +05:30
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2016-12-22 23:42:23 +05:30
|
|
|
|
2021-08-24 22:17:09 +05:30
|
|
|
//go:build !bindata
|
|
|
|
|
2016-12-22 23:42:23 +05:30
|
|
|
package options
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-09-22 11:08:34 +05:30
|
|
|
"os"
|
2016-12-22 23:42:23 +05:30
|
|
|
"path"
|
|
|
|
|
2020-11-28 08:12:08 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-12-22 23:42:23 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-11-28 08:12:08 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
2016-12-22 23:42:23 +05:30
|
|
|
)
|
|
|
|
|
2022-01-20 23:16:10 +05:30
|
|
|
var directories = make(directorySet)
|
2016-12-22 23:42:23 +05:30
|
|
|
|
|
|
|
// Dir returns all files from static or custom directory.
|
|
|
|
func Dir(name string) ([]string, error) {
|
|
|
|
if directories.Filled(name) {
|
|
|
|
return directories.Get(name), nil
|
|
|
|
}
|
|
|
|
|
2022-01-20 23:16:10 +05:30
|
|
|
var result []string
|
2016-12-22 23:42:23 +05:30
|
|
|
|
2023-03-08 15:01:27 +05:30
|
|
|
for _, dir := range []string{
|
|
|
|
path.Join(setting.CustomPath, "options", name), // custom dir
|
|
|
|
path.Join(setting.StaticRootPath, "options", name), // static dir
|
|
|
|
} {
|
|
|
|
files, err := statDirIfExist(dir)
|
2016-12-22 23:42:23 +05:30
|
|
|
if err != nil {
|
2023-03-08 15:01:27 +05:30
|
|
|
return nil, err
|
2016-12-22 23:42:23 +05:30
|
|
|
}
|
|
|
|
result = append(result, files...)
|
|
|
|
}
|
|
|
|
|
|
|
|
return directories.AddAndGet(name, result), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// fileFromDir is a helper to read files from static or custom path.
|
|
|
|
func fileFromDir(name string) ([]byte, error) {
|
|
|
|
customPath := path.Join(setting.CustomPath, "options", name)
|
|
|
|
|
2020-11-28 08:12:08 +05:30
|
|
|
isFile, err := util.IsFile(customPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Unable to check if %s is a file. Error: %v", customPath, err)
|
|
|
|
}
|
|
|
|
if isFile {
|
2021-09-22 11:08:34 +05:30
|
|
|
return os.ReadFile(customPath)
|
2016-12-22 23:42:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
staticPath := path.Join(setting.StaticRootPath, "options", name)
|
|
|
|
|
2020-11-28 08:12:08 +05:30
|
|
|
isFile, err = util.IsFile(staticPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Unable to check if %s is a file. Error: %v", staticPath, err)
|
|
|
|
}
|
|
|
|
if isFile {
|
2021-09-22 11:08:34 +05:30
|
|
|
return os.ReadFile(staticPath)
|
2016-12-22 23:42:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
return []byte{}, fmt.Errorf("Asset file does not exist: %s", name)
|
|
|
|
}
|
2020-01-30 07:30:27 +05:30
|
|
|
|
|
|
|
// IsDynamic will return false when using embedded data (-tags bindata)
|
|
|
|
func IsDynamic() bool {
|
|
|
|
return true
|
|
|
|
}
|