Rename enrichment coordinator service to information coordinator service
[nonrtric.git] / dmaap-mediator-producer / 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         "encoding/json"
25         "fmt"
26         "os"
27         "strconv"
28
29         log "github.com/sirupsen/logrus"
30 )
31
32 type Config struct {
33         LogLevel               log.Level
34         InfoProducerHost       string
35         InfoProducerPort       int
36         InfoCoordinatorAddress string
37         DMaaPMRAddress         string
38         ProducerCertPath       string
39         ProducerKeyPath        string
40 }
41
42 func New() *Config {
43         return &Config{
44                 InfoProducerHost:       getEnv("INFO_PRODUCER_HOST", ""),
45                 InfoProducerPort:       getEnvAsInt("INFO_PRODUCER_PORT", 8085),
46                 InfoCoordinatorAddress: getEnv("INFO_COORD_ADDR", "https://informationservice:8434"),
47                 DMaaPMRAddress:         getEnv("DMAAP_MR_ADDR", "https://message-router.onap:3905"),
48                 ProducerCertPath:       getEnv("PRODUCER_CERT_PATH", "security/producer.crt"),
49                 ProducerKeyPath:        getEnv("PRODUCER_KEY_PATH", "security/producer.key"),
50                 LogLevel:               getLogLevel(),
51         }
52 }
53
54 func (c Config) String() string {
55         return fmt.Sprintf("InfoProducerHost: %v, InfoProducerPort: %v, InfoCoordinatorAddress: %v, DMaaPMRAddress: %v, ProducerCertPath: %v, ProducerKeyPath: %v, LogLevel: %v", c.InfoProducerHost, c.InfoProducerPort, c.InfoCoordinatorAddress, c.DMaaPMRAddress, c.ProducerCertPath, c.ProducerKeyPath, c.LogLevel)
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
86 func GetJobTypesFromConfiguration(configFile string) ([]TypeDefinition, error) {
87         typeDefsByte, err := os.ReadFile(configFile)
88         if err != nil {
89                 return nil, err
90         }
91         typeDefs := struct {
92                 Types []TypeDefinition `json:"types"`
93         }{}
94         err = json.Unmarshal(typeDefsByte, &typeDefs)
95         if err != nil {
96                 return nil, err
97         }
98
99         return typeDefs.Types, nil
100 }