blob: ba281e4517fc9ae91690ccddc0f261a7c0964f16 [file] [log] [blame]
Khen Nursimulua7b842a2016-12-03 23:28:42 -05001#!/usr/bin/env python
2#
Khen Nursimuluc9ef7c12017-01-04 20:40:53 -05003# Copyright 2017 the original author or authors.
Khen Nursimulua7b842a2016-12-03 23:28:42 -05004#
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#
Khen Nursimulua7b842a2016-12-03 23:28:42 -050017import structlog
18from netconf.nc_rpc.rpc import Rpc
19import netconf.nc_common.error as ncerror
20from netconf.constants import Constants as C
Khen Nursimulua7b842a2016-12-03 23:28:42 -050021
22log = structlog.get_logger()
23
alshabibc70a3ad2017-01-26 12:32:38 -080024
Khen Nursimulua7b842a2016-12-03 23:28:42 -050025class GetConfig(Rpc):
Khen Nursimulu3676b7c2017-01-31 13:48:38 -050026 def __init__(self, request, request_xml, grpc_client, session,
27 capabilities):
28 super(GetConfig, self).__init__(request, request_xml, grpc_client,
29 session, capabilities)
alshabibc70a3ad2017-01-26 12:32:38 -080030 self._validate_parameters()
Khen Nursimulua7b842a2016-12-03 23:28:42 -050031
alshabibc70a3ad2017-01-26 12:32:38 -080032 def execute(self):
33 log.info('get-config-request', session=self.session.session_id)
34 if self.rpc_response.is_error:
35 return self.rpc_response
Khen Nursimulua7b842a2016-12-03 23:28:42 -050036
alshabibc70a3ad2017-01-26 12:32:38 -080037 def _validate_parameters(self):
38 log.info('validate-parameters', session=self.session.session_id)
Khen Nursimulua7b842a2016-12-03 23:28:42 -050039
alshabibc70a3ad2017-01-26 12:32:38 -080040 self.params = self.rpc_method.getchildren()
41 paramslen = len(self.params)
42 # Verify that the source parameter is present
43 if paramslen > 2:
44 # TODO: need to specify all elements not known
45 self.rpc_response.is_error = True
46 self.rpc_response.node = ncerror.BadMsg(self.rpc_request)
47 return
Khen Nursimulua7b842a2016-12-03 23:28:42 -050048
Khen Nursimulu3676b7c2017-01-31 13:48:38 -050049 self.source_param = self.rpc_method.find(C.NC_SOURCE,
50 namespaces=C.NS_MAP)
alshabibc70a3ad2017-01-26 12:32:38 -080051 # if self.source_param is None:
52 # self.rpc_response.is_error = True
53 # self.rpc_response.node = ncerror.MissingElement(
54 # self.rpc_request, elm(C.NC_SOURCE))
55 # return
Khen Nursimulua7b842a2016-12-03 23:28:42 -050056
alshabibc70a3ad2017-01-26 12:32:38 -080057 self.filter_param = None
58 if paramslen == 2:
59 self.filter_param = self.rpc_method.find(C.NC_FILTER,
60 namespaces=C.NS_MAP)
61 if self.filter_param is None:
62 unknown_elm = self.params[0] if self.params[0] != \
63 self.source_param else \
64 self.params[1]
65 self.rpc_response.is_error = True
66 self.rpc_response.node = ncerror.UnknownElement(
67 self.rpc_request, unknown_elm)
Khen Nursimulua7b842a2016-12-03 23:28:42 -050068
alshabibc70a3ad2017-01-26 12:32:38 -080069 self.params = [self.source_param, self.filter_param]