aboutsummaryrefslogtreecommitdiffstats
path: root/repository/config_mem.go
blob: e2cffd9c9208fc538d862957464ab3804f01b229 (plain) (blame)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package repository

import (
	"strconv"
	"strings"
	"time"
)

var _ Config = &memConfig{}

type memConfig struct {
	config map[string]string
}

func newMemConfig(config map[string]string) *memConfig {
	return &memConfig{config: config}
}

func (mc *memConfig) StoreString(key, value string) error {
	mc.config[key] = value
	return nil
}

func (mc *memConfig) StoreBool(key string, value bool) error {
	return mc.StoreString(key, strconv.FormatBool(value))
}

func (mc *memConfig) StoreTimestamp(key string, value time.Time) error {
	return mc.StoreString(key, strconv.Itoa(int(value.Unix())))
}

func (mc *memConfig) ReadAll(keyPrefix string) (map[string]string, error) {
	result := make(map[string]string)
	for key, val := range mc.config {
		if strings.HasPrefix(key, keyPrefix) {
			result[key] = val
		}
	}
	return result, nil
}

func (mc *memConfig) ReadString(key string) (string, error) {
	// unlike git, the mock can only store one value for the same key
	val, ok := mc.config[key]
	if !ok {
		return "", ErrNoConfigEntry
	}

	return val, nil
}

func (mc *memConfig) ReadBool(key string) (bool, error) {
	// unlike git, the mock can only store one value for the same key
	val, ok := mc.config[key]
	if !ok {
		return false, ErrNoConfigEntry
	}

	return strconv.ParseBool(val)
}

func (mc *memConfig) ReadTimestamp(key string) (*time.Time, error) {
	value, err := mc.ReadString(key)
	if err != nil {
		return nil, err
	}
	timestamp, err := strconv.Atoi(value)
	if err != nil {
		return nil, err
	}

	t := time.Unix(int64(timestamp), 0)
	return &t, nil
}

// RmConfigs remove all key/value pair matching the key prefix
func (mc *memConfig) RemoveAll(keyPrefix string) error {
	for key := range mc.config {
		if strings.HasPrefix(key, keyPrefix) {
			delete(mc.config, key)
		}
	}
	return nil
}