blob: e6e7bf07f7c6403557ca77c602b857a972b9a65a [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 xosapi.orm import ORMWrapper, register_convenience_wrapper
class ORMWrapperRCORDSubscriber(ORMWrapper):
@property
def volt(self):
links = self.subscribed_links.all()
for link in links:
# FIXME: hardcoded service dependency
# cast from ServiceInstance to VOLTServiceInstance
volts = self.stub.VOLTServiceInstance.objects.filter(id=link.provider_service_instance.id)
if volts:
return volts[0]
return None
sync_attributes = ("firewall_enable",
"firewall_rules",
"url_filter_enable",
"url_filter_rules",
"cdn_enable",
"uplink_speed",
"downlink_speed",
"status")
register_convenience_wrapper("RCORDSubscriber", ORMWrapperRCORDSubscriber)