blob: dffd154dfa867963d2ae5c31b4749c5d58783999 [file] [log] [blame]
# Copyright 2017-present Open Networking Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from synchronizers.new_base.modelaccessor import RCORDSubscriber, ONUDevice, model_accessor
from synchronizers.new_base.policy import Policy
import os
import sys
sync_path = os.path.abspath(os.path.join(os.path.dirname(os.path.realpath(__file__)), ".."))
sys.path.append(sync_path)
from helpers import AttHelpers
class DeferredException(Exception):
pass
class AttWorkflowDriverServiceInstancePolicy(Policy):
model_name = "AttWorkflowDriverServiceInstance"
separator = " // "
def handle_create(self, si):
self.logger.debug("MODEL_POLICY: handle_create for AttWorkflowDriverServiceInstance %s " % si.id)
self.handle_update(si)
def handle_update(self, si):
self.logger.debug("MODEL_POLICY: handle_update for AttWorkflowDriverServiceInstance %s " % (si.id))
# validating ONU
if si.onu_state == "AWAITING" or si.onu_state == "ENABLED":
# we validate the ONU state only if it is enabled or awaiting,
# if it's disabled it means someone has disabled it
self.validate_onu_state(si)
# handling the subscriber status
subscriber = self.get_subscriber(si.serial_number)
if subscriber:
self.update_subscriber(subscriber, si)
si.save()
def validate_onu_state(self, si):
[valid, message] = AttHelpers.validate_onu(si)
si.status_message += self.separator + message
if valid:
si.onu_state = "ENABLED"
self.update_onu(si.serial_number, "ENABLED")
else:
si.onu_state = "DISABLED"
self.update_onu(si.serial_number, "DISABLED")
def update_onu(self, serial_number, admin_state):
self.logger.debug("MODEL_POLICY: setting ONUDevice [%s] admin_state to %s" % (serial_number, admin_state))
onu = ONUDevice.objects.get(serial_number=serial_number)
onu.admin_state = admin_state
onu.save(always_update_timestamp=True)
def get_subscriber(self, serial_number):
try:
return [s for s in RCORDSubscriber.objects.all() if s.onu_device.lower() == serial_number.lower()][0]
except IndexError:
# If the subscriber doesn't exist we don't do anything
self.logger.debug("MODEL_POLICY: subscriber does not exists for this SI, doing nothing", onu_device=serial_number)
return None
def update_subscriber(self, subscriber, si):
if si.authentication_state == "AWAITING":
subscriber.status = "awaiting-auth"
si.status_message += self.separator + "Awaiting Authentication"
elif si.authentication_state == "REQUESTED":
subscriber.status = "awaiting-auth"
si.status_message += self.separator + "Authentication requested"
elif si.authentication_state == "STARTED":
subscriber.status = "awaiting-auth"
si.status_message += self.separator + "Authentication started"
elif si.authentication_state == "APPROVED":
subscriber.status = "enabled"
si.status_message += self.separator + "Authentication succeded"
elif si.authentication_state == "DENIED":
subscriber.status = "auth-failed"
si.status_message += self.separator + "Authentication denied"
self.logger.debug("MODEL_POLICY: handling subscriber", onu_device=subscriber.onu_device, authentication_state=si.authentication_state, subscriber_status=subscriber.status)
subscriber.save(always_update_timestamp=True)
def handle_delete(self, si):
pass