Add NodeId as configuration in ransliceassurance SMO Version
[nonrtric/rapp/ransliceassurance.git] / smoversion / 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         MRHost      string
33         MRPort      string
34         SDNRAddress string
35         SDNRUser    string
36         SDNPassword string
37         Polltime    int
38         LogLevel    log.Level
39         NodeId      string
40 }
41
42 func New() *Config {
43         return &Config{
44                 MRHost:      getEnv("MR_HOST", ""),
45                 MRPort:      getEnv("MR_PORT", ""),
46                 SDNRAddress: getEnv("SDNR_ADDR", "http://localhost:3904"),
47                 SDNRUser:    getEnv("SDNR_USER", "admin"),
48                 SDNPassword: getEnv("SDNR_PASSWORD", "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"),
49                 Polltime:    getEnvAsInt("Polltime", 30),
50                 LogLevel:    getLogLevel(),
51                 NodeId:      getEnv("NODE_ID", ""),
52         }
53 }
54
55 func (c Config) String() string {
56         return fmt.Sprintf("[MRHost: %v, MRPort: %v, SDNRAddress: %v, SDNRUser: %v, SDNRPassword: %v, PollTime: %v, LogLevel: %v, NodeId: %v]", c.MRHost, c.MRPort, c.SDNRAddress, c.SDNRUser, c.SDNPassword, c.Polltime, c.LogLevel, c.NodeId)
57 }
58
59 func getEnv(key string, defaultVal string) string {
60         if value, exists := os.LookupEnv(key); exists {
61                 return value
62         }
63
64         return defaultVal
65 }
66
67 func getEnvAsInt(name string, defaultVal int) int {
68         valueStr := getEnv(name, "")
69         if value, err := strconv.Atoi(valueStr); err == nil {
70                 return value
71         } else if valueStr != "" {
72                 log.Warnf("Invalid int value: %v for variable: %v. Default value: %v will be used", valueStr, name, defaultVal)
73         }
74
75         return defaultVal
76 }
77
78 func getLogLevel() log.Level {
79         logLevelStr := getEnv("LOG_LEVEL", "Info")
80         if loglevel, err := log.ParseLevel(logLevelStr); err == nil {
81                 return loglevel
82         } else {
83                 log.Warnf("Invalid log level: %v. Log level will be Info!", logLevelStr)
84                 return log.InfoLevel
85         }
86
87 }