5233128353ecd7e1db0e23807231989fe0ed98a0
[nonrtric/rapp/orufhrecovery.git] / goversion / internal / config / config.go
1 // -
2 //   ========================LICENSE_START=================================
3 //   O-RAN-SC
4 //   %%
5 //   Copyright (C) 2021: Nordix Foundation
6 //   %%
7 //   Licensed under the Apache License, Version 2.0 (the "License");
8 //   you may not use this file except in compliance with the License.
9 //   You may obtain a copy of the License at
10 //
11 //        http://www.apache.org/licenses/LICENSE-2.0
12 //
13 //   Unless required by applicable law or agreed to in writing, software
14 //   distributed under the License is distributed on an "AS IS" BASIS,
15 //   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 //   See the License for the specific language governing permissions and
17 //   limitations under the License.
18 //   ========================LICENSE_END===================================
19 //
20
21 package config
22
23 import (
24         "fmt"
25         "os"
26         "strconv"
27
28         log "github.com/sirupsen/logrus"
29 )
30
31 type Config struct {
32         ConsumerHost           string
33         ConsumerPort           int
34         InfoCoordinatorAddress string
35         SDNRAddress            string
36         SDNRUser               string
37         SDNPassword            string
38         ORUToODUMapFile        string
39         ConsumerCertPath       string
40         ConsumerKeyPath        string
41         LogLevel               log.Level
42 }
43
44 func New() *Config {
45         return &Config{
46                 ConsumerHost:           getEnv("CONSUMER_HOST", ""),
47                 ConsumerPort:           getEnvAsInt("CONSUMER_PORT", 0),
48                 InfoCoordinatorAddress: getEnv("INFO_COORD_ADDR", "http://enrichmentservice:8083"),
49                 SDNRAddress:            getEnv("SDNR_ADDR", "http://localhost:3904"),
50                 SDNRUser:               getEnv("SDNR_USER", "admin"),
51                 SDNPassword:            getEnv("SDNR_PASSWORD", "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"),
52                 ORUToODUMapFile:        getEnv("ORU_TO_ODU_MAP_FILE", "o-ru-to-o-du-map.csv"),
53                 ConsumerCertPath:       getEnv("CONSUMER_CERT_PATH", "security/consumer.crt"),
54                 ConsumerKeyPath:        getEnv("CONSUMER_KEY_PATH", "security/consumer.key"),
55                 LogLevel:               getLogLevel(),
56         }
57 }
58
59 func (c Config) String() string {
60         return fmt.Sprintf("{ConsumerHost: %v, ConsumerPort: %v, InfoCoordinatorAddress: %v, SDNRAddress: %v, SDNRUser: %v, SDNRPassword: %v, ORUToODUMapFile: %v, ConsumerCertPath: %v, ConsumerKeyPath: %v, LogLevel: %v}", c.ConsumerHost, c.ConsumerPort, c.InfoCoordinatorAddress, c.SDNRAddress, c.SDNRUser, c.SDNPassword, c.ORUToODUMapFile, c.ConsumerCertPath, c.ConsumerKeyPath, c.LogLevel)
61 }
62
63 func getEnv(key string, defaultVal string) string {
64         if value, exists := os.LookupEnv(key); exists {
65                 return value
66         }
67
68         return defaultVal
69 }
70
71 func getEnvAsInt(name string, defaultVal int) int {
72         valueStr := getEnv(name, "")
73         if value, err := strconv.Atoi(valueStr); err == nil {
74                 return value
75         } else if valueStr != "" {
76                 log.Warnf("Invalid int value: %v for variable: %v. Default value: %v will be used", valueStr, name, defaultVal)
77         }
78
79         return defaultVal
80 }
81
82 func getLogLevel() log.Level {
83         logLevelStr := getEnv("LOG_LEVEL", "Info")
84         if loglevel, err := log.ParseLevel(logLevelStr); err == nil {
85                 return loglevel
86         } else {
87                 log.Warnf("Invalid log level: %v. Log level will be Info!", logLevelStr)
88                 return log.InfoLevel
89         }
90
91 }