Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / management / commands / service-list.py @ 398a9604

History | View | Annotate | Download (2.1 kB)

1 42f0a495 Giorgos Korfiatis
# Copyright 2012, 2013 GRNET S.A. All rights reserved.
2 6b03a847 Sofia Papagiannaki
#
3 64cd4730 Antony Chazapis
# Redistribution and use in source and binary forms, with or
4 64cd4730 Antony Chazapis
# without modification, are permitted provided that the following
5 64cd4730 Antony Chazapis
# conditions are met:
6 6b03a847 Sofia Papagiannaki
#
7 64cd4730 Antony Chazapis
#   1. Redistributions of source code must retain the above
8 64cd4730 Antony Chazapis
#      copyright notice, this list of conditions and the following
9 64cd4730 Antony Chazapis
#      disclaimer.
10 6b03a847 Sofia Papagiannaki
#
11 64cd4730 Antony Chazapis
#   2. Redistributions in binary form must reproduce the above
12 64cd4730 Antony Chazapis
#      copyright notice, this list of conditions and the following
13 64cd4730 Antony Chazapis
#      disclaimer in the documentation and/or other materials
14 64cd4730 Antony Chazapis
#      provided with the distribution.
15 6b03a847 Sofia Papagiannaki
#
16 64cd4730 Antony Chazapis
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 64cd4730 Antony Chazapis
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 64cd4730 Antony Chazapis
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 64cd4730 Antony Chazapis
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 64cd4730 Antony Chazapis
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 64cd4730 Antony Chazapis
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 64cd4730 Antony Chazapis
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 64cd4730 Antony Chazapis
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 64cd4730 Antony Chazapis
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 64cd4730 Antony Chazapis
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 64cd4730 Antony Chazapis
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 64cd4730 Antony Chazapis
# POSSIBILITY OF SUCH DAMAGE.
28 6b03a847 Sofia Papagiannaki
#
29 64cd4730 Antony Chazapis
# The views and conclusions contained in the software and
30 64cd4730 Antony Chazapis
# documentation are those of the authors and should not be
31 64cd4730 Antony Chazapis
# interpreted as representing official policies, either expressed
32 64cd4730 Antony Chazapis
# or implied, of GRNET S.A.
33 64cd4730 Antony Chazapis
34 6b03a847 Sofia Papagiannaki
from astakos.im.models import Service
35 fc5138f0 Sofia Papagiannaki
from synnefo.webproject.management.commands import ListCommand
36 64cd4730 Antony Chazapis
37 5ce3ce4f Sofia Papagiannaki
38 42f0a495 Giorgos Korfiatis
class Command(ListCommand):
39 77f6e87f Sofia Papagiannaki
    help = "List services"
40 42f0a495 Giorgos Korfiatis
    object_class = Service
41 42f0a495 Giorgos Korfiatis
42 42f0a495 Giorgos Korfiatis
    FIELDS = {
43 42f0a495 Giorgos Korfiatis
        "id": ("id", "ID"),
44 42f0a495 Giorgos Korfiatis
        "name": ("name", "Service Name"),
45 362ff471 Kostas Papadimitriou
        "url": ("url", "Service url"),
46 362ff471 Kostas Papadimitriou
        "api_url": ("api_url", "Service API url"),
47 42f0a495 Giorgos Korfiatis
        "token": ("auth_token", "Authentication token"),
48 42f0a495 Giorgos Korfiatis
        "created": ("auth_token_created", "Token creation date"),
49 42f0a495 Giorgos Korfiatis
        "expires": ("auth_token_expires", "Token expiration date"),
50 42f0a495 Giorgos Korfiatis
    }
51 42f0a495 Giorgos Korfiatis
52 362ff471 Kostas Papadimitriou
    fields = ["id", "name", "url", "api_url", "token", "created", "expires"]