Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / api / management / commands / server-modify.py @ e32d0966

History | View | Annotate | Download (4 kB)

1
# Copyright 2012 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
from optparse import make_option
35

    
36
from django.core.management.base import BaseCommand, CommandError
37

    
38
from synnefo.db.models import VirtualMachine
39

    
40
from ._common import format_bool, format_date
41

    
42

    
43
class Command(BaseCommand):
44
    args = "<server ID>"
45
    help = "Modify a server"
46
    
47
    option_list = BaseCommand.option_list + (
48
        make_option('--name',
49
            dest='name',
50
            metavar='NAME',
51
            help="Set server's name"),
52
        make_option('--owner',
53
            dest='owner',
54
            metavar='USER_ID',
55
            help="Set server's owner"),
56
        make_option('--state',
57
            dest='state',
58
            metavar='STATE',
59
            help="Set server's state"),
60
        make_option('--set-deleted',
61
            action='store_true',
62
            dest='deleted',
63
            help="Mark a server as deleted"),
64
        make_option('--set-undeleted',
65
            action='store_true',
66
            dest='undeleted',
67
            help="Mark a server as not deleted"),
68
        make_option('--set-suspended',
69
            action='store_true',
70
            dest='suspended',
71
            help="Mark a server as suspended"),
72
        make_option('--set-unsuspended',
73
            action='store_true',
74
            dest='unsuspended',
75
            help="Mark a server as not suspended")
76
        )
77
    
78
    def handle(self, *args, **options):
79
        if len(args) != 1:
80
            raise CommandError("Please provide a server ID")
81
        
82
        try:
83
            server_id = int(args[0])
84
            server = VirtualMachine.objects.get(id=server_id)
85
        except (ValueError, VirtualMachine.DoesNotExist):
86
            raise CommandError("Invalid server ID")
87
        
88
        name = options.get('name')
89
        if name is not None:
90
            server.name = name
91
        
92
        owner = options.get('owner')
93
        if owner is not None:
94
            server.userid = owner
95
        
96
        state = options.get('state')
97
        if state is not None:
98
            allowed = [x[0] for x in VirtualMachine.OPER_STATES]
99
            if state not in allowed:
100
                msg = "Invalid state, must be one of %s" % ', '.join(allowed)
101
                raise CommandError(msg)
102
            server.operstate = state
103
        
104
        if options.get('deleted'):
105
            server.deleted = True
106
        elif options.get('undeleted'):
107
            server.deleted = False
108
        
109
        if options.get('suspended'):
110
            server.suspended = True
111
        elif options.get('unsuspended'):
112
            server.suspended = False
113
        
114
        server.save()