blob: ca52e0148dc6967459e6573b7723c2cc3be8feda [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
17from synchronizers.new_base.modelaccessor import AttWorkflowDriverServiceInstance, AttWorkflowDriverWhiteListEntry, model_accessor
18from synchronizers.new_base.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
25from helpers import AttHelpers
Matteo Scandoload0c1752018-08-09 15:47:16 -070026
27class AttWorkflowDriverWhiteListEntryPolicy(Policy):
28 model_name = "AttWorkflowDriverWhiteListEntry"
29
30 def handle_create(self, whitelist):
31 self.handle_update(whitelist)
32
Matteo Scandolob8da43d2018-09-12 15:52:16 -070033 def validate_onu_state(self, si):
34 [valid, message] = AttHelpers.validate_onu(si)
35 si.status_message = message
36 if valid:
37 si.onu_state = "ENABLED"
38 else:
39 si.onu_state = "DISABLED"
40 si.authentication_state = "AWAITING"
41
42 self.logger.debug(
43 "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 -070044 si.save_changed_fields(always_update_timestamp=True)
Matteo Scandolob8da43d2018-09-12 15:52:16 -070045
Matteo Scandoload0c1752018-08-09 15:47:16 -070046 def handle_update(self, whitelist):
47 self.logger.debug("MODEL_POLICY: handle_update for AttWorkflowDriverWhiteListEntry", whitelist=whitelist)
48
Matteo Scandolod6c325a2018-09-04 14:28:23 -070049 sis = AttWorkflowDriverServiceInstance.objects.all()
Matteo Scandoload0c1752018-08-09 15:47:16 -070050
51 for si in sis:
Matteo Scandolod6c325a2018-09-04 14:28:23 -070052
53 if si.serial_number.lower() != whitelist.serial_number.lower():
54 # NOTE we don't care about this SI as it has a different serial number
55 continue
56
Matteo Scandolob8da43d2018-09-12 15:52:16 -070057 self.validate_onu_state(si)
Matteo Scandoload0c1752018-08-09 15:47:16 -070058
59 whitelist.backend_need_delete_policy=True
60 whitelist.save(update_fields=["backend_need_delete_policy"])
61
62 def handle_delete(self, whitelist):
63 self.logger.debug("MODEL_POLICY: handle_delete for AttWorkflowDriverWhiteListEntry", whitelist=whitelist)
64
65 # BUG: Sometimes the delete policy is not called, because the reaper deletes
66
67 assert(whitelist.owner)
68
Matteo Scandolob8da43d2018-09-12 15:52:16 -070069 sis = AttWorkflowDriverServiceInstance.objects.all()
70 sis = [si for si in sis if si.serial_number.lower() == whitelist.serial_number.lower()]
Matteo Scandoload0c1752018-08-09 15:47:16 -070071
72 for si in sis:
Matteo Scandolob8da43d2018-09-12 15:52:16 -070073 self.validate_onu_state(si)
Matteo Scandoload0c1752018-08-09 15:47:16 -070074
75 whitelist.backend_need_reap=True
76 whitelist.save(update_fields=["backend_need_reap"])