blob: eef6f7e28ed7ce24dfb42bdaec910f608f4ed6b2 [file] [log] [blame]
Matteo Scandolof6337eb2018-04-05 15:58:37 -07001# 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
15from synchronizers.new_base.syncstep import SyncStep, DeferredException
16from synchronizers.new_base.modelaccessor import model_accessor
17from synchronizers.new_base.modelaccessor import VOLTService, VOLTServiceInstance, ServiceInstance, OLTDevice
18
19from xosconfig import Config
20from multistructlog import create_logger
21import requests
22from requests.auth import HTTPBasicAuth
23from helpers import Helpers
24
25log = create_logger(Config().get("logging"))
26
27class SyncVOLTServiceInstance(SyncStep):
28 provides = [VOLTServiceInstance]
29
30 observes = VOLTServiceInstance
31
32 def sync_record(self, o):
33
34 volt_service = VOLTService.objects.get(id=o.owner_id)
35
36 si = ServiceInstance.objects.get(id=o.id)
37
Luca Preteca974c82018-05-01 18:06:16 -070038 log.info("Synching OLTServiceInstance", object=str(o), **o.tologdict())
Matteo Scandolof6337eb2018-04-05 15:58:37 -070039
40 c_tag = si.get_westbound_service_instance_properties("c_tag")
41 uni_port_id = si.get_westbound_service_instance_properties("uni_port_id")
42
43 olt_device_name = si.get_westbound_service_instance_properties("olt_device")
44
45 olt_device = OLTDevice.objects.get(name=olt_device_name)
46
47 if not olt_device.dp_id:
48 raise DeferredException("Waiting for OLTDevice %s to be synchronized" % olt_device.name)
49
50 log.debug("Adding subscriber with info",
Luca Preteca974c82018-05-01 18:06:16 -070051 c_tag = c_tag,
52 uni_port_id = uni_port_id,
53 dp_id = olt_device.dp_id)
Matteo Scandolof6337eb2018-04-05 15:58:37 -070054
Luca Preteca974c82018-05-01 18:06:16 -070055 # Send request to ONOS
56 onos_voltha = Helpers.get_onos_voltha_info(volt_service)
57 onos_voltha_basic_auth = HTTPBasicAuth(onos_voltha['user'], onos_voltha['pass'])
Matteo Scandolof6337eb2018-04-05 15:58:37 -070058
Luca Preteca974c82018-05-01 18:06:16 -070059 full_url = "%s:%d/onos/olt/oltapp/%s/%s/%s" % (onos_voltha['url'], onos_voltha['port'], olt_device.dp_id, uni_port_id, c_tag)
Matteo Scandolof6337eb2018-04-05 15:58:37 -070060
Luca Preteca974c82018-05-01 18:06:16 -070061 log.info("Sending request to onos-voltha", url=full_url)
Matteo Scandolof6337eb2018-04-05 15:58:37 -070062
Luca Preteca974c82018-05-01 18:06:16 -070063 request = requests.post(full_url, auth=onos_voltha_basic_auth)
Matteo Scandolof6337eb2018-04-05 15:58:37 -070064
Luca Preteca974c82018-05-01 18:06:16 -070065 if request.status_code != 200:
66 raise Exception("Failed to add subscriber in onos-voltha: %s" % request.text)
Matteo Scandolof6337eb2018-04-05 15:58:37 -070067
Luca Preteca974c82018-05-01 18:06:16 -070068 log.info("onos voltha response", response=request.text)