Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / management / commands / service-add.py @ c7c0ec58

History | View | Annotate | Download (2.3 kB)

1 611a1398 Sofia Papagiannaki
# Copyright 2012 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 django.core.management.base import BaseCommand, CommandError
35 64cd4730 Antony Chazapis
36 3b99d2d6 Sofia Papagiannaki
from astakos.im.api.callpoint import AstakosCallpoint
37 5ce3ce4f Sofia Papagiannaki
38 6b03a847 Sofia Papagiannaki
class Command(BaseCommand):
39 6b03a847 Sofia Papagiannaki
    args = "<name> <url> [<icon>]"
40 6b03a847 Sofia Papagiannaki
    help = "Register a service"
41 5ce3ce4f Sofia Papagiannaki
42 6b03a847 Sofia Papagiannaki
    def handle(self, *args, **options):
43 6b03a847 Sofia Papagiannaki
        if len(args) < 2:
44 6b03a847 Sofia Papagiannaki
            raise CommandError("Invalid number of arguments")
45 5ce3ce4f Sofia Papagiannaki
46 9a06d96f Olga Brani
        s = {'name':args[0], 'url':args[1]}
47 6b03a847 Sofia Papagiannaki
        if len(args) == 3:
48 9a06d96f Olga Brani
            s['icon'] = args[2]
49 6b03a847 Sofia Papagiannaki
        try:
50 3b99d2d6 Sofia Papagiannaki
            c = AstakosCallpoint()
51 e13fae3d root
            r = c.add_services((s,)).next()
52 6b03a847 Sofia Papagiannaki
        except Exception, e:
53 5ce3ce4f Sofia Papagiannaki
            raise CommandError(e)
54 9a06d96f Olga Brani
        else:
55 68977cc8 Georgios D. Tsoukalas
            if r.is_success:
56 e13fae3d root
                self.stdout.write(
57 e13fae3d root
                    'Service created successfully\n')
58 e13fae3d root
            else:
59 68977cc8 Georgios D. Tsoukalas
                raise CommandError(r.reason)