UT changes and fixes
[ric-plt/submgr.git] / pkg / control / restendpoint.go
1 /*
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
20 package control
21
22 import (
23         "fmt"
24         "strconv"
25         "strings"
26
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 //-----------------------------------------------------------------------------
34 func ConstructEndpointAddresses(clientEndpoint models.SubscriptionParamsClientEndpoint) (string, string, error) {
35
36         var HTTP_port int64 = *clientEndpoint.HTTPPort
37         var RMR_port int64 = *clientEndpoint.RMRPort
38         var host string = clientEndpoint.Host
39         var xAppHTTPEndPoint string
40         var xAppRMREndPoint string
41
42         if host == "" || (HTTP_port == 0 && RMR_port == 0) {
43                 err := fmt.Errorf("ClientEndpoint aprovided no PORT numbers")
44                 return "INVALID_HTTP_ADDRESS:" + host + (string)(*clientEndpoint.HTTPPort),
45                         "INVALID_RMR_ADDRESS:" + host + (string)(*clientEndpoint.RMRPort),
46                         err
47         }
48
49         if *clientEndpoint.HTTPPort > 0 {
50                 xAppHTTPEndPoint = host + ":" + strconv.FormatInt(*clientEndpoint.HTTPPort, 10)
51         }
52         if *clientEndpoint.RMRPort > 0 {
53                 if i := strings.Index(host, "http"); i != -1 {
54                         host = strings.Replace(host, "http", "rmr", -1)
55                 }
56                 xAppRMREndPoint = host + ":" + strconv.FormatInt(*clientEndpoint.RMRPort, 10)
57         }
58
59         xapp.Logger.Info("xAppHttpEndPoint=%v, xAppRrmEndPoint=%v", xAppHTTPEndPoint, xAppRMREndPoint)
60
61         return xAppHTTPEndPoint, xAppRMREndPoint, nil
62 }