2 ==================================================================================
3 Copyright (c) 2019 AT&T Intellectual Property.
4 Copyright (c) 2019 Nokia
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
10 http://www.apache.org/licenses/LICENSE-2.0
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 ==================================================================================
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"
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 func ConstructEndpointAddresses(clientEndpoint models.SubscriptionParamsClientEndpoint) (string, string, error) {
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
44 err := fmt.Errorf("ClientEndpoint provided without HOST name")
48 if HTTP_port == 0 && RMR_port == 0 {
49 err := fmt.Errorf("ClientEndpoint provided without PORT numbers")
50 return "INVALID_HTTP_ADDRESS:" + host + (string)(*clientEndpoint.HTTPPort),
51 "INVALID_RMR_ADDRESS:" + host + (string)(*clientEndpoint.RMRPort),
55 if *clientEndpoint.HTTPPort > 0 {
56 xAppHTTPEndPoint = host + ":" + strconv.FormatInt(*clientEndpoint.HTTPPort, 10)
58 if *clientEndpoint.RMRPort > 0 {
59 if i := strings.Index(host, "http"); i != -1 {
60 host = strings.Replace(host, "http", "rmr", -1)
62 xAppRMREndPoint = host + ":" + strconv.FormatInt(*clientEndpoint.RMRPort, 10)
65 xapp.Logger.Debug("xAppHttpEndPoint=%v, xAppRrmEndPoint=%v", xAppHTTPEndPoint, xAppRMREndPoint)
67 return xAppHTTPEndPoint, xAppRMREndPoint, nil