summaryrefslogtreecommitdiffstats
path: root/nova/api/openstack/flavors.py
blob: f3d040ba3bf5cc8df8a1a6ed0d4bb0e7739768f9 (plain)
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
# vim: tabstop=4 shiftwidth=4 softtabstop=4

# Copyright 2010 OpenStack LLC.
# All Rights Reserved.
#
#    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 webob import exc

from nova import db
from nova import context
from nova.api.openstack import faults
from nova.api.openstack import common
from nova.compute import instance_types
from nova import wsgi
import nova.api.openstack


class Controller(wsgi.Controller):
    """Flavor controller for the OpenStack API."""

    _serialization_metadata = {
        'application/xml': {
            "attributes": {
                "flavor": ["id", "name", "ram", "disk"]}}}

    def index(self, req):
        """Return all flavors in brief."""
        return dict(flavors=[dict(id=flavor['id'], name=flavor['name'])
                             for flavor in self.detail(req)['flavors']])

    def detail(self, req):
        """Return all flavors in detail."""
        items = [self.show(req, id)['flavor'] for id in self._all_ids(req)]
        return dict(flavors=items)

    def show(self, req, id):
        """Return data about the given flavor id."""
        ctxt = req.environ['nova.context']
        values = db.instance_type_get_by_flavor_id(ctxt, id)
        return dict(flavor=values)
        raise faults.Fault(exc.HTTPNotFound())

    def _all_ids(self, req):
        """Return the list of all flavorids."""
        ctxt = req.environ['nova.context']
        inst_types = db.instance_type_get_all(ctxt)
        flavor_ids = [inst_types[i]['flavorid'] for i in inst_types.keys()]
        return sorted(flavor_ids)