Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / api / flavors.py @ a6b17d33

History | View | Annotate | Download (4.1 kB)

1
# Copyright 2011, 2012, 2013 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
from logging import getLogger
35

    
36
try:
37
    from django.conf.urls import patterns
38
except ImportError:  # Django==1.2
39
    from django.conf.urls.defaults import patterns
40

    
41
from django.http import HttpResponse
42
from django.template.loader import render_to_string
43
from django.utils import simplejson as json
44

    
45
from snf_django.lib import api
46
from synnefo.api import util
47
from synnefo.db.models import Flavor
48

    
49

    
50
log = getLogger('synnefo.api')
51

    
52

    
53
urlpatterns = patterns(
54
    'synnefo.api.flavors',
55
    (r'^(?:/|.json|.xml)?$', 'list_flavors'),
56
    (r'^/detail(?:.json|.xml)?$', 'list_flavors', {'detail': True}),
57
    (r'^/(\d+)(?:.json|.xml)?$', 'get_flavor_details'),
58
)
59

    
60

    
61
def flavor_to_dict(flavor, detail=True):
62
    d = {'id': flavor.id, 'name': flavor.name}
63
    d['links'] = util.flavor_to_links(flavor.id)
64
    if detail:
65
        d['ram'] = flavor.ram
66
        d['disk'] = flavor.disk
67
        d['vcpus'] = flavor.cpu
68
        d['SNF:disk_template'] = flavor.disk_template
69
    return d
70

    
71

    
72
@api.api_method(http_method='GET', user_required=True, logger=log)
73
def list_flavors(request, detail=False):
74
    # Normal Response Codes: 200, 203
75
    # Error Response Codes: computeFault (400, 500),
76
    #                       serviceUnavailable (503),
77
    #                       unauthorized (401),
78
    #                       badRequest (400),
79
    #                       overLimit (413)
80

    
81
    log.debug('list_flavors detail=%s', detail)
82
    active_flavors = Flavor.objects.exclude(deleted=True)
83
    flavors = [flavor_to_dict(flavor, detail)
84
               for flavor in active_flavors.order_by('id')]
85

    
86
    if request.serialization == 'xml':
87
        data = render_to_string('list_flavors.xml', {
88
            'flavors': flavors,
89
            'detail': detail})
90
    else:
91
        data = json.dumps({'flavors': flavors})
92

    
93
    return HttpResponse(data, status=200)
94

    
95

    
96
@api.api_method(http_method='GET', user_required=True, logger=log)
97
def get_flavor_details(request, flavor_id):
98
    # Normal Response Codes: 200, 203
99
    # Error Response Codes: computeFault (400, 500),
100
    #                       serviceUnavailable (503),
101
    #                       unauthorized (401),
102
    #                       badRequest (400),
103
    #                       itemNotFound (404),
104
    #                       overLimit (413)
105

    
106
    log.debug('get_flavor_details %s', flavor_id)
107
    flavor = util.get_flavor(flavor_id, include_deleted=True)
108
    flavordict = flavor_to_dict(flavor, detail=True)
109

    
110
    if request.serialization == 'xml':
111
        data = render_to_string('flavor.xml', {'flavor': flavordict})
112
    else:
113
        data = json.dumps({'flavor': flavordict})
114

    
115
    return HttpResponse(data, status=200)