/usr/lib/python2.7/dist-packages/pki/feature.py is in pki-base 10.6.0-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | # This program is free software; you can redistribute it and/or modify
# it under the terms of the Lesser GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright (C) 2014 Red Hat, Inc.
# All rights reserved.
#
# Author:
# Ade Lee <alee@redhat.com>
from __future__ import absolute_import
from __future__ import print_function
from six import iteritems
import pki
import pki.client as client
import pki.encoder as encoder
class Feature(object):
"""Class containing data about Features advertised by the CS server
"""
json_attribute_names = {
'id': 'feature_id',
'description': 'description',
'enabled': 'enabled',
'version': 'version'
}
def __init__(self, feature_id=None, version=None, description=None,
enabled="False"):
self.feature_id = feature_id
self.version = version
self.description = description
self.enabled = (enabled.lower() == "true")
def __repr__(self):
attributes = {
"Feature": {
"feature_id": self.feature_id,
"description": self.description,
"version": self.version,
"enabled": self.enabled
}
}
return str(attributes)
@classmethod
def from_json(cls, attr_list):
""" Return Feature object from JSON dict """
feature = cls()
for k, v in iteritems(attr_list):
if k in Feature.json_attribute_names:
setattr(feature, Feature.json_attribute_names[k], v)
else:
setattr(feature, k, v)
return feature
class FeatureCollection(object):
"""
Class containing list of Feature objects.
This data is returned when listing features.
"""
def __init__(self):
""" Constructor """
self.feature_list = []
self.links = []
def __iter__(self):
return iter(self.feature_list)
@classmethod
def from_json(cls, json_value):
""" Populate object from JSON input """
ret = cls()
features = json_value
if not isinstance(features, list):
ret.feature_list.append(Feature.from_json(features))
else:
for feature in features:
ret.feature_list.append(
Feature.from_json(feature))
return ret
class FeatureClient(object):
"""
Class encapsulating and mirroring the functionality in the
AuthorityResource Java interface class defining the REST API for
subordinate CA (authority) resources.
"""
def __init__(self, connection):
""" Constructor """
self.connection = connection
self.headers = {'Content-type': 'application/json',
'Accept': 'application/json'}
self.feature_url = '/rest/config/features'
@pki.handle_exceptions()
def get_feature(self, feature_id):
""" Return a Feature object. """
if feature_id is None:
raise ValueError("Feature ID must be specified")
url = self.feature_url + '/' + str(feature_id)
r = self.connection.get(url, self.headers)
return Feature.from_json(r.json())
@pki.handle_exceptions()
def list_features(self):
""" Return a FeatureCollection object of all available features
"""
response = self.connection.get(
path=self.feature_url,
headers=self.headers)
return FeatureCollection.from_json(response.json())
encoder.NOTYPES['Feature'] = Feature
def main():
# Create a PKIConnection object that stores the details of the CA.
connection = client.PKIConnection('https', 'localhost', '8453', 'ca')
# Instantiate the FeatureClient
feature_client = FeatureClient(connection)
# List all features
print("Listing all features")
print("-----------------------")
features = feature_client.list_features()
for feature in features.feature_list:
print(str(feature))
# Get authority feature
print("Getting authority feature")
print("-------------------------")
feature = feature_client.get_feature("authority")
print(str(feature))
# Get non-existent feature
print("Get non-existent feature")
print("------------------------")
try:
feature_client.get_feature("foobar")
except pki.ResourceNotFoundException as e:
print(e.message)
if __name__ == "__main__":
main()
|