blob: 09f90b47aa18d2b5c8ef1e5921daefef4123c7e9 [file] [log] [blame]
Khen Nursimulua7b842a2016-12-03 23:28:42 -05001#!/usr/bin/env python
2#
3# Copyright 2016 the original author or authors.
4#
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#
17from lxml import etree
18import structlog
19from netconf.nc_rpc.rpc import Rpc
20import netconf.nc_common.error as ncerror
21from netconf.constants import Constants as C
22from netconf.utils import elm
23from netconf import NSMAP
24
25log = structlog.get_logger()
26
27class GetConfig(Rpc):
28
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -050029 def __init__(self, rpc_request, rpc_method, grpc_client, session):
30 super(GetConfig, self).__init__(rpc_request, rpc_method,
31 grpc_client, session)
Khen Nursimulua7b842a2016-12-03 23:28:42 -050032 self._validate_parameters()
33
34 def execute(self):
35 log.info('get-config-request', session=self.session.session_id)
36 if self.rpc_response.is_error:
37 return self.rpc_response
38
39 def _validate_parameters(self):
40 log.info('validate-parameters', session=self.session.session_id)
41
42 self.params = self.rpc_method.getchildren()
43 paramslen = len(self.params)
44 # Verify that the source parameter is present
45 if paramslen > 2:
46 # TODO: need to specify all elements not known
47 self.rpc_response.is_error = True
48 self.rpc_response.node = ncerror.BadMsg(self.rpc_request)
49 return
50
51 self.source_param = self.rpc_method.find(C.NC_SOURCE, namespaces=NSMAP)
52 if self.source_param is None:
53 self.rpc_response.is_error = True
54 self.rpc_response.node = ncerror.MissingElement(
55 self.rpc_request, elm(C.NC_SOURCE))
56 return
57
58 self.filter_param = None
59 if paramslen == 2:
60 self.filter_param = self.rpc_method.find(C.NC_FILTER,
61 namespaces=NSMAP)
62 if self.filter_param is None:
63 unknown_elm = self.params[0] if self.params[0] != \
64 self.source_param else \
65 self.params[1]
66 self.rpc_response.is_error = True
67 self.rpc_response.node = ncerror.UnknownElement(
68 self.rpc_request, unknown_elm)
69
70 self.params = [self.source_param, self.filter_param]