yats.git

ref: 3dd0fd1eaeb32bf53dc156f6936d2c6e8e4b9d17

server/config/config.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
/**
 * Yats - yats
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Paolo Lulli <kevwe.com>
 * @copyright Paolo Lulli 2024
 */

package config

import (
	"fmt"

	"github.com/tkanos/gonfig"
)

type ArchiveFrequency int

const (
	Daily ArchiveFrequency = iota
	Weekly
	Monthly
)

var archFrequency = map[string]ArchiveFrequency{
	"daily":   Daily,
	"weekly":  Weekly,
	"monthly": Monthly,
}

func main() {
	interval := archFrequency["daily"]
	fmt.Println(interval) //print the enum value
}

type Configuration struct {
	DB_USERNAME string `json:"databaseUsername"`
	DB_PASSWORD string `json:"databasePassword"`
	DB_PORT     string `json:"databasePort"`
	DB_HOST     string `json:"databaseHost"`
	DB_NAME     string `json:"databaseSchema"`

	REST_ADDRESS string `json:"restAddress"`
	GRPC_ADDRESS string `json:"grpcAddress"`

	ARCHIVE_FREQUENCY string `json:"archiveFrequency"`
	ARCHIVE_DIRECTORY string `json:"archiveDirectory"`
	IS_ARCHIVE_NODE   string `json:"archiveNode"`
}

func GetConfig(fileName string) Configuration {
	configuration := Configuration{}
	gonfig.GetConf(fileName, &configuration)

	return configuration
}