Use env varialbes to replace image urls & tags
[nonrtric.git] / test / usecases / oruclosedlooprecovery / 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         "os"
25         "strconv"
26
27         log "github.com/sirupsen/logrus"
28 )
29
30 type Config struct {
31         LogLevel               log.Level
32         ConsumerHost           string
33         ConsumerPort           int
34         InfoCoordinatorAddress string
35         SDNRHost               string
36         SDNRPort               int
37         SDNRUser               string
38         SDNPassword            string
39         ORUToODUMapFile        string
40 }
41
42 func New() *Config {
43         return &Config{
44                 LogLevel:               getLogLevel(),
45                 ConsumerHost:           getEnv("CONSUMER_HOST", ""),
46                 ConsumerPort:           getEnvAsInt("CONSUMER_PORT", 0),
47                 InfoCoordinatorAddress: getEnv("INFO_COORD_ADDR", "http://enrichmentservice:8083"),
48                 SDNRHost:               getEnv("SDNR_HOST", "http://localhost"),
49                 SDNRPort:               getEnvAsInt("SDNR_PORT", 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         }
54 }
55
56 func getEnv(key string, defaultVal string) string {
57         if value, exists := os.LookupEnv(key); exists {
58                 return value
59         }
60
61         return defaultVal
62 }
63
64 func getEnvAsInt(name string, defaultVal int) int {
65         valueStr := getEnv(name, "")
66         if value, err := strconv.Atoi(valueStr); err == nil {
67                 return value
68         } else if valueStr != "" {
69                 log.Warnf("Invalid int value: %v for variable: %v. Default value: %v will be used", valueStr, name, defaultVal)
70         }
71
72         return defaultVal
73 }
74
75 func getLogLevel() log.Level {
76         logLevelStr := getEnv("LOG_LEVEL", "Info")
77         if loglevel, err := log.ParseLevel(logLevelStr); err == nil {
78                 return loglevel
79         } else {
80                 log.Warnf("Invalid log level: %v. Log level will be Info!", logLevelStr)
81                 return log.InfoLevel
82         }
83
84 }