8fb83830597f716ac595238f4b3d1f5282b9b6c6
[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         NodeId                 string
40         JobId                  string
41 }
42
43 func New() *Configuration {
44         return &Configuration{
45                 ConsumerHost:           getEnv("CONSUMER_HOST", ""),
46                 ConsumerPort:           getEnvAsInt("CONSUMER_PORT", 0),
47                 SDNRAddress:            getEnv("SDNR_ADDR", "http://localhost:3904"),
48                 SDNRUser:               getEnv("SDNR_USER", "admin"),
49                 SDNPassword:            getEnv("SDNR_PASSWORD", "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"),
50                 InfoCoordinatorAddress: getEnv("INFO_COORD_ADDR", "http://enrichmentservice:8083"),
51                 LogLevel:               getLogLevel(),
52                 NodeId:                 getEnv("NODE_ID", ""),
53                 JobId:                  getEnv("JOB_ID", "14e7bb84-a44d-44c1-90b7-6995a92ad83d"),
54         }
55 }
56
57 func (c Configuration) String() string {
58         return fmt.Sprintf("[ConsumerHost: %v, ConsumerPort: %v, SDNRAddress: %v, SDNRUser: %v, SDNRPassword: %v, InfoCoordinatorAddress: %v, LogLevel: %v, NodeId: %v, JobId: %v]", c.ConsumerHost, c.ConsumerPort, c.SDNRAddress, c.SDNRUser, c.SDNPassword, c.InfoCoordinatorAddress, c.LogLevel, c.NodeId, c.JobId)
59 }
60
61 func getEnv(key string, defaultVal string) string {
62         if value, exists := os.LookupEnv(key); exists {
63                 return value
64         }
65
66         return defaultVal
67 }
68
69 func getEnvAsInt(name string, defaultVal int) int {
70         valueStr := getEnv(name, "")
71         if value, err := strconv.Atoi(valueStr); err == nil {
72                 return value
73         } else if valueStr != "" {
74                 log.Warnf("Invalid int value: %v for variable: %v. Default value: %v will be used", valueStr, name, defaultVal)
75         }
76
77         return defaultVal
78 }
79
80 func getLogLevel() log.Level {
81         logLevelStr := getEnv("LOG_LEVEL", "Info")
82         if loglevel, err := log.ParseLevel(logLevelStr); err == nil {
83                 return loglevel
84         } else {
85                 log.Warnf("Invalid log level: %v. Log level will be Info!", logLevelStr)
86                 return log.InfoLevel
87         }
88
89 }