139 lines
3.9 KiB
Python
139 lines
3.9 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import logging
|
|
|
|
# enable following after client product implemented.
|
|
# from barbicanclient.v1 import client as barbican_client
|
|
|
|
from horizon import exceptions
|
|
from horizon.utils.memoized import memoized
|
|
from openstack_dashboard.api import base
|
|
|
|
# for stab, should remove when use CLI API
|
|
import copy
|
|
from datetime import datetime
|
|
import uuid
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
ATTRIBUTES = ['name', 'description', 'enabled', 'size', 'temperature',
|
|
'base', 'flavor', 'topping']
|
|
|
|
STUB_DATA = {}
|
|
|
|
|
|
# for stab, should be removed when use CLI API
|
|
class StubResponse(object):
|
|
|
|
def __init__(self, info):
|
|
self._info = info
|
|
|
|
def __repr__(self):
|
|
reprkeys = sorted(k for k in self.__dict__.keys() if k[0] != '_')
|
|
info = ", ".join("%s=%s" % (k, getattr(self, k)) for k in reprkeys)
|
|
return "<%s %s>" % (self.__class__.__name__, info)
|
|
|
|
def to_dict(self):
|
|
return copy.deepcopy(self._info)
|
|
|
|
|
|
@memoized
|
|
def apiclient(request):
|
|
api_url = ""
|
|
c = None
|
|
|
|
try:
|
|
api_url = base.url_for(request, 'secret')
|
|
except exceptions.ServiceCatalogException:
|
|
LOG.debug('No Secret Management service is configured.')
|
|
return None
|
|
|
|
LOG.debug('barbicanclient connection created using the token "%s" and url'
|
|
'"%s"' % (request.user.token.id, api_url))
|
|
# enable following after client product implemented.
|
|
# c = barbican_client.Client(
|
|
# username=request.user.username,
|
|
# project_id=request.user.tenant_id,
|
|
# input_auth_token=request.user.token.id,
|
|
# api_url=api_url)
|
|
return c
|
|
|
|
|
|
def secret_create(request, **kwargs):
|
|
args = {}
|
|
for (key, value) in kwargs.items():
|
|
if key in ATTRIBUTES:
|
|
args[str(key)] = value
|
|
else:
|
|
raise exceptions.BadRequest(
|
|
"Key must be in %s" % ",".join(ATTRIBUTES))
|
|
# created = apiclient(request).secrets.create(**args)
|
|
|
|
# create dummy response
|
|
args["uuid"] = uuid.uuid1().hex
|
|
args["created_at"] = datetime.now().isoformat()
|
|
created = StubResponse(args)
|
|
for k in args:
|
|
setattr(created, k, args[k])
|
|
STUB_DATA[created.uuid] = created
|
|
|
|
return created
|
|
|
|
|
|
def secret_update(request, id, **kwargs):
|
|
args = {}
|
|
for (key, value) in kwargs.items():
|
|
if key in ATTRIBUTES:
|
|
args[str(key)] = value
|
|
else:
|
|
raise exceptions.BadRequest(
|
|
"Key must be in %s" % ",".join(ATTRIBUTES))
|
|
# updated = apiclient(request).secret.update(id, **args)
|
|
|
|
# update dummy response
|
|
args["uuid"] = id
|
|
args["updated_at"] = datetime.now().isoformat()
|
|
updated = StubResponse(args)
|
|
for k in args:
|
|
setattr(updated, k, args[k])
|
|
STUB_DATA[updated.uuid] = updated
|
|
|
|
return updated
|
|
|
|
|
|
def secret_delete(request, id):
|
|
# deleted = apiclient(request).secrets.delete(id)
|
|
deleted = STUB_DATA.pop(id)
|
|
|
|
return deleted
|
|
|
|
|
|
def secret_list(
|
|
request, limit=None, marker=None, sort_key=None,
|
|
sort_dir=None, detail=True):
|
|
|
|
# list = apiclient(request).Secrets.list(limit, marker, sort_key,
|
|
# sort_dir, detail)
|
|
list = [STUB_DATA[data] for data in STUB_DATA]
|
|
return list
|
|
|
|
|
|
def secret_show(request, id):
|
|
# show = apiclient(request).secrets.get(id)
|
|
show = STUB_DATA.get(id)
|
|
return show
|