Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / api / management / commands / port-list.py @ b5e0d5c9

History | View | Annotate | Download (3 kB)

1 9541aab5 Marios Kogias
# Copyright 2012-2013 GRNET S.A. All rights reserved.
2 9541aab5 Marios Kogias
#
3 9541aab5 Marios Kogias
# Redistribution and use in source and binary forms, with or
4 9541aab5 Marios Kogias
# without modification, are permitted provided that the following
5 9541aab5 Marios Kogias
# conditions are met:
6 9541aab5 Marios Kogias
#
7 9541aab5 Marios Kogias
#   1. Redistributions of source code must retain the above
8 9541aab5 Marios Kogias
#      copyright notice, this list of conditions and the following
9 9541aab5 Marios Kogias
#      disclaimer.
10 9541aab5 Marios Kogias
#
11 9541aab5 Marios Kogias
#   2. Redistributions in binary form must reproduce the above
12 9541aab5 Marios Kogias
#      copyright notice, this list of conditions and the following
13 9541aab5 Marios Kogias
#      disclaimer in the documentation and/or other materials
14 9541aab5 Marios Kogias
#      provided with the distribution.
15 9541aab5 Marios Kogias
#
16 9541aab5 Marios Kogias
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 9541aab5 Marios Kogias
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 9541aab5 Marios Kogias
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 9541aab5 Marios Kogias
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 9541aab5 Marios Kogias
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 9541aab5 Marios Kogias
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 9541aab5 Marios Kogias
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 9541aab5 Marios Kogias
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 9541aab5 Marios Kogias
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 9541aab5 Marios Kogias
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 9541aab5 Marios Kogias
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 9541aab5 Marios Kogias
# POSSIBILITY OF SUCH DAMAGE.
28 9541aab5 Marios Kogias
#
29 9541aab5 Marios Kogias
# The views and conclusions contained in the software and
30 9541aab5 Marios Kogias
# documentation are those of the authors and should not be
31 9541aab5 Marios Kogias
# interpreted as representing official policies, either expressed
32 9541aab5 Marios Kogias
# or implied, of GRNET S.A.
33 9541aab5 Marios Kogias
34 86961519 Christos Stavrakakis
#from optparse import make_option
35 9541aab5 Marios Kogias
36 9541aab5 Marios Kogias
from snf_django.management.commands import ListCommand
37 9541aab5 Marios Kogias
from synnefo.db.models import NetworkInterface
38 9541aab5 Marios Kogias
from synnefo.settings import (CYCLADES_SERVICE_TOKEN as ASTAKOS_TOKEN,
39 9541aab5 Marios Kogias
                              ASTAKOS_BASE_URL)
40 9541aab5 Marios Kogias
41 9541aab5 Marios Kogias
from logging import getLogger
42 9541aab5 Marios Kogias
log = getLogger(__name__)
43 9541aab5 Marios Kogias
44 9541aab5 Marios Kogias
45 9541aab5 Marios Kogias
class Command(ListCommand):
46 9541aab5 Marios Kogias
    help = "List ports"
47 9541aab5 Marios Kogias
48 9541aab5 Marios Kogias
    object_class = NetworkInterface
49 9541aab5 Marios Kogias
    user_uuid_field = "userid"
50 9541aab5 Marios Kogias
    astakos_url = ASTAKOS_BASE_URL
51 9541aab5 Marios Kogias
    astakos_token = ASTAKOS_TOKEN
52 68129b44 Christos Stavrakakis
    prefetch_related = ["ips"]
53 9541aab5 Marios Kogias
54 68129b44 Christos Stavrakakis
    def get_fixed_ips(port):
55 68129b44 Christos Stavrakakis
        return ",".join(port.ips.values_list("address", flat=True))
56 9541aab5 Marios Kogias
57 9541aab5 Marios Kogias
    FIELDS = {
58 9541aab5 Marios Kogias
        "id": ("id", "The ID of the port"),
59 9541aab5 Marios Kogias
        "name": ("name", "The name of the port"),
60 9541aab5 Marios Kogias
        "user.uuid": ("userid", "The UUID of the port's owner"),
61 9541aab5 Marios Kogias
        "mac_address": ("mac", "The MAC address of the port"),
62 fae6e5f0 Christos Stavrakakis
        "device_id": ("machine_id", "The vm's id the port is conncted to"),
63 86961519 Christos Stavrakakis
        "state": ("state", "The port's status"),
64 9541aab5 Marios Kogias
        "device_owner": ("device_owner", "The owner of the port (vm/router)"),
65 fae6e5f0 Christos Stavrakakis
        "network": ("network_id", "The network's ID the port is\
66 9541aab5 Marios Kogias
                        connected to"),
67 9541aab5 Marios Kogias
        "created": ("created", "The date the port was created"),
68 9541aab5 Marios Kogias
        "updated": ("updated", "The date the port was updated"),
69 9541aab5 Marios Kogias
        "fixed_ips": (get_fixed_ips, "The ips and subnets associated with\
70 9541aab5 Marios Kogias
                                     the port"),
71 9541aab5 Marios Kogias
    }
72 9541aab5 Marios Kogias
73 9541aab5 Marios Kogias
    fields = ["id", "name", "user.uuid", "mac_address", "network",
74 86961519 Christos Stavrakakis
              "device_id", "fixed_ips", "state"]