blob: f063cc4db596c771c9ce9c0d0367a17ff3fcc10b [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 Baker71d20472019-02-01 12:05:35 -080017from xossynchronizer.model_policies.policy import Policy
Matteo Scandolob8da43d2018-09-12 15:52:16 -070018import os
19import sys
20
21sync_path = os.path.abspath(os.path.join(os.path.dirname(os.path.realpath(__file__)), ".."))
22sys.path.append(sync_path)
23
24from helpers import AttHelpers
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
Matteo Scandolob8da43d2018-09-12 15:52:16 -070032 def validate_onu_state(self, si):
Scott Baker71d20472019-02-01 12:05:35 -080033 [valid, message] = AttHelpers.validate_onu(self.model_accessor, self.logger, si)
Matteo Scandolob8da43d2018-09-12 15:52:16 -070034 si.status_message = message
35 if valid:
36 si.onu_state = "ENABLED"
37 else:
38 si.onu_state = "DISABLED"
39 si.authentication_state = "AWAITING"
40
41 self.logger.debug(
42 "MODEL_POLICY: activating AttWorkflowDriverServiceInstance because of change in the whitelist", si=si, onu_state=si.onu_state, authentication_state=si.authentication_state)
Andy Bavier0d631eb2018-10-17 18:05:04 -070043 si.save_changed_fields(always_update_timestamp=True)
Matteo Scandolob8da43d2018-09-12 15:52:16 -070044
Matteo Scandoload0c1752018-08-09 15:47:16 -070045 def handle_update(self, whitelist):
46 self.logger.debug("MODEL_POLICY: handle_update for AttWorkflowDriverWhiteListEntry", whitelist=whitelist)
47
Scott Baker71d20472019-02-01 12:05:35 -080048 sis = self.model_accessor.AttWorkflowDriverServiceInstance.objects.all()
Matteo Scandoload0c1752018-08-09 15:47:16 -070049
50 for si in sis:
Matteo Scandolod6c325a2018-09-04 14:28:23 -070051
52 if si.serial_number.lower() != whitelist.serial_number.lower():
53 # NOTE we don't care about this SI as it has a different serial number
54 continue
55
Matteo Scandolob8da43d2018-09-12 15:52:16 -070056 self.validate_onu_state(si)
Matteo Scandoload0c1752018-08-09 15:47:16 -070057
58 whitelist.backend_need_delete_policy=True
59 whitelist.save(update_fields=["backend_need_delete_policy"])
60
61 def handle_delete(self, whitelist):
Matteo Scandoloc5c558f2018-11-02 10:33:40 -070062 self.logger.debug("MODEL_POLICY: handle_delete for AttWorkflowDriverWhiteListEntry", serial_number=whitelist.serial_number, pon_port=whitelist.pon_port_id, device=whitelist.device_id)
Matteo Scandoload0c1752018-08-09 15:47:16 -070063
64 # BUG: Sometimes the delete policy is not called, because the reaper deletes
65
66 assert(whitelist.owner)
67
Scott Baker71d20472019-02-01 12:05:35 -080068 sis = self.model_accessor.AttWorkflowDriverServiceInstance.objects.all()
Matteo Scandolob8da43d2018-09-12 15:52:16 -070069 sis = [si for si in sis if si.serial_number.lower() == whitelist.serial_number.lower()]
Matteo Scandoload0c1752018-08-09 15:47:16 -070070
71 for si in sis:
Matteo Scandolob8da43d2018-09-12 15:52:16 -070072 self.validate_onu_state(si)
Matteo Scandoload0c1752018-08-09 15:47:16 -070073
74 whitelist.backend_need_reap=True
75 whitelist.save(update_fields=["backend_need_reap"])