all repos

mugit @ b407568d0a3ac5a14ba9b93f349903d11e7c224d

🐮 git server that your cow will love

mugit/internal/config/config.go(view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package config

import (
	"fmt"
	"os"
	"path/filepath"

	"gopkg.in/yaml.v2"
)

type Config struct {
	Server struct {
		Host string `yaml:"host"`
		Port int    `yaml:"port"`
	} `yaml:"server"`
	Meta struct {
		Title        string `yaml:"title"`
		Description  string `yaml:"description"`
		Host         string `yaml:"host"`
		ChromaTheme  string `yaml:"chroma_theme"`
		TemplatesDir string `yaml:"templates_dir"`
	} `yaml:"meta"`
	Repo struct {
		Dir     string   `yaml:"dir"`
		Readmes []string `yaml:"readmes"`
		Masters []string `yaml:"masters"`
		Private []string `yaml:"private"`
	} `yaml:"repo"`
	SSH struct {
		Keys []string `yaml:"keys"`
	} `yaml:"ssh"`
}

func Load(fpath string) (*Config, error) {
	configBytes, err := os.ReadFile(fpath)
	if err != nil {
		return nil, err
	}

	var config *Config
	if cerr := yaml.Unmarshal(configBytes, &config); cerr != nil {
		return nil, fmt.Errorf("parsing config: %w", cerr)
	}

	if config.Repo.Dir, err = filepath.Abs(config.Repo.Dir); err != nil {
		return nil, err
	}

	if config.Meta.TemplatesDir, err = filepath.Abs(config.Meta.TemplatesDir); err != nil {
		return nil, err
	}

	fmt.Println(config.Meta.TemplatesDir)

	if verr := config.validate(); verr != nil {
		return nil, verr
	}

	return config, nil
}

func (c Config) validate() error {
	// var errs []error
	// return errors.Join(errs...)
	return nil
}