mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 05:20:26 +00:00
82 lines
2.7 KiB
Go
82 lines
2.7 KiB
Go
// Package files is used to get paths to different files Mycorrhiza uses. Also see cfg.
|
|
package files
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/bouncepaw/mycorrhiza/cfg"
|
|
)
|
|
|
|
var paths struct {
|
|
gitRepo string
|
|
cacheDir string
|
|
staticFiles string
|
|
configPath string
|
|
tokensJSON string
|
|
userCredentialsJSON string
|
|
categoriesJSON string
|
|
interwikiJSON string
|
|
}
|
|
|
|
// HyphaeDir returns the path to hyphae storage.
|
|
// A separate function is needed to easily know where a general storage path is
|
|
// needed rather than a concrete Git or the whole wiki storage path, so that we
|
|
// could easily refactor things later if we'll ever support different storages.
|
|
func HyphaeDir() string { return paths.gitRepo }
|
|
|
|
// GitRepo returns the path to the Git repository of the wiki.
|
|
func GitRepo() string { return paths.gitRepo }
|
|
|
|
// StaticFiles returns the path to static files directory
|
|
func StaticFiles() string { return paths.staticFiles }
|
|
|
|
// ConfigPath returns the path to the config file.
|
|
func ConfigPath() string { return paths.configPath }
|
|
|
|
// TokensJSON returns the path to the JSON user tokens storage.
|
|
func TokensJSON() string { return paths.tokensJSON }
|
|
|
|
// UserCredentialsJSON returns the path to the JSON user credentials storage.
|
|
func UserCredentialsJSON() string { return paths.userCredentialsJSON }
|
|
|
|
// CategoriesJSON returns the path to the JSON categories storage.
|
|
func CategoriesJSON() string { return paths.categoriesJSON }
|
|
|
|
// FileInRoot returns full path for the given filename if it was placed in the root of the wiki structure.
|
|
func FileInRoot(filename string) string { return filepath.Join(cfg.WikiDir, filename) }
|
|
|
|
func InterwikiJSON() string { return paths.interwikiJSON }
|
|
|
|
// PrepareWikiRoot ensures all needed directories and files exist and have
|
|
// correct permissions.
|
|
func PrepareWikiRoot() error {
|
|
if err := os.MkdirAll(cfg.WikiDir, os.ModeDir|0777); err != nil {
|
|
return err
|
|
}
|
|
|
|
paths.cacheDir = filepath.Join(cfg.WikiDir, "cache")
|
|
if err := os.MkdirAll(paths.cacheDir, os.ModeDir|0777); err != nil {
|
|
return err
|
|
}
|
|
|
|
paths.gitRepo = filepath.Join(cfg.WikiDir, "wiki.git")
|
|
if err := os.MkdirAll(paths.gitRepo, os.ModeDir|0777); err != nil {
|
|
return err
|
|
}
|
|
|
|
paths.staticFiles = filepath.Join(cfg.WikiDir, "static")
|
|
if err := os.MkdirAll(paths.staticFiles, os.ModeDir|0777); err != nil {
|
|
return err
|
|
}
|
|
|
|
paths.configPath = filepath.Join(cfg.WikiDir, "config.ini")
|
|
paths.userCredentialsJSON = filepath.Join(cfg.WikiDir, "users.json")
|
|
|
|
paths.tokensJSON = filepath.Join(paths.cacheDir, "tokens.json")
|
|
paths.categoriesJSON = filepath.Join(cfg.WikiDir, "categories.json")
|
|
paths.interwikiJSON = FileInRoot("interwiki.json")
|
|
|
|
return nil
|
|
}
|