2016-12-22 19:12:23 +01:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-12-22 19:12:23 +01:00
|
|
|
|
2021-08-24 18:47:09 +02:00
|
|
|
//go:build !bindata
|
|
|
|
|
2016-12-22 19:12:23 +01:00
|
|
|
package options
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Dir returns all files from static or custom directory.
|
|
|
|
func Dir(name string) ([]string, error) {
|
|
|
|
if directories.Filled(name) {
|
|
|
|
return directories.Get(name), nil
|
|
|
|
}
|
|
|
|
|
2023-03-21 21:02:49 +01:00
|
|
|
result, err := listLocalDirIfExist([]string{setting.CustomPath, setting.StaticRootPath}, "options", name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2016-12-22 19:12:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return directories.AddAndGet(name, result), nil
|
|
|
|
}
|
|
|
|
|
2023-03-21 21:02:49 +01:00
|
|
|
// fileFromOptionsDir is a helper to read files from custom or static path.
|
|
|
|
func fileFromOptionsDir(elems ...string) ([]byte, error) {
|
|
|
|
return readLocalFile([]string{setting.CustomPath, setting.StaticRootPath}, "options", elems...)
|
2016-12-22 19:12:23 +01:00
|
|
|
}
|
2020-01-30 03:00:27 +01:00
|
|
|
|
|
|
|
// IsDynamic will return false when using embedded data (-tags bindata)
|
|
|
|
func IsDynamic() bool {
|
|
|
|
return true
|
|
|
|
}
|