fuel-web/nailgun/nailgun/objects/serializers/release.py

58 lines
1.7 KiB
Python

# -*- coding: utf-8 -*-
# Copyright 2013 Mirantis, Inc.
#
# 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 copy import deepcopy
from nailgun.objects.serializers.base import BasicSerializer
class ReleaseSerializer(BasicSerializer):
fields = (
"id",
"name",
"version",
"description",
"operating_system",
"modes_metadata",
"roles_metadata",
"tags_metadata",
"state",
"attributes_metadata",
"components_metadata"
)
@classmethod
def serialize(cls, instance, fields=None):
from nailgun.objects.release import Release
release_dict = \
super(ReleaseSerializer, cls).serialize(instance, fields)
release_dict["is_deployable"] = Release.is_deployable(instance)
return release_dict
class ComponentSerializer(BasicSerializer):
@classmethod
def serialize(cls, instance):
component = deepcopy(instance)
# binds use for mapping components on cluster_attributes options,
# it's only back-end logic and no need send it to client
component.pop('bind', None)
return component