blob: dc565d43db6e4a921b93bb0fe8ecba4fda13d4fd [file] [log] [blame]
archaggeafbf95f2021-04-14 08:54:05 +03001/*
2==================================================================================
3 Copyright (c) 2019 AT&T Intellectual Property.
4 Copyright (c) 2019 Nokia
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17==================================================================================
18*/
19
20package control
21
22import (
23 "fmt"
24 "strconv"
Markku Virtanenda34eec2021-05-20 08:22:04 +000025 "strings"
archaggeafbf95f2021-04-14 08:54:05 +030026
27 "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/models"
28 "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp"
29)
30
31//-----------------------------------------------------------------------------
32//
33//-----------------------------------------------------------------------------
Anssi Mannila316d8a12021-06-02 11:08:54 +030034
archaggeafbf95f2021-04-14 08:54:05 +030035func ConstructEndpointAddresses(clientEndpoint models.SubscriptionParamsClientEndpoint) (string, string, error) {
36
37 var HTTP_port int64 = *clientEndpoint.HTTPPort
38 var RMR_port int64 = *clientEndpoint.RMRPort
39 var host string = clientEndpoint.Host
40 var xAppHTTPEndPoint string
41 var xAppRMREndPoint string
42
Markku Virtanen2b512b62021-07-30 12:04:00 +000043 if host == "" {
44 err := fmt.Errorf("ClientEndpoint provided without HOST name")
45 return "", "", err
46 }
47
48 if HTTP_port == 0 && RMR_port == 0 {
Markku Virtanen55d2a282021-06-04 14:46:56 +030049 err := fmt.Errorf("ClientEndpoint provided without PORT numbers")
archaggeafbf95f2021-04-14 08:54:05 +030050 return "INVALID_HTTP_ADDRESS:" + host + (string)(*clientEndpoint.HTTPPort),
51 "INVALID_RMR_ADDRESS:" + host + (string)(*clientEndpoint.RMRPort),
52 err
53 }
54
Markku Virtanenda34eec2021-05-20 08:22:04 +000055 if *clientEndpoint.HTTPPort > 0 {
56 xAppHTTPEndPoint = host + ":" + strconv.FormatInt(*clientEndpoint.HTTPPort, 10)
57 }
58 if *clientEndpoint.RMRPort > 0 {
59 if i := strings.Index(host, "http"); i != -1 {
60 host = strings.Replace(host, "http", "rmr", -1)
61 }
62 xAppRMREndPoint = host + ":" + strconv.FormatInt(*clientEndpoint.RMRPort, 10)
63 }
64
Anssi Mannilaf682ace2021-09-28 13:11:25 +030065 xapp.Logger.Debug("xAppHttpEndPoint=%v, xAppRrmEndPoint=%v", xAppHTTPEndPoint, xAppRMREndPoint)
archaggeafbf95f2021-04-14 08:54:05 +030066
67 return xAppHTTPEndPoint, xAppRMREndPoint, nil
68}