blob: a86f6385aa7f5e1d5684e606dd350eaab79b0046 [file] [log] [blame]
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -04001
2#
Philip Joseph0f5e8c02017-03-03 01:54:51 +05303# Copyright 2016-2017 RIFT.IO Inc
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -04004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17
18import asyncio
19import rift.tasklets
20
21from gi.repository import(
22 RwCloudYang,
23 RwDts as rwdts,
Philip Josephf4937572017-03-03 01:55:37 +053024 RwTypes,
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -040025 )
26
27class CloudAccountNotFound(Exception):
28 pass
29
30
31class CloudAccountDtsOperdataHandler(object):
Philip Josephf4937572017-03-03 01:55:37 +053032 def __init__(self, dts, log, loop, project):
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -040033 self._dts = dts
34 self._log = log
35 self._loop = loop
Philip Josephf4937572017-03-03 01:55:37 +053036 self._project = project
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -040037
Philip Josephf4937572017-03-03 01:55:37 +053038 self._regh = None
39 self._rpc = None
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -040040 self.cloud_accounts = {}
41
42 def add_cloud_account(self, account):
43 self.cloud_accounts[account.name] = account
44 account.start_validate_credentials(self._loop)
45
46 def delete_cloud_account(self, account_name):
47 del self.cloud_accounts[account_name]
48
49 def get_saved_cloud_accounts(self, cloud_account_name):
50 ''' Get Cloud Account corresponding to passed name, or all saved accounts if name is None'''
51 saved_cloud_accounts = []
52
53 if cloud_account_name is None or cloud_account_name == "":
54 cloud_accounts = list(self.cloud_accounts.values())
55 saved_cloud_accounts.extend(cloud_accounts)
56 elif cloud_account_name in self.cloud_accounts:
57 account = self.cloud_accounts[cloud_account_name]
58 saved_cloud_accounts.append(account)
59 else:
60 errstr = "Cloud account {} does not exist".format(cloud_account_name)
61 raise KeyError(errstr)
62
63 return saved_cloud_accounts
64
65 @asyncio.coroutine
66 def create_notification(self, account):
67 xpath = "N,/rw-cloud:cloud-notif"
68 ac_status = RwCloudYang.YangNotif_RwCloud_CloudNotif()
69 ac_status.name = account.name
70 ac_status.message = account.connection_status.details
71
72 yield from self._dts.query_create(xpath, rwdts.XactFlag.ADVISE, ac_status)
73 self._log.info("Notification called by creating dts query: %s", ac_status)
74
75
76 def _register_show_status(self):
77 def get_xpath(cloud_name=None):
Philip Josephf4937572017-03-03 01:55:37 +053078 return "D,/rw-cloud:cloud/account{}/connection-status".format(
79 "[name='%s']" % cloud_name if cloud_name is not None else ''
80 )
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -040081
82 @asyncio.coroutine
83 def on_prepare(xact_info, action, ks_path, msg):
Philip Josephf4937572017-03-03 01:55:37 +053084 path_entry = RwCloudYang.CloudAcc.schema().keyspec_to_entry(ks_path)
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -040085 cloud_account_name = path_entry.key00.name
86 self._log.debug("Got show cloud connection status request: %s", ks_path.create_string())
87
88 try:
89 saved_accounts = self.get_saved_cloud_accounts(cloud_account_name)
90 for account in saved_accounts:
91 connection_status = account.connection_status
92 self._log.debug("Responding to cloud connection status request: %s", connection_status)
Philip Josephf4937572017-03-03 01:55:37 +053093 xpath = self._project.add_project(get_xpath(account.name))
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -040094 xact_info.respond_xpath(
95 rwdts.XactRspCode.MORE,
Philip Josephf4937572017-03-03 01:55:37 +053096 xpath=xpath,
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -040097 msg=account.connection_status,
98 )
99 except KeyError as e:
100 self._log.warning(str(e))
101 xact_info.respond_xpath(rwdts.XactRspCode.NA)
102 return
103
104 xact_info.respond_xpath(rwdts.XactRspCode.ACK)
105
Philip Josephf4937572017-03-03 01:55:37 +0530106 xpath = self._project.add_project(get_xpath())
107 self._regh = yield from self._dts.register(
108 xpath=xpath,
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -0400109 handler=rift.tasklets.DTS.RegistrationHandler(
110 on_prepare=on_prepare),
111 flags=rwdts.Flag.PUBLISHER,
112 )
113
114 def _register_validate_rpc(self):
115 def get_xpath():
116 return "/rw-cloud:update-cloud-status"
117
118 @asyncio.coroutine
119 def on_prepare(xact_info, action, ks_path, msg):
120 if not msg.has_field("cloud_account"):
121 raise CloudAccountNotFound("Cloud account name not provided")
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -0400122 cloud_account_name = msg.cloud_account
Philip Josephf4937572017-03-03 01:55:37 +0530123
124 if not self._project.rpc_check(msg, xact_info=xact_info):
125 return
126
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -0400127 try:
128 account = self.cloud_accounts[cloud_account_name]
129 except KeyError:
Philip Josephf4937572017-03-03 01:55:37 +0530130 errmsg = "Cloud account name {} not found in project {}". \
131 format(cloud_account_name, self._project.name)
132 xact_info.send_error_xpath(RwTypes.RwStatus.FAILURE,
133 get_xpath(),
134 errmsg)
135 raise CloudAccountNotFound(errmsg)
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -0400136
137 account.start_validate_credentials(self._loop)
138
139 yield from self.create_notification(account)
140
141 xact_info.respond_xpath(rwdts.XactRspCode.ACK)
142
Philip Josephf4937572017-03-03 01:55:37 +0530143 self._rpc = yield from self._dts.register(
Jeremy Mordkoff6f07e6f2016-09-07 18:56:51 -0400144 xpath=get_xpath(),
145 handler=rift.tasklets.DTS.RegistrationHandler(
146 on_prepare=on_prepare
147 ),
148 flags=rwdts.Flag.PUBLISHER,
149 )
150
151 @asyncio.coroutine
152 def register(self):
153 yield from self._register_show_status()
154 yield from self._register_validate_rpc()
Philip Josephf4937572017-03-03 01:55:37 +0530155
156 def deregister(self):
157 yield from self._rpc.deregister()
158 yield from self._regh.deregister()