zun/zun/api/controllers/v1/views/containers_view.py

84 lines
2.3 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.
import itertools
from zun.api.controllers import link
from zun.common.policies import container as policies
_basic_keys = (
'uuid',
'user_id',
'project_id',
'name',
'image',
'links',
'command',
'status',
'status_reason',
'task_state',
'cpu',
'memory',
'environment',
'workdir',
'ports',
'hostname',
'labels',
'addresses',
'image_pull_policy',
'host',
'restart_policy',
'status_detail',
'interactive',
'image_driver',
'security_groups',
'auto_remove',
'runtime',
'disk',
'auto_heal',
'privileged',
'healthcheck',
'cpu_policy',
'registry_id',
)
def format_container(context, url, container):
def transform(key, value):
if key not in _basic_keys:
return
# strip the key if it is not allowed by policy
policy_action = policies.CONTAINER % ('get_one:%s' % key)
if not context.can(policy_action, fatal=False, might_not_exist=True):
return
if key == 'uuid':
yield ('uuid', value)
if url:
yield ('links', [link.make_link(
'self', url, 'containers', value),
link.make_link(
'bookmark', url,
'containers', value,
bookmark=True)])
elif key == 'registry_id':
if value:
# the value is an internal id so replace it with the
# user-facing uuid
value = container.registry.uuid
yield ('registry_id', value)
else:
yield (key, value)
return dict(itertools.chain.from_iterable(
transform(k, v) for k, v in container.as_dict().items()))