Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / api / compute_urls.py @ 9835a70d

History | View | Annotate | Download (2.2 kB)

1 e440e835 Christos Stavrakakis
# Copyright 2011, 2012, 2013 GRNET S.A. All rights reserved.
2 e440e835 Christos Stavrakakis
#
3 adee02b8 Giorgos Verigakis
# Redistribution and use in source and binary forms, with or
4 adee02b8 Giorgos Verigakis
# without modification, are permitted provided that the following
5 adee02b8 Giorgos Verigakis
# conditions are met:
6 e440e835 Christos Stavrakakis
#
7 adee02b8 Giorgos Verigakis
#   1. Redistributions of source code must retain the above
8 adee02b8 Giorgos Verigakis
#      copyright notice, this list of conditions and the following
9 adee02b8 Giorgos Verigakis
#      disclaimer.
10 e440e835 Christos Stavrakakis
#
11 adee02b8 Giorgos Verigakis
#   2. Redistributions in binary form must reproduce the above
12 adee02b8 Giorgos Verigakis
#      copyright notice, this list of conditions and the following
13 adee02b8 Giorgos Verigakis
#      disclaimer in the documentation and/or other materials
14 adee02b8 Giorgos Verigakis
#      provided with the distribution.
15 e440e835 Christos Stavrakakis
#
16 adee02b8 Giorgos Verigakis
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 adee02b8 Giorgos Verigakis
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 adee02b8 Giorgos Verigakis
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 adee02b8 Giorgos Verigakis
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 adee02b8 Giorgos Verigakis
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 adee02b8 Giorgos Verigakis
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 adee02b8 Giorgos Verigakis
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 adee02b8 Giorgos Verigakis
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 adee02b8 Giorgos Verigakis
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 adee02b8 Giorgos Verigakis
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 adee02b8 Giorgos Verigakis
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 adee02b8 Giorgos Verigakis
# POSSIBILITY OF SUCH DAMAGE.
28 e440e835 Christos Stavrakakis
#
29 adee02b8 Giorgos Verigakis
# The views and conclusions contained in the software and
30 adee02b8 Giorgos Verigakis
# documentation are those of the authors and should not be
31 adee02b8 Giorgos Verigakis
# interpreted as representing official policies, either expressed
32 adee02b8 Giorgos Verigakis
# or implied, of GRNET S.A.
33 00b4f1be Faidon Liambotis
34 6b256427 Christos Stavrakakis
from django.conf.urls import include, patterns
35 00b4f1be Faidon Liambotis
36 269ac8de Christos Stavrakakis
from snf_django.lib.api import api_endpoint_not_found
37 cdd6fc06 Christos Stavrakakis
from synnefo.api import (servers, flavors, images, extensions)
38 d8e50a39 Giorgos Verigakis
from synnefo.api.versions import versions_list, version_details
39 00b4f1be Faidon Liambotis
40 00b4f1be Faidon Liambotis
41 d8e50a39 Giorgos Verigakis
#
42 2bf7498b Georgios D. Tsoukalas
# The OpenStack Compute API v2.0
43 d8e50a39 Giorgos Verigakis
#
44 cdd6fc06 Christos Stavrakakis
compute_api20_patterns = patterns(
45 e440e835 Christos Stavrakakis
    '',
46 7d368e73 Christos Stavrakakis
    (r'^servers', include(servers)),
47 7d368e73 Christos Stavrakakis
    (r'^flavors', include(flavors)),
48 7d368e73 Christos Stavrakakis
    (r'^images', include(images)),
49 7d368e73 Christos Stavrakakis
    (r'^extensions', include(extensions)),
50 7e2f9d4b Giorgos Verigakis
)
51 7e2f9d4b Giorgos Verigakis
52 00b4f1be Faidon Liambotis
53 e440e835 Christos Stavrakakis
urlpatterns = patterns(
54 e440e835 Christos Stavrakakis
    '',
55 d8e50a39 Giorgos Verigakis
    (r'^(?:.json|.xml|.atom)?$', versions_list),
56 2bf7498b Georgios D. Tsoukalas
    (r'^v2.0/(?:.json|.xml|.atom)?$', version_details,
57 e440e835 Christos Stavrakakis
        {'api_version': 'v1.1'}),
58 cdd6fc06 Christos Stavrakakis
    (r'^v2.0/', include(compute_api20_patterns)),
59 269ac8de Christos Stavrakakis
    (r'^.*', api_endpoint_not_found),
60 00b4f1be Faidon Liambotis
)