JianHao | c8f1ee7 | 2017-10-31 18:01:07 +0800 | [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 | import os |
| 16 | import sys |
| 17 | from django.db.models import Q, F |
| 18 | from synchronizers.new_base.modelaccessor import * |
| 19 | from synchronizers.new_base.SyncInstanceUsingAnsible import SyncInstanceUsingAnsible |
| 20 | |
| 21 | parentdir = os.path.join(os.path.dirname(__file__), "..") |
| 22 | sys.path.insert(0, parentdir) |
| 23 | |
| 24 | class SyncVENBServiceInstance(SyncInstanceUsingAnsible): |
JianHao | c8f1ee7 | 2017-10-31 18:01:07 +0800 | [diff] [blame] | 25 | observes = VENBServiceInstance |
JianHao | c8f1ee7 | 2017-10-31 18:01:07 +0800 | [diff] [blame] | 26 | template_name = "venbserviceinstance_playbook.yaml" |
JianHao | c8f1ee7 | 2017-10-31 18:01:07 +0800 | [diff] [blame] | 27 | service_key_name = "/opt/xos/configurations/mcord/mcord_private_key" |
| 28 | |
| 29 | def __init__(self, *args, **kwargs): |
| 30 | super(SyncVENBServiceInstance, self).__init__(*args, **kwargs) |
| 31 | |
Andy Bavier | 7d01465 | 2017-11-14 17:26:18 -0700 | [diff] [blame] | 32 | def get_service(self, o): |
| 33 | if not o.owner: |
| 34 | return None |
| 35 | |
| 36 | service = VENBService.objects.filter(id=o.owner.id) |
| 37 | |
| 38 | if not service: |
| 39 | return None |
| 40 | |
| 41 | return service[0] |
| 42 | |
JianHao | c8f1ee7 | 2017-10-31 18:01:07 +0800 | [diff] [blame] | 43 | def get_extra_attributes(self, o): |
| 44 | |
| 45 | fields = {} |
| 46 | fields['flat_ip'] = self.get_ip_address('flat_network', VENBServiceInstance, 'get_venb_flat_ip') |
Andy Bavier | 7d01465 | 2017-11-14 17:26:18 -0700 | [diff] [blame] | 47 | service = self.get_service(o) |
| 48 | fields['login_user'] = service.login_user |
| 49 | fields['login_password'] = service.login_password |
Andy Bavier | f85dad3 | 2017-11-15 14:45:13 -0700 | [diff] [blame] | 50 | fields['tas_ip'] = service.tas_ip |
| 51 | fields['ntp_ip'] = service.ntp_ip |
JianHao | c8f1ee7 | 2017-10-31 18:01:07 +0800 | [diff] [blame] | 52 | return fields |
| 53 | |
| 54 | def get_ip_address(self, network_name, service_instance, parameter): |
| 55 | |
| 56 | try: |
| 57 | net_id = self.get_network_id(network_name) |
| 58 | ins_id = self.get_instance_id(service_instance) |
| 59 | ip_address = Port.objects.get(network_id=net_id, instance_id=ins_id).ip |
| 60 | |
| 61 | except Exception: |
| 62 | ip_address = "error" |
Sapan Bhatia | f789675 | 2017-11-22 09:38:15 -0500 | [diff] [blame] | 63 | self.log.error("Could not fetch parameter", parameter = parameter, network_name = network_name) |
Sapan Bhatia | bbb09cc | 2017-11-22 10:13:43 -0500 | [diff] [blame] | 64 | self.defer_sync("Waiting for parmaters to become available") |
JianHao | c8f1ee7 | 2017-10-31 18:01:07 +0800 | [diff] [blame] | 65 | |
| 66 | return ip_address |
| 67 | |
| 68 | # To get each network id |
| 69 | def get_network_id(self, network_name): |
| 70 | return Network.objects.get(name=network_name).id |
| 71 | |
| 72 | # To get service_instance (assumption: there is a single instance for each service) |
| 73 | def get_instance_id(self, serviceinstance): |
| 74 | instances = serviceinstance.objects.all() |
| 75 | instance_id = instances[0].instance_id |
| 76 | return instance_id |