2e64f05162d6f2959af5f3872ad358908818ba12
[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
35 func 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
43         if host == "" {
44                 err := fmt.Errorf("ClientEndpoint provided without HOST name")
45                 return "", "", err
46         }
47
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),
52                         err
53         }
54
55         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
65         xapp.Logger.Info("xAppHttpEndPoint=%v, xAppRrmEndPoint=%v", xAppHTTPEndPoint, xAppRMREndPoint)
66
67         return xAppHTTPEndPoint, xAppRMREndPoint, nil
68 }