62 lines
2.2 KiB
Python
62 lines
2.2 KiB
Python
from urlparse import urlparse
|
|
from openstack.common.timeutils import parse_isotime
|
|
|
|
|
|
class Secret(object):
|
|
|
|
"""
|
|
A secret is any data the user has stored in the key management system.
|
|
"""
|
|
|
|
def __init__(self, connection, secret_dict):
|
|
"""
|
|
Builds a secret object from a json representation. Includes the
|
|
connection object for subtasks.
|
|
"""
|
|
self.connection = connection
|
|
self.secret_ref = secret_dict.get('secret_ref')
|
|
self.created = parse_isotime(secret_dict.get('created'))
|
|
self.status = secret_dict.get('status')
|
|
|
|
self.algorithm = secret_dict.get('algorithm')
|
|
self.bit_length = secret_dict.get('bit_length')
|
|
self.payload_content_type = secret_dict.get('payload_content_type')
|
|
self.payload_content_encoding = secret_dict.get('payload_content_encoding')
|
|
|
|
self.cypher_type = secret_dict.get('cypher_type')
|
|
self.name = secret_dict.get('name')
|
|
|
|
if secret_dict.get('expiration') is not None:
|
|
self.expiration = parse_isotime(secret_dict['expiration'])
|
|
else:
|
|
self.expiration = None
|
|
|
|
if secret_dict.get('updated') is not None:
|
|
self.updated = parse_isotime(secret_dict['updated'])
|
|
else:
|
|
self.updated = None
|
|
|
|
self._id = urlparse(self.secret_ref).path.split('/').pop()
|
|
|
|
@property
|
|
def id(self):
|
|
return self._id
|
|
|
|
def __str__(self):
|
|
return ("Secret - ID: {0}\n"
|
|
" reference: {1}\n"
|
|
" name: {2}\n"
|
|
" created: {3}\n"
|
|
" status: {4}\n"
|
|
" payload content type: {5}\n"
|
|
" payload content encoding: {6}\n"
|
|
" bit length: {7}\n"
|
|
" algorithm: {8}\n"
|
|
" cypher type: {9}\n"
|
|
" expiration: {10}\n"
|
|
.format(self.id, self.secret_ref, self.name, self.created,
|
|
self.status, self.payload_content_type,
|
|
self.payload_content_encoding, self.bit_length,
|
|
self.algorithm, self.cypher_type, self.expiration)
|
|
)
|