-
Notifications
You must be signed in to change notification settings - Fork 1
/
folder.go
60 lines (46 loc) · 1.57 KB
/
folder.go
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
package folder
import (
"context"
"fmt"
"os"
"path/filepath"
"github.com/alexfalkowski/go-service/file"
"github.com/alexfalkowski/go-service/meta"
source "github.com/alexfalkowski/konfig/source/configurator"
"github.com/alexfalkowski/konfig/source/configurator/errors"
)
// NewConfigurator for folder.
func NewConfigurator(cfg Config) *Configurator {
return &Configurator{cfg: cfg}
}
// Configurator for folder.
type Configurator struct {
cfg Config
}
// GetConfig for folder.
func (c *Configurator) GetConfig(ctx context.Context, params source.ConfigParams) (*source.Config, error) {
if _, err := os.Stat(c.cfg.Dir); os.IsNotExist(err) {
meta.WithAttribute(ctx, "folder.dir_error", err.Error())
return nil, err
}
p := c.path(params.Application, params.Version, params.Environment, params.Continent, params.Country, params.Command, params.Kind)
path := filepath.Join(c.cfg.Dir, p)
data, err := os.ReadFile(filepath.Clean(path))
if err != nil {
meta.WithAttribute(ctx, "folder.file_error", err.Error())
if os.IsNotExist(err) {
return nil, errors.ErrNotFound
}
return nil, err
}
return &source.Config{Kind: file.Extension(path), Data: data}, nil
}
func (c *Configurator) path(app, ver, env, continent, country, cmd, kind string) string {
if continent == "*" && country == "*" {
return fmt.Sprintf("%s/%s/%s/%s.%s", app, ver, env, cmd, kind)
}
if continent != "*" && country == "*" {
return fmt.Sprintf("%s/%s/%s/%s/%s.%s", app, ver, env, continent, cmd, kind)
}
return fmt.Sprintf("%s/%s/%s/%s/%s/%s.%s", app, ver, env, continent, country, cmd, kind)
}