Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (3.9 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
from synnefo.management.common import get_vm
38

    
39
from synnefo.db.models import VirtualMachine
40

    
41

    
42
class Command(BaseCommand):
43
    args = "<server ID>"
44
    help = "Modify a server"
45

    
46
    option_list = BaseCommand.option_list + (
47
        make_option(
48
            '--name',
49
            dest='name',
50
            metavar='NAME',
51
            help="Set server's name"),
52
        make_option(
53
            '--owner',
54
            dest='owner',
55
            metavar='USER_ID',
56
            help="Set server's owner"),
57
        make_option(
58
            '--state',
59
            dest='state',
60
            metavar='STATE',
61
            help="Set server's state"),
62
        make_option(
63
            '--set-deleted',
64
            action='store_true',
65
            dest='deleted',
66
            help="Mark a server as deleted"),
67
        make_option(
68
            '--set-undeleted',
69
            action='store_true',
70
            dest='undeleted',
71
            help="Mark a server as not deleted"),
72
        make_option(
73
            '--set-suspended',
74
            action='store_true',
75
            dest='suspended',
76
            help="Mark a server as suspended"),
77
        make_option(
78
            '--set-unsuspended',
79
            action='store_true',
80
            dest='unsuspended',
81
            help="Mark a server as not suspended")
82
    )
83

    
84
    def handle(self, *args, **options):
85
        if len(args) != 1:
86
            raise CommandError("Please provide a server ID")
87

    
88
        server = get_vm(args[0])
89

    
90
        name = options.get('name')
91
        if name is not None:
92
            server.name = name
93

    
94
        owner = options.get('owner')
95
        if owner is not None:
96
            server.userid = owner
97

    
98
        state = options.get('state')
99
        if state is not None:
100
            allowed = [x[0] for x in VirtualMachine.OPER_STATES]
101
            if state not in allowed:
102
                msg = "Invalid state, must be one of %s" % ', '.join(allowed)
103
                raise CommandError(msg)
104
            server.operstate = state
105

    
106
        if options.get('deleted'):
107
            server.deleted = True
108
        elif options.get('undeleted'):
109
            server.deleted = False
110

    
111
        if options.get('suspended'):
112
            server.suspended = True
113
        elif options.get('unsuspended'):
114
            server.suspended = False
115

    
116
        server.save()