fcf2721a5d10befa079c38e88630f26d33942676
[nonrtric/rapp/ransliceassurance.git] / icsversion / internal / config / config.go
1 // -
2 //   ========================LICENSE_START=================================
3 //   O-RAN-SC
4 //   %%
5 //   Copyright (C) 2022: 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 Configuration struct {
32         ConsumerHost           string
33         ConsumerPort           int
34         SDNRAddress            string
35         SDNRUser               string
36         SDNPassword            string
37         InfoCoordinatorAddress string
38         LogLevel               log.Level
39 }
40
41 func New() *Configuration {
42         return &Configuration{
43                 ConsumerHost:           getEnv("CONSUMER_HOST", ""),
44                 ConsumerPort:           getEnvAsInt("CONSUMER_PORT", 0),
45                 SDNRAddress:            getEnv("SDNR_ADDR", "http://localhost:3904"),
46                 SDNRUser:               getEnv("SDNR_USER", "admin"),
47                 SDNPassword:            getEnv("SDNR_PASSWORD", "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"),
48                 InfoCoordinatorAddress: getEnv("INFO_COORD_ADDR", "http://enrichmentservice:8083"),
49                 LogLevel:               getLogLevel(),
50         }
51 }
52
53 func (c Configuration) String() string {
54         return fmt.Sprintf("[ConsumerHost: %v, ConsumerPort: %v, SDNRAddress: %v, SDNRUser: %v, SDNRPassword: %v, InfoCoordinatorAddress: %v, LogLevel: %v]", c.ConsumerHost, c.ConsumerPort, c.SDNRAddress, c.SDNRUser, c.SDNPassword, c.InfoCoordinatorAddress, c.LogLevel)
55 }
56
57 func getEnv(key string, defaultVal string) string {
58         if value, exists := os.LookupEnv(key); exists {
59                 return value
60         }
61
62         return defaultVal
63 }
64
65 func getEnvAsInt(name string, defaultVal int) int {
66         valueStr := getEnv(name, "")
67         if value, err := strconv.Atoi(valueStr); err == nil {
68                 return value
69         } else if valueStr != "" {
70                 log.Warnf("Invalid int value: %v for variable: %v. Default value: %v will be used", valueStr, name, defaultVal)
71         }
72
73         return defaultVal
74 }
75
76 func getLogLevel() log.Level {
77         logLevelStr := getEnv("LOG_LEVEL", "Info")
78         if loglevel, err := log.ParseLevel(logLevelStr); err == nil {
79                 return loglevel
80         } else {
81                 log.Warnf("Invalid log level: %v. Log level will be Info!", logLevelStr)
82                 return log.InfoLevel
83         }
84
85 }