Andy Bavier | 561f3e5 | 2019-03-15 10:46:05 -0700 | [diff] [blame] | 1 | # Copyright 2017-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 | |
| 15 | from xossynchronizer.steps.syncstep import DeferredException |
| 16 | |
| 17 | class TtHelpers(): |
| 18 | @staticmethod |
| 19 | def validate_onu(model_accessor, log, tt_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 tt_si: TtWorkflowDriverServiceInstance |
| 26 | :return: [boolean, string] |
| 27 | """ |
| 28 | |
| 29 | oss_service = tt_si.owner.leaf_model |
| 30 | |
| 31 | # See if there is a matching entry in the whitelist. |
| 32 | matching_entries = model_accessor.TtWorkflowDriverWhiteListEntry.objects.filter( |
| 33 | owner_id=oss_service.id, |
| 34 | ) |
| 35 | matching_entries = [e for e in matching_entries if e.serial_number.lower() == tt_si.serial_number.lower()] |
| 36 | |
| 37 | if len(matching_entries) == 0: |
| 38 | log.warn("ONU not found in whitelist", object=str(tt_si), serial_number=tt_si.serial_number, **tt_si.tologdict()) |
| 39 | return [False, "ONU not found in whitelist"] |
| 40 | |
| 41 | whitelisted = matching_entries[0] |
| 42 | try: |
Andy Bavier | 0ce0dae | 2019-05-10 17:46:02 -0700 | [diff] [blame] | 43 | onu = model_accessor.ONUDevice.objects.get(serial_number=tt_si.serial_number) |
| 44 | pon_port = onu.pon_port |
Andy Bavier | 561f3e5 | 2019-03-15 10:46:05 -0700 | [diff] [blame] | 45 | except IndexError: |
| 46 | raise DeferredException("ONU device %s is not know to XOS yet" % tt_si.serial_number) |
| 47 | |
| 48 | if pon_port.port_no != whitelisted.pon_port_id or tt_si.of_dpid != whitelisted.device_id: |
| 49 | log.warn("ONU disable as location don't match", |
| 50 | object=str(tt_si), |
| 51 | serial_number=tt_si.serial_number, |
| 52 | pon_port=pon_port.port_no, |
| 53 | whitelisted_pon_port=whitelisted.pon_port_id, |
| 54 | device_id=tt_si.of_dpid, |
| 55 | whitelisted_device_id=whitelisted.device_id, |
| 56 | **tt_si.tologdict()) |
| 57 | return [False, "ONU activated in wrong location"] |
| 58 | |
| 59 | return [True, "ONU has been validated"] |
| 60 | |
| 61 | @staticmethod |
Andy Bavier | 289d7aa | 2019-04-25 10:00:28 -0700 | [diff] [blame] | 62 | def find_or_create_tt_si(model_accessor, log, event): |
Andy Bavier | 561f3e5 | 2019-03-15 10:46:05 -0700 | [diff] [blame] | 63 | try: |
Andy Bavier | 289d7aa | 2019-04-25 10:00:28 -0700 | [diff] [blame] | 64 | tt_si = model_accessor.TtWorkflowDriverServiceInstance.objects.get( |
| 65 | serial_number=event["serialNumber"] |
| 66 | ) |
| 67 | log.debug("TtHelpers: Found existing TtWorkflowDriverServiceInstance", si=tt_si) |
Andy Bavier | 561f3e5 | 2019-03-15 10:46:05 -0700 | [diff] [blame] | 68 | except IndexError: |
Andy Bavier | 289d7aa | 2019-04-25 10:00:28 -0700 | [diff] [blame] | 69 | # create a TtWorkflowDriverServiceInstance, the validation will be |
| 70 | # triggered in the corresponding sync step |
| 71 | tt_si = model_accessor.TtWorkflowDriverServiceInstance( |
| 72 | serial_number=event["serialNumber"], |
| 73 | of_dpid=event["deviceId"], |
| 74 | uni_port_id=long(event["portNumber"]), |
| 75 | # we assume there is only one TtWorkflowDriverService |
| 76 | owner=model_accessor.TtWorkflowDriverService.objects.first() |
| 77 | ) |
| 78 | log.debug("TtHelpers: Created new TtWorkflowDriverServiceInstance", si=tt_si) |
| 79 | return tt_si |