blob: e4db047aa07f5cc63ff7888ff15fbfc97a5b51f4 [file] [log] [blame]
Matteo Scandoload7f3b42018-01-30 16:41:19 -08001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
17import os
18import sys
19from synchronizers.new_base.SyncInstanceUsingAnsible import SyncInstanceUsingAnsible
20from synchronizers.new_base.ansible_helper import run_template
21from synchronizers.new_base.modelaccessor import MCordSubscriberInstance
22
23from xosconfig import Config
24from multistructlog import create_logger
25import json
26
27
28log = create_logger(Config().get('logging'))
29
30parentdir = os.path.join(os.path.dirname(__file__), "..")
31sys.path.insert(0, parentdir)
32sys.path.insert(0, os.path.dirname(__file__))
33from helpers import ProgranHelpers
34
35class SyncProgranIMSI(SyncInstanceUsingAnsible):
36 provides = [MCordSubscriberInstance]
37
38 observes = MCordSubscriberInstance
39
40 def skip_ansible_fields(self, o):
41 # FIXME This model does not have an instance, this is a workaroung to make it work,
42 # but it need to be cleaned up creating a general SyncUsingAnsible base class
43 return True
44
45 def get_progran_imsi_field(self, o):
46
47 imsi = {
48 "IMSI": o.imsi_number,
49 }
50 imsi = json.dumps(imsi)
51 return imsi
52
53 def get_extra_attributes(self, o):
54 onos = ProgranHelpers.get_progran_onos_info()
55 fields = {
56 'onos_url': onos['url'],
57 'onos_username': onos['username'],
58 'onos_password': onos['password'],
59 'onos_port': onos['port'],
60 'endpoint': 'imsi',
61 'body': self.get_progran_imsi_field(o),
62 'method': 'POST'
63 }
64
65 return fields
66
67 # FIXME we need to override this as the default expect to ssh into a VM
68 def run_playbook(self, o, fields):
69 run_template("progran_curl.yaml", fields, object=o)
70
71 def delete_record(self, o):
72 log.info("deleting object", object=str(o), **o.tologdict())
73 onos = ProgranHelpers.get_progran_onos_info()
74 fields = {
75 'onos_url': onos['url'],
76 'onos_username': onos['username'],
77 'onos_password': onos['password'],
78 'onos_port': onos['port'],
79 'endpoint': 'imsi/%s' % o.imsi_number,
80 'body': '',
81 'method': 'DELETE'
82 }
83 res = self.run_playbook(o, fields)