Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (3.6 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 a53b5141 Marios Kogias
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 9835a70d Christos Stavrakakis
                              ASTAKOS_AUTH_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 a53b5141 Marios Kogias
    option_list = ListCommand.option_list + (
49 a53b5141 Marios Kogias
        make_option(
50 a53b5141 Marios Kogias
            '--public',
51 a53b5141 Marios Kogias
            dest='public',
52 a53b5141 Marios Kogias
            action='store_true',
53 a53b5141 Marios Kogias
            default=False,
54 a53b5141 Marios Kogias
            help="List only ports connected to public networks"),
55 a53b5141 Marios Kogias
        make_option(
56 a53b5141 Marios Kogias
            '--server',
57 a53b5141 Marios Kogias
            dest='server_id',
58 a53b5141 Marios Kogias
            default=False,
59 a53b5141 Marios Kogias
            help="List ports connected to specific server"),
60 a53b5141 Marios Kogias
    )
61 a53b5141 Marios Kogias
62 9541aab5 Marios Kogias
    object_class = NetworkInterface
63 9541aab5 Marios Kogias
    user_uuid_field = "userid"
64 9835a70d Christos Stavrakakis
    astakos_url = ASTAKOS_AUTH_URL
65 9541aab5 Marios Kogias
    astakos_token = ASTAKOS_TOKEN
66 68129b44 Christos Stavrakakis
    prefetch_related = ["ips"]
67 9541aab5 Marios Kogias
68 68129b44 Christos Stavrakakis
    def get_fixed_ips(port):
69 68129b44 Christos Stavrakakis
        return ",".join(port.ips.values_list("address", flat=True))
70 9541aab5 Marios Kogias
71 9541aab5 Marios Kogias
    FIELDS = {
72 9541aab5 Marios Kogias
        "id": ("id", "The ID of the port"),
73 9541aab5 Marios Kogias
        "name": ("name", "The name of the port"),
74 9541aab5 Marios Kogias
        "user.uuid": ("userid", "The UUID of the port's owner"),
75 9541aab5 Marios Kogias
        "mac_address": ("mac", "The MAC address of the port"),
76 fae6e5f0 Christos Stavrakakis
        "device_id": ("machine_id", "The vm's id the port is conncted to"),
77 86961519 Christos Stavrakakis
        "state": ("state", "The port's status"),
78 9541aab5 Marios Kogias
        "device_owner": ("device_owner", "The owner of the port (vm/router)"),
79 fae6e5f0 Christos Stavrakakis
        "network": ("network_id", "The network's ID the port is\
80 9541aab5 Marios Kogias
                        connected to"),
81 9541aab5 Marios Kogias
        "created": ("created", "The date the port was created"),
82 9541aab5 Marios Kogias
        "updated": ("updated", "The date the port was updated"),
83 9541aab5 Marios Kogias
        "fixed_ips": (get_fixed_ips, "The ips and subnets associated with\
84 9541aab5 Marios Kogias
                                     the port"),
85 9541aab5 Marios Kogias
    }
86 9541aab5 Marios Kogias
87 9541aab5 Marios Kogias
    fields = ["id", "name", "user.uuid", "mac_address", "network",
88 86961519 Christos Stavrakakis
              "device_id", "fixed_ips", "state"]
89 a53b5141 Marios Kogias
90 a53b5141 Marios Kogias
    def handle_args(self, *args, **options):
91 a53b5141 Marios Kogias
        if options["public"]:
92 a53b5141 Marios Kogias
            self.filters["network__public"] = True
93 a53b5141 Marios Kogias
94 a53b5141 Marios Kogias
        if options["server_id"]:
95 a53b5141 Marios Kogias
            self.filters["machine"] = options["server_id"]