blob: c1ee9fc6ce8b80103fff298c20ee369667e12d25 [file] [log] [blame]
Daniele Moro134b8d62020-01-14 11:32:05 -08001# Copyright 2020-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15from xossynchronizer.steps.syncstep import DeferredException
16
17class DtHelpers():
18 @staticmethod
19 def validate_onu(model_accessor, log, dt_si):
20 """
21 This method validate an ONU against the whitelist and set the appropriate state.
22 It's expected that the deferred exception is managed in the caller method,
23 for example a model_policy or a sync_step.
24
25 :param dt_si: DtWorkflowDriverServiceInstance
26 :return: [boolean, string]
27 """
28
29 oss_service = dt_si.owner.leaf_model
30
31 # See if there is a matching entry in the whitelist.
32 matching_entries = model_accessor.DtWorkflowDriverWhiteListEntry.objects.filter(
33 owner_id=oss_service.id,
34 )
35 matching_entries = [e for e in matching_entries if e.serial_number.lower() == dt_si.serial_number.lower()]
36
37 if len(matching_entries) == 0:
38 log.warn("ONU not found in whitelist", object=str(dt_si), serial_number=dt_si.serial_number, **dt_si.tologdict())
39 return [False, "ONU not found in whitelist"]
40
41 whitelisted = matching_entries[0]
42 try:
Daniele Morof2a7f8e2020-02-19 17:37:34 -080043 onu = model_accessor.ONUDevice.objects.get(serial_number=dt_si.serial_number.split("-")[0])
Daniele Moro134b8d62020-01-14 11:32:05 -080044 pon_port = onu.pon_port
45 except IndexError:
46 raise DeferredException("ONU device %s is not know to XOS yet" % dt_si.serial_number)
47
48 if onu.admin_state == "ADMIN_DISABLED":
49 return [False, "ONU has been manually disabled"]
50
51 if pon_port.port_no != whitelisted.pon_port_id or dt_si.of_dpid != whitelisted.device_id:
52 log.warn("ONU disable as location don't match",
53 object=str(dt_si),
54 serial_number=dt_si.serial_number,
55 pon_port=pon_port.port_no,
56 whitelisted_pon_port=whitelisted.pon_port_id,
57 device_id=dt_si.of_dpid,
58 whitelisted_device_id=whitelisted.device_id,
59 **dt_si.tologdict())
60 return [False, "ONU activated in wrong location"]
61
62 return [True, "ONU has been validated"]
63
64 @staticmethod
65 def find_or_create_dt_si(model_accessor, log, event):
66 try:
67 dt_si = model_accessor.DtWorkflowDriverServiceInstance.objects.get(
Daniele Moro8ead4c52020-02-21 14:46:31 -080068 serial_number=event["serialNumber"]
Daniele Moro134b8d62020-01-14 11:32:05 -080069 )
70 log.debug("DtHelpers: Found existing DtWorkflowDriverServiceInstance", si=dt_si)
71 except IndexError:
72 # create an DtWorkflowDriverServiceInstance, the validation will be
73 # triggered in the corresponding sync step
74 dt_si = model_accessor.DtWorkflowDriverServiceInstance(
75 serial_number=event["serialNumber"],
76 of_dpid=event["deviceId"],
77 uni_port_id=long(event["portNumber"]),
78 # we assume there is only one DtWorkflowDriverService
79 owner=model_accessor.DtWorkflowDriverService.objects.first()
80 )
81 log.debug("DtHelpers: Created new DtWorkflowDriverServiceInstance", si=dt_si)
82 return dt_si