mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	Backport #23495, partially backport&refactor The `modules/options` files are just copied from 1.20 to 1.19
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			895 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			895 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2016 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| //go:build !bindata
 | |
| 
 | |
| 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
 | |
| 	}
 | |
| 
 | |
| 	result, err := listLocalDirIfExist([]string{setting.CustomPath, setting.StaticRootPath}, "options", name)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	return directories.AddAndGet(name, result), nil
 | |
| }
 | |
| 
 | |
| // 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...)
 | |
| }
 | |
| 
 | |
| // IsDynamic will return false when using embedded data (-tags bindata)
 | |
| func IsDynamic() bool {
 | |
| 	return true
 | |
| }
 |