blob: 7a31116d90b2f0fcad94011b5f6f463f18926a04 [file] [log] [blame]
Matteo Scandoload0c1752018-08-09 15:47:16 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
Scott Bakerc2a633d2019-04-01 19:27:41 -070017from helpers import AttHelpers
Scott Baker71d20472019-02-01 12:05:35 -080018from xossynchronizer.model_policies.policy import Policy
Matteo Scandolob8da43d2018-09-12 15:52:16 -070019import os
20import sys
21
22sync_path = os.path.abspath(os.path.join(os.path.dirname(os.path.realpath(__file__)), ".."))
23sys.path.append(sync_path)
24
Matteo Scandoload0c1752018-08-09 15:47:16 -070025
26class AttWorkflowDriverWhiteListEntryPolicy(Policy):
27 model_name = "AttWorkflowDriverWhiteListEntry"
28
29 def handle_create(self, whitelist):
30 self.handle_update(whitelist)
31
Andy Bavier11ffbf52019-02-08 11:53:21 -070032 # Update the SI if the onu_state has changed.
33 # The SI model policy will take care of updating other state.
Matteo Scandolob8da43d2018-09-12 15:52:16 -070034 def validate_onu_state(self, si):
Scott Baker71d20472019-02-01 12:05:35 -080035 [valid, message] = AttHelpers.validate_onu(self.model_accessor, self.logger, si)
Matteo Scandolob8da43d2018-09-12 15:52:16 -070036 if valid:
37 si.onu_state = "ENABLED"
38 else:
39 si.onu_state = "DISABLED"
Matteo Scandolob8da43d2018-09-12 15:52:16 -070040
41 self.logger.debug(
Scott Bakerc2a633d2019-04-01 19:27:41 -070042 "MODEL_POLICY: activating AttWorkflowDriverServiceInstance because of change in the whitelist",
43 si=si,
44 onu_state=si.onu_state,
45 authentication_state=si.authentication_state)
Andy Bavier0d631eb2018-10-17 18:05:04 -070046 si.save_changed_fields(always_update_timestamp=True)
Matteo Scandolob8da43d2018-09-12 15:52:16 -070047
Matteo Scandoload0c1752018-08-09 15:47:16 -070048 def handle_update(self, whitelist):
49 self.logger.debug("MODEL_POLICY: handle_update for AttWorkflowDriverWhiteListEntry", whitelist=whitelist)
50
Scott Baker71d20472019-02-01 12:05:35 -080051 sis = self.model_accessor.AttWorkflowDriverServiceInstance.objects.all()
Matteo Scandoload0c1752018-08-09 15:47:16 -070052
53 for si in sis:
Matteo Scandolod6c325a2018-09-04 14:28:23 -070054
55 if si.serial_number.lower() != whitelist.serial_number.lower():
56 # NOTE we don't care about this SI as it has a different serial number
57 continue
58
Matteo Scandolob8da43d2018-09-12 15:52:16 -070059 self.validate_onu_state(si)
Matteo Scandoload0c1752018-08-09 15:47:16 -070060
Scott Bakerc2a633d2019-04-01 19:27:41 -070061 whitelist.backend_need_delete_policy = True
Andy Bavier11ffbf52019-02-08 11:53:21 -070062 whitelist.save_changed_fields()
Matteo Scandoload0c1752018-08-09 15:47:16 -070063
64 def handle_delete(self, whitelist):
Scott Bakerc2a633d2019-04-01 19:27:41 -070065 self.logger.debug(
66 "MODEL_POLICY: handle_delete for AttWorkflowDriverWhiteListEntry",
67 serial_number=whitelist.serial_number,
68 pon_port=whitelist.pon_port_id,
69 device=whitelist.device_id)
Matteo Scandoload0c1752018-08-09 15:47:16 -070070
71 # BUG: Sometimes the delete policy is not called, because the reaper deletes
72
73 assert(whitelist.owner)
74
Scott Baker71d20472019-02-01 12:05:35 -080075 sis = self.model_accessor.AttWorkflowDriverServiceInstance.objects.all()
Matteo Scandolob8da43d2018-09-12 15:52:16 -070076 sis = [si for si in sis if si.serial_number.lower() == whitelist.serial_number.lower()]
Matteo Scandoload0c1752018-08-09 15:47:16 -070077
78 for si in sis:
Matteo Scandolob8da43d2018-09-12 15:52:16 -070079 self.validate_onu_state(si)
Matteo Scandoload0c1752018-08-09 15:47:16 -070080
Scott Bakerc2a633d2019-04-01 19:27:41 -070081 whitelist.backend_need_reap = True
Andy Bavier11ffbf52019-02-08 11:53:21 -070082 whitelist.save_changed_fields()