blob: 3e4a1077d4d9c55a456f1e7595bbd7a0782bf700 [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):
25 provides = [VENBServiceInstance]
26
27 observes = VENBServiceInstance
28
29 requested_interval = 0
30
31 template_name = "venbserviceinstance_playbook.yaml"
32
33 service_key_name = "/opt/xos/configurations/mcord/mcord_private_key"
34
35 def __init__(self, *args, **kwargs):
36 super(SyncVENBServiceInstance, self).__init__(*args, **kwargs)
37
38 def get_extra_attributes(self, o):
39
40 fields = {}
41 fields['flat_ip'] = self.get_ip_address('flat_network', VENBServiceInstance, 'get_venb_flat_ip')
42
43 return fields
44
45 def get_ip_address(self, network_name, service_instance, parameter):
46
47 try:
48 net_id = self.get_network_id(network_name)
49 ins_id = self.get_instance_id(service_instance)
50 ip_address = Port.objects.get(network_id=net_id, instance_id=ins_id).ip
51
52 except Exception:
53 ip_address = "error"
54 print "get failed -- %s" % (parameter)
55
56 return ip_address
57
58 # To get each network id
59 def get_network_id(self, network_name):
60 return Network.objects.get(name=network_name).id
61
62 # To get service_instance (assumption: there is a single instance for each service)
63 def get_instance_id(self, serviceinstance):
64 instances = serviceinstance.objects.all()
65 instance_id = instances[0].instance_id
66 return instance_id