[RICPLT-2523] Update setup flow | Add UTs..........
[ric-plt/e2mgr.git] / E2Manager / handlers / rmrmsghandlers / e2_term_init_notification_handler.go
1 //
2 // Copyright 2019 AT&T Intellectual Property
3 // Copyright 2019 Nokia
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //      http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 package rmrmsghandlers
19
20 import (
21         "e2mgr/logger"
22         "e2mgr/managers"
23         "e2mgr/models"
24         "e2mgr/services"
25         "encoding/json"
26         "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/common"
27 )
28
29 type E2TermInitNotificationHandler struct {
30         logger                 *logger.Logger
31         rnibDataService        services.RNibDataService
32         ranReconnectionManager *managers.RanReconnectionManager
33         e2tInstancesManager    managers.IE2TInstancesManager
34 }
35
36 func NewE2TermInitNotificationHandler(logger *logger.Logger, ranReconnectionManager *managers.RanReconnectionManager, rnibDataService services.RNibDataService, e2tInstancesManager managers.IE2TInstancesManager) E2TermInitNotificationHandler {
37         return E2TermInitNotificationHandler{
38                 logger:                 logger,
39                 rnibDataService:        rnibDataService,
40                 ranReconnectionManager: ranReconnectionManager,
41                 e2tInstancesManager:    e2tInstancesManager,
42         }
43 }
44
45 func (h E2TermInitNotificationHandler) Handle(request *models.NotificationRequest) {
46
47         h.logger.Infof("#E2TermInitNotificationHandler.Handle - Handling E2_TERM_INIT")
48
49         unmarshalledPayload := models.E2TermInitPayload{}
50         err :=  json.Unmarshal(request.Payload, &unmarshalledPayload)
51
52         if err != nil {
53                 h.logger.Errorf("#E2TermInitNotificationHandler - Error unmarshaling E2 Term Init payload: %s", err)
54                 return
55         }
56
57         e2tAddress := unmarshalledPayload.Address
58
59         if len(e2tAddress) == 0 {
60                 h.logger.Errorf("#E2TermInitNotificationHandler - Empty E2T address received")
61                 return
62         }
63
64         e2tInstance, err := h.e2tInstancesManager.GetE2TInstance(e2tAddress)
65
66         if err != nil {
67                 _, ok := err.(*common.ResourceNotFoundError)
68
69                 if !ok {
70                         h.logger.Errorf("#E2TermInitNotificationHandler.Handle - Failed retrieving E2TInstance. error: %s", err)
71                         return
72                 }
73
74                 _ = h.e2tInstancesManager.AddE2TInstance(e2tAddress)
75                 return
76         }
77
78         if len(e2tInstance.AssociatedRanList) == 0 {
79                 h.logger.Infof("#E2TermInitNotificationHandler.Handle - E2T Address: %s - E2T instance has no associated RANs", e2tInstance.Address)
80                 return
81         }
82
83         for _, ranName := range e2tInstance.AssociatedRanList {
84
85                 if err := h.ranReconnectionManager.ReconnectRan(ranName); err != nil {
86                         h.logger.Errorf("#E2TermInitNotificationHandler.Handle - Ran name: %s - connection attempt failure, error: %s", ranName, err)
87                         _, ok := err.(*common.ResourceNotFoundError)
88                         if !ok {
89                                 break
90                         }
91                 }
92         }
93
94         h.logger.Infof("#E2TermInitNotificationHandler.Handle - Completed handling of E2_TERM_INIT")
95 }