123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- package profile
- import (
- "fmt"
- "log/slog"
- "os"
- "path/filepath"
- "runtime"
- "strings"
- "github.com/pkg/errors"
- )
- // Profile is the configuration to start main server.
- type Profile struct {
- // Mode can be "prod" or "dev" or "demo"
- Mode string
- // Addr is the binding address for server
- Addr string
- // Port is the binding port for server
- Port int
- // Data is the data directory
- Data string
- // DSN points to where memos stores its own data
- DSN string
- // Driver is the database driver
- // sqlite, mysql
- Driver string
- // Version is the current version of server
- Version string
- // InstanceURL is the url of your memos instance.
- InstanceURL string
- }
- func (p *Profile) IsDev() bool {
- return p.Mode != "prod"
- }
- func checkDataDir(dataDir string) (string, error) {
- // Convert to absolute path if relative path is supplied.
- if !filepath.IsAbs(dataDir) {
- relativeDir := filepath.Join(filepath.Dir(os.Args[0]), dataDir)
- absDir, err := filepath.Abs(relativeDir)
- if err != nil {
- return "", err
- }
- dataDir = absDir
- }
- // Trim trailing \ or / in case user supplies
- dataDir = strings.TrimRight(dataDir, "\\/")
- if _, err := os.Stat(dataDir); err != nil {
- return "", errors.Wrapf(err, "unable to access data folder %s", dataDir)
- }
- return dataDir, nil
- }
- func (p *Profile) Validate() error {
- if p.Mode != "demo" && p.Mode != "dev" && p.Mode != "prod" {
- p.Mode = "demo"
- }
- if p.Mode == "prod" && p.Data == "" {
- if runtime.GOOS == "windows" {
- p.Data = filepath.Join(os.Getenv("ProgramData"), "memos")
- if _, err := os.Stat(p.Data); os.IsNotExist(err) {
- if err := os.MkdirAll(p.Data, 0770); err != nil {
- slog.Error("failed to create data directory", slog.String("data", p.Data), slog.String("error", err.Error()))
- return err
- }
- }
- } else {
- p.Data = "/var/opt/memos"
- }
- }
- dataDir, err := checkDataDir(p.Data)
- if err != nil {
- slog.Error("failed to check dsn", slog.String("data", dataDir), slog.String("error", err.Error()))
- return err
- }
- p.Data = dataDir
- if p.Driver == "sqlite" && p.DSN == "" {
- dbFile := fmt.Sprintf("memos_%s.db", p.Mode)
- p.DSN = filepath.Join(dataDir, dbFile)
- }
- return nil
- }
|