elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 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 | ) |
| 26 | |
| 27 | type Config struct { |
elinuxhenrik | ba96d84 | 2021-09-06 16:05:01 +0200 | [diff] [blame^] | 28 | LogLevel string |
| 29 | InfoProducerSupervisionCallbackHost string |
| 30 | InfoProducerSupervisionCallbackPort string |
| 31 | InfoJobCallbackHost string |
| 32 | InfoJobCallbackPort string |
| 33 | InfoCoordinatorAddress string |
elinuxhenrik | a77cd65 | 2021-09-06 10:56:21 +0200 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | type ProducerRegistrationInfo struct { |
| 37 | InfoProducerSupervisionCallbackUrl string `json:"info_producer_supervision_callback_url"` |
| 38 | SupportedInfoTypes []string `json:"supported_info_types"` |
| 39 | InfoJobCallbackUrl string `json:"info_job_callback_url"` |
elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | func New() *Config { |
| 43 | return &Config{ |
elinuxhenrik | ba96d84 | 2021-09-06 16:05:01 +0200 | [diff] [blame^] | 44 | LogLevel: getEnv("LOG_LEVEL", "Info"), |
| 45 | InfoProducerSupervisionCallbackHost: getEnv("INFO_PRODUCER_SUPERVISION_CALLBACK_HOST", ""), |
| 46 | InfoProducerSupervisionCallbackPort: getEnv("INFO_PRODUCER_SUPERVISION_CALLBACK_PORT", "8085"), |
| 47 | InfoJobCallbackHost: getEnv("INFO_JOB_CALLBACK_HOST", ""), |
| 48 | InfoJobCallbackPort: getEnv("INFO_JOB_CALLBACK_PORT", "8086"), |
| 49 | InfoCoordinatorAddress: getEnv("INFO_COORD_ADDR", "http://enrichmentservice:8083"), |
elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 50 | } |
| 51 | } |
| 52 | |
| 53 | func getEnv(key string, defaultVal string) string { |
| 54 | if value, exists := os.LookupEnv(key); exists { |
| 55 | return value |
| 56 | } |
| 57 | |
| 58 | return defaultVal |
| 59 | } |