blob: 948abe633d2e377f4b0b6c4ff06181d8aa51f25e [file] [log] [blame]
JianHaoc8f1ee72017-10-31 18:01:07 +08001# 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
15import os
16import sys
17from django.db.models import Q, F
18from synchronizers.new_base.modelaccessor import *
19from synchronizers.new_base.SyncInstanceUsingAnsible import SyncInstanceUsingAnsible
20
21parentdir = os.path.join(os.path.dirname(__file__), "..")
22sys.path.insert(0, parentdir)
23
24class SyncVENBServiceInstance(SyncInstanceUsingAnsible):
JianHaoc8f1ee72017-10-31 18:01:07 +080025 observes = VENBServiceInstance
JianHaoc8f1ee72017-10-31 18:01:07 +080026 template_name = "venbserviceinstance_playbook.yaml"
JianHaoc8f1ee72017-10-31 18:01:07 +080027 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 Bavier7d014652017-11-14 17:26:18 -070032 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
JianHaoc8f1ee72017-10-31 18:01:07 +080043 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 Bavier7d014652017-11-14 17:26:18 -070047 service = self.get_service(o)
48 fields['login_user'] = service.login_user
49 fields['login_password'] = service.login_password
Andy Bavierf85dad32017-11-15 14:45:13 -070050 fields['tas_ip'] = service.tas_ip
51 fields['ntp_ip'] = service.ntp_ip
JianHaoc8f1ee72017-10-31 18:01:07 +080052 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 Bhatiaf7896752017-11-22 09:38:15 -050063 self.log.error("Could not fetch parameter", parameter = parameter, network_name = network_name)
Sapan Bhatiabbb09cc2017-11-22 10:13:43 -050064 self.defer_sync("Waiting for parmaters to become available")
JianHaoc8f1ee72017-10-31 18:01:07 +080065
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