Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / logic / management / commands / backend-add.py @ 9e20fcee

History | View | Annotate | Download (5.7 kB)

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

    
31
from optparse import make_option
32
from django.core.management.base import BaseCommand, CommandError
33

    
34
from django.db import transaction
35
from synnefo.db.models import Backend, Network
36
from django.db.utils import IntegrityError
37
from synnefo.logic.backend import (get_physical_resources,
38
                                   update_resources,
39
                                   create_network_synced,
40
                                   connect_network_synced)
41
from synnefo.management.common import check_backend_credentials, pprint_table
42

    
43

    
44
class Command(BaseCommand):
45
    can_import_settings = True
46

    
47
    help = 'Create a new backend.'
48
    output_transaction = True  # The management command runs inside
49
                               # an SQL transaction
50
    option_list = BaseCommand.option_list + (
51
        make_option('--clustername', dest='clustername'),
52
        make_option('--port', dest='port', default=5080),
53
        make_option('--user', dest='username'),
54
        make_option('--pass', dest='password'),
55
        make_option(
56
            '--no-check', action='store_false',
57
            dest='check', default=True,
58
            help="Do not perform credentials check and resources update"),
59
        make_option(
60
            '--no-init', action='store_false',
61
            dest='init', default=True,
62
            help="Do not perform initialization of the Backend Model")
63
    )
64

    
65
    @transaction.commit_on_success
66
    def handle(self, **options):
67
        clustername = options['clustername']
68
        port = options['port']
69
        username = options['username']
70
        password = options['password']
71

    
72
        if not (clustername and username and password):
73
            raise CommandError("Clustername, user and pass must be supplied")
74

    
75
        # Ensure correctness of credentials
76
        if options['check']:
77
            check_backend_credentials(clustername, port, username, password)
78

    
79
        # Create the new backend in database
80
        try:
81
            backend = Backend.objects.create(clustername=clustername,
82
                                             port=port,
83
                                             username=username,
84
                                             password=password,
85
                                             drained=True)
86
        except IntegrityError as e:
87
            raise CommandError("Cannot create backend: %s\n" % e)
88

    
89
        self.stdout.write('\nSuccessfully created backend with id %d\n' %
90
                          backend.id)
91

    
92
        if not options['check']:
93
            return
94

    
95
        self.stdout.write('\rRetrieving backend resources:\n')
96
        resources = get_physical_resources(backend)
97
        attr = ['mfree', 'mtotal', 'dfree', 'dtotal', 'pinst_cnt', 'ctotal']
98

    
99
        table = [[str(resources[x]) for x in attr]]
100
        pprint_table(self.stdout, table, attr)
101

    
102
        update_resources(backend, resources)
103

    
104
        if not options['init']:
105
            return
106

    
107
        networks = Network.objects.filter(deleted=False, public=False)
108
        if not networks:
109
            return
110

    
111
        self.stdout.write('\nCreating the follow networks:\n')
112
        headers = ('Name', 'Subnet', 'Gateway', 'Mac Prefix', 'Public')
113
        table = []
114

    
115
        for net in networks:
116
            table.append((net.backend_id, str(net.subnet), str(net.gateway),
117
                         str(net.mac_prefix), str(net.public)))
118
        pprint_table(self.stdout, table, headers)
119

    
120
        for net in networks:
121
            net.create_backend_network(backend)
122
            result = create_network_synced(net, backend)
123
            if result[0] != "success":
124
                self.stdout.write('\nError Creating Network %s: %s\n' %
125
                                  (net.backend_id, result[1]))
126
            else:
127
                self.stdout.write('Successfully created Network: %s\n' %
128
                                  net.backend_id)
129
            result = connect_network_synced(network=net, backend=backend)
130
            if result[0] != "success":
131
                self.stdout.write('\nError Connecting Network %s: %s\n' %
132
                                  (net.backend_id, result[1]))
133
            else:
134
                self.stdout.write('Successfully connected Network: %s\n' %
135
                                  net.backend_id)