archagge | afbf95f | 2021-04-14 08:54:05 +0300 | [diff] [blame] | 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" |
Markku Virtanen | da34eec | 2021-05-20 08:22:04 +0000 | [diff] [blame] | 25 | "strings" |
archagge | afbf95f | 2021-04-14 08:54:05 +0300 | [diff] [blame] | 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 | //----------------------------------------------------------------------------- |
Anssi Mannila | 316d8a1 | 2021-06-02 11:08:54 +0300 | [diff] [blame] | 34 | |
archagge | afbf95f | 2021-04-14 08:54:05 +0300 | [diff] [blame] | 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 | |
Markku Virtanen | 2b512b6 | 2021-07-30 12:04:00 +0000 | [diff] [blame] | 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 { |
Markku Virtanen | 55d2a28 | 2021-06-04 14:46:56 +0300 | [diff] [blame] | 49 | err := fmt.Errorf("ClientEndpoint provided without PORT numbers") |
archagge | afbf95f | 2021-04-14 08:54:05 +0300 | [diff] [blame] | 50 | return "INVALID_HTTP_ADDRESS:" + host + (string)(*clientEndpoint.HTTPPort), |
| 51 | "INVALID_RMR_ADDRESS:" + host + (string)(*clientEndpoint.RMRPort), |
| 52 | err |
| 53 | } |
| 54 | |
Markku Virtanen | da34eec | 2021-05-20 08:22:04 +0000 | [diff] [blame] | 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 | |
Anssi Mannila | f682ace | 2021-09-28 13:11:25 +0300 | [diff] [blame] | 65 | xapp.Logger.Debug("xAppHttpEndPoint=%v, xAppRrmEndPoint=%v", xAppHTTPEndPoint, xAppRMREndPoint) |
archagge | afbf95f | 2021-04-14 08:54:05 +0300 | [diff] [blame] | 66 | |
| 67 | return xAppHTTPEndPoint, xAppRMREndPoint, nil |
| 68 | } |