forms.py 40.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Copyright 2014 Budapest University of Technology and Economics (BME IK)
#
# This file is part of CIRCLE Cloud.
#
# CIRCLE is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option)
# any later version.
#
# CIRCLE is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along
# with CIRCLE.  If not, see <http://www.gnu.org/licenses/>.

18 19
from __future__ import absolute_import

20
from datetime import timedelta
21

22 23
from django.contrib.auth.forms import (
    AuthenticationForm, PasswordResetForm, SetPasswordForm,
24
    PasswordChangeForm,
25
)
26
from django.contrib.auth.models import User, Group
27

28
from crispy_forms.helper import FormHelper
29
from crispy_forms.layout import (
30
    Layout, Div, BaseInput, Field, HTML, Submit, Fieldset, TEMPLATE_PACK,
31
)
32

33
from crispy_forms.utils import render_field
34
from django import forms
35
from django.contrib.auth.forms import UserCreationForm as OrgUserCreationForm
36
from django.forms.widgets import TextInput, HiddenInput
37 38 39
from django.template import Context
from django.template.loader import render_to_string
from django.utils.translation import ugettext as _
40
from sizefield.widgets import FileSizeWidget
41

42
from firewall.models import Vlan, Host
43
from storage.models import Disk, DataStore
44
from vm.models import (
Őry Máté committed
45
    InstanceTemplate, Lease, InterfaceTemplate, Node, Trait, Instance
46
)
47
from .models import Profile, GroupProfile
48

49

50 51 52 53
class VmSaveForm(forms.Form):
    name = forms.CharField(max_length=100, label=_('Name'),
                           help_text=_('Human readable name of template.'))

Bach Dániel committed
54 55 56 57 58 59
    @property
    def helper(self):
        helper = FormHelper(self)
        helper.form_tag = False
        return helper

60

61 62
class VmCustomizeForm(forms.Form):
    name = forms.CharField()
63 64 65
    cpu_priority = forms.IntegerField()
    cpu_count = forms.IntegerField()
    ram_size = forms.IntegerField()
66
    amount = forms.IntegerField(min_value=0, initial=1)
67 68

    disks = forms.ModelMultipleChoiceField(
69
        queryset=None, required=True)
70
    networks = forms.ModelMultipleChoiceField(
71 72 73 74
        queryset=None, required=False)

    template = forms.CharField()
    customized = forms.CharField()  # dummy flag field
75 76

    def __init__(self, *args, **kwargs):
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
        self.user = kwargs.pop("user", None)
        self.template = kwargs.pop("template", None)
        super(VmCustomizeForm, self).__init__(*args, **kwargs)

        # set displayed disk and network list
        self.fields['disks'].queryset = Disk.get_objects_with_level(
            'user', self.user).exclude(type="qcow2-snap")
        self.fields['networks'].queryset = Vlan.get_objects_with_level(
            'user', self.user)

        # set initial for disk and network list
        self.initial['disks'] = self.template.disks.all()
        self.initial['networks'] = InterfaceTemplate.objects.filter(
            template=self.template).values_list("vlan", flat=True)

        # set initial for resources
        self.initial['cpu_priority'] = self.template.priority
        self.initial['cpu_count'] = self.template.num_cores
        self.initial['ram_size'] = self.template.ram_size

        # initial name and template pk
        self.initial['name'] = self.template.name
        self.initial['template'] = self.template.pk
        self.initial['customized'] = self.template.pk

102 103 104
        # set widget for amount
        self.fields['amount'].widget = NumberInput()

105
        self.helper = FormHelper(self)
106 107 108 109 110 111 112

        # don't show labels for the sliders
        self.helper.form_show_labels = True
        self.fields['cpu_count'].label = ""
        self.fields['ram_size'].label = ""
        self.fields['cpu_priority'].label = ""

113
        self.helper.layout = Layout(
114 115
            Field("template", type="hidden"),
            Field("customized", type="hidden"),
116
            Div(
117 118 119 120 121 122 123 124
                Div(
                    AnyTag(  # tip: don't try to use Button class
                        "button",
                        AnyTag(
                            "i",
                            css_class="icon-play"
                        ),
                        HTML(" Start"),
125
                        css_id="vm-create-customized-start",
126
                        css_class="btn btn-success",
127
                        style="float: right; margin-top: 24px;",
128
                    ),
129 130
                    Field("name", style="max-width: 350px;"),
                    css_class="col-sm-12",
131 132 133
                ),
                css_class="row",
            ),
134
            Div(
135
                Div(
136 137
                    Field("amount", min="1", style="max-width: 60px;"),
                    css_class="col-sm-10",
138
                ),
139 140 141 142 143 144 145
                css_class="row",
            ),
            Div(
                Div(
                    AnyTag(
                        'h2',
                        HTML(_("Resources")),
146
                    ),
147
                    css_class="col-sm-12",
148
                ),
149 150 151 152 153 154 155 156
                css_class="row",
            ),
            Div(  # cpu priority
                Div(
                    HTML('<label for="vm-cpu-priority-slider">'
                         '<i class="icon-trophy"></i> CPU priority'
                         '</label>'),
                    css_class="col-sm-3"
157
                ),
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
                Div(
                    Field('cpu_priority', id="vm-cpu-priority-slider",
                          css_class="vm-slider",
                          data_slider_min="0", data_slider_max="100",
                          data_slider_step="1",
                          data_slider_value=self.template.priority,
                          data_slider_handle="square",
                          data_slider_tooltip="hide"),
                    css_class="col-sm-9"
                ),
                css_class="row"
            ),
            Div(  # cpu count
                Div(
                    HTML('<label for="cpu-count-slider">'
                         '<i class="icon-cogs"></i> CPU count'
                         '</label>'),
                    css_class="col-sm-3"
                ),
                Div(
                    Field('cpu_count', id="vm-cpu-count-slider",
                          css_class="vm-slider",
                          data_slider_min="1", data_slider_max="8",
                          data_slider_step="1",
                          data_slider_value=self.template.num_cores,
                          data_slider_handle="square",
                          data_slider_tooltip="hide"),
                    css_class="col-sm-9"
                ),
                css_class="row"
            ),
            Div(  # ram size
                Div(
                    HTML('<label for="ram-slider">'
                         '<i class="icon-ticket"></i> RAM amount'
                         '</label>'),
                    css_class="col-sm-3"
                ),
                Div(
                    Field('ram_size', id="vm-ram-size-slider",
                          css_class="vm-slider",
                          data_slider_min="128", data_slider_max="4096",
                          data_slider_step="128",
                          data_slider_value=self.template.ram_size,
                          data_slider_handle="square",
                          data_slider_tooltip="hide"),
                    css_class="col-sm-9"
                ),
                css_class="row"
            ),
            Div(  # disks
                Div(
                    AnyTag(
                        "h2",
                        HTML("Disks")
213
                    ),
214
                    css_class="col-sm-4",
215
                ),
216
                Div(
217
                    Div(
218 219 220 221
                        Field("disks", css_class="form-control",
                              id="vm-create-disk-add-form"),
                        css_class="js-hidden",
                        style="padding-top: 15px; max-width: 450px;",
222 223
                    ),
                    Div(
224 225 226 227
                        AnyTag(
                            "h3",
                            HTML(_("No disks are added!")),
                            css_id="vm-create-disk-list",
228
                        ),
229 230 231
                        Div(
                            HTML(""),
                            style="clear: both;",
232
                        ),
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
                        # AnyTag(
                        #     "h3",
                        #     Div(
                        #         AnyTag(
                        #             "select",
                        #             css_class="form-control",
                        #             css_id="vm-create-disk-add-select",
                        #         ),
                        #         Div(
                        #             AnyTag(
                        #                 "a",
                        #                 AnyTag(
                        #                     "i",
                        #                     css_class="icon-plus-sign",
                        #                 ),
                        #                 href="#",
                        #                 css_id="vm-create-disk-add-button",
                        #                 css_class="btn btn-success",
                        #             ),
                        #             css_class="input-group-btn"
                        #         ),
                        #         css_class="input-group",
                        #         style="max-width: 330px;",
                        #     ),
                        #     css_id="vm-create-disk-add",
                        # ),
259
                        css_class="no-js-hidden",
260
                    ),
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
                    css_class="col-sm-8",
                    style="padding-top: 3px;",
                ),
                css_class="row",
            ),  # end of disks
            Div(  # network
                Div(
                    AnyTag(
                        "h2",
                        HTML(_("Network")),
                    ),
                    css_class="col-sm-4",
                ),
                Div(
                    Div(  # js-hidden
                        Field(
                            "networks",
                            css_class="form-control",
                            id="vm-create-network-add-vlan",
280
                        ),
281 282
                        css_class="js-hidden",
                        style="padding-top: 15px; max-width: 450px;",
283
                    ),
284 285 286 287 288
                    Div(  # no-js-hidden
                        AnyTag(
                            "h3",
                            HTML(_("Not added to any network!")),
                            css_id="vm-create-network-list",
289
                        ),
290 291 292 293 294 295 296 297 298
                        AnyTag(
                            "h3",
                            Div(
                                AnyTag(
                                    "select",
                                    css_class=("form-control "
                                               "font-awesome-font"),
                                    css_id="vm-create-network-add-select",
                                ),
299 300
                                Div(
                                    AnyTag(
301
                                        "a",
302
                                        AnyTag(
303 304
                                            "i",
                                            css_class="icon-plus-sign",
305
                                        ),
306 307 308
                                        css_id=("vm-create-network-add"
                                                "-button"),
                                        css_class="btn btn-success",
309
                                    ),
310
                                    css_class="input-group-btn",
311
                                ),
312 313
                                css_class="input-group",
                                style="max-width: 330px;",
314
                            ),
315
                            css_class="vm-create-network-add"
316
                        ),
317
                        css_class="no-js-hidden",
318
                    ),
319 320 321 322 323
                    css_class="col-sm-8",
                    style="padding-top: 3px;",
                ),
                css_class="row"
            ),  # end of network
324 325 326
        )


327 328
class GroupCreateForm(forms.ModelForm):

329 330 331
    description = forms.CharField(label=_("Description"), required=False,
                                  widget=forms.Textarea(attrs={'rows': 3}))

332
    def __init__(self, *args, **kwargs):
333
        new_groups = kwargs.pop('new_groups', None)
334
        super(GroupCreateForm, self).__init__(*args, **kwargs)
335 336 337 338 339 340 341 342
        choices = [('', '--')]
        if new_groups:
            choices += [(g, g) for g in new_groups if len(g) <= 64]
        self.fields['org_id'] = forms.ChoiceField(
            # TRANSLATORS: directory like in LDAP
            choices=choices, required=False, label=_('Directory identifier'))
        if not new_groups:
            self.fields['org_id'].widget = HiddenInput()
343

344 345 346 347
    def save(self, commit=True):
        if not commit:
            raise AttributeError('Committing is mandatory.')
        group = super(GroupCreateForm, self).save()
348

349 350 351 352 353
        profile = group.profile
        # multiple blanks were not be unique unlike NULLs are
        profile.org_id = self.cleaned_data['org_id'] or None
        profile.description = self.cleaned_data['description']
        profile.save()
354 355 356 357 358 359 360 361 362

        return group

    @property
    def helper(self):
        helper = FormHelper(self)
        helper.add_input(Submit("submit", _("Create")))
        helper.form_tag = False
        return helper
363 364 365

    class Meta:
        model = Group
366
        fields = ('name', )
367 368


369 370 371 372
class GroupProfileUpdateForm(forms.ModelForm):

    def __init__(self, *args, **kwargs):
        new_groups = kwargs.pop('new_groups', None)
373
        superuser = kwargs.pop('superuser', False)
374
        super(GroupProfileUpdateForm, self).__init__(*args, **kwargs)
375 376 377 378 379 380 381 382 383
        if not superuser:
            choices = [('', '--')]
            if new_groups:
                choices += [(g, g) for g in new_groups if len(g) <= 64]
            self.fields['org_id'] = forms.ChoiceField(
                choices=choices, required=False,
                label=_('Directory identifier'))
            if not new_groups:
                self.fields['org_id'].widget = HiddenInput()
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
        self.fields['description'].widget = forms.Textarea(attrs={'rows': 3})

    @property
    def helper(self):
        helper = FormHelper(self)
        helper.add_input(Submit("submit", _("Save")))
        helper.form_tag = False
        return helper

    def save(self, commit=True):
        profile = super(GroupProfileUpdateForm, self).save(commit=False)
        profile.org_id = self.cleaned_data['org_id'] or None
        if commit:
            profile.save()
        return profile

    class Meta:
        model = GroupProfile
        fields = ('description', 'org_id')


405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535
class HostForm(forms.ModelForm):

    def setowner(self, user):
        self.instance.owner = user

    def __init__(self, *args, **kwargs):
        super(HostForm, self).__init__(*args, **kwargs)
        self.helper = FormHelper(self)
        self.helper.form_show_labels = False
        self.helper.form_tag = False
        self.helper.layout = Layout(
            Div(
                Div(  # host
                    Div(
                        AnyTag(
                            'h3',
                            HTML(_("Host")),
                        ),
                        css_class="col-sm-3",
                    ),
                    css_class="row",
                ),
                Div(  # host data
                    Div(  # hostname
                        HTML('<label for="node-hostname-box">'
                             'Name'
                             '</label>'),
                        css_class="col-sm-3",
                    ),
                    Div(  # hostname
                        'hostname',
                        css_class="col-sm-9",
                    ),
                    Div(  # mac
                        HTML('<label for="node-mac-box">'
                             'MAC'
                             '</label>'),
                        css_class="col-sm-3",
                    ),
                    Div(
                        'mac',
                        css_class="col-sm-9",
                    ),
                    Div(  # ip
                        HTML('<label for="node-ip-box">'
                             'IP'
                             '</label>'),
                        css_class="col-sm-3",
                    ),
                    Div(
                        'ipv4',
                        css_class="col-sm-9",
                    ),
                    Div(  # vlan
                        HTML('<label for="node-vlan-box">'
                             'VLAN'
                             '</label>'),
                        css_class="col-sm-3",
                    ),
                    Div(
                        'vlan',
                        css_class="col-sm-9",
                    ),
                    css_class="row",
                ),
            ),
        )

    class Meta:
        model = Host
        fields = ['hostname', 'vlan', 'mac', 'ipv4', ]


class NodeForm(forms.ModelForm):

    def __init__(self, *args, **kwargs):
        super(NodeForm, self).__init__(*args, **kwargs)
        self.helper = FormHelper(self)
        self.helper.form_show_labels = False
        self.helper.layout = Layout(
            Div(
                Div(
                    Div(
                        Div(
                            AnyTag(
                                'h3',
                                HTML(_("Node")),
                            ),
                            css_class="col-sm-3",
                        ),
                        css_class="row",
                    ),
                    Div(
                        Div(  # nodename
                            HTML('<label for="node-nodename-box">'
                                 'Name'
                                 '</label>'),
                            css_class="col-sm-3",
                        ),
                        Div(
                            'name',
                            css_class="col-sm-9",
                        ),
                        css_class="row",
                    ),
                    Div(
                        Div(  # priority
                            HTML('<label for="node-nodename-box">'
                                 'Priority'
                                 '</label>'),
                            css_class="col-sm-3",
                        ),
                        Div(
                            'priority',
                            css_class="col-sm-9",
                        ),
                        css_class="row",
                    ),
                    Div(
                        Div(  # enabled
                            HTML('<label for="node-nodename-box">'
                                 'Enabled'
                                 '</label>'),
                            css_class="col-sm-3",
                        ),
                        Div(
                            'enabled',
                            css_class="col-sm-9",
                        ),
                        css_class="row",
                    ),
536
                    Div(  # nested host
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
                        HTML("""{% load crispy_forms_tags %}
                            {% crispy hostform %}
                            """)
                    ),
                    Div(
                        Div(
                            AnyTag(  # tip: don't try to use Button class
                                "button",
                                AnyTag(
                                    "i",
                                    css_class="icon-play"
                                ),
                                HTML("Start"),
                                css_id="node-create-submit",
                                css_class="btn btn-success",
                            ),
                            css_class="col-sm-12 text-right",
                        ),
                        css_class="row",
                    ),
                    css_class="col-sm-11",
                ),
                css_class="row",
            ),
        )

    class Meta:
        model = Node
        fields = ['name', 'priority', 'enabled', ]


568
class TemplateForm(forms.ModelForm):
569
    networks = forms.ModelMultipleChoiceField(
Kálmán Viktor committed
570
        queryset=None, required=False, label=_("Networks"))
571 572

    def __init__(self, *args, **kwargs):
573
        self.user = kwargs.pop("user", None)
574
        super(TemplateForm, self).__init__(*args, **kwargs)
575

Kálmán Viktor committed
576 577 578
        self.fields['networks'].queryset = Vlan.get_objects_with_level(
            'user', self.user)

579 580 581
        data = self.data.copy()
        data['owner'] = self.user.pk
        self.data = data
582

583 584
        if self.instance.pk:
            n = self.instance.interface_set.values_list("vlan", flat=True)
585
            self.initial['networks'] = n
586

587 588 589 590 591
        if not self.instance.pk and len(self.errors) < 1:
            self.instance.priority = 20
            self.instance.ram_size = 512
            self.instance.num_cores = 2

592 593 594 595 596
    def clean_owner(self):
        if self.instance.pk is not None:
            return User.objects.get(pk=self.instance.owner.pk)
        return self.user

597
    def clean_raw_data(self):
598 599 600 601
        # if raw_data has changed and the user is not superuser
        if "raw_data" in self.changed_data and not self.user.is_superuser:
            old_raw_data = InstanceTemplate.objects.get(
                pk=self.instance.pk).raw_data
602 603 604
            return old_raw_data
        else:
            return self.cleaned_data['raw_data']
605

606 607
    def save(self, commit=True):
        data = self.cleaned_data
608 609 610 611 612 613
        self.instance.max_ram_size = data.get('ram_size')

        instance = super(TemplateForm, self).save(commit=False)
        if commit:
            instance.save()

614
        # create and/or delete InterfaceTemplates
615 616 617 618 619
        networks = InterfaceTemplate.objects.filter(
            template=self.instance).values_list("vlan", flat=True)
        for m in data['networks']:
            if m.pk not in networks:
                InterfaceTemplate(vlan=m, managed=m.managed,
620 621
                                  template=self.instance).save()
        InterfaceTemplate.objects.filter(
622 623
            template=self.instance).exclude(
            vlan__in=data['networks']).delete()
624 625 626 627 628

        return instance

    @property
    def helper(self):
629 630 631
        kwargs_raw_data = {}
        if not self.user.is_superuser:
            kwargs_raw_data['readonly'] = None
632

633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
        helper = FormHelper()
        helper.layout = Layout(
            Field("name"),
            Fieldset(
                _("Resource configuration"),
                Div(  # cpu count
                    Div(
                        Field('num_cores', id="vm-cpu-count-slider",
                              css_class="vm-slider",
                              data_slider_min="1", data_slider_max="8",
                              data_slider_step="1",
                              data_slider_value=self.instance.num_cores,
                              data_slider_handle="square",
                              data_slider_tooltip="hide"),
                        css_class="col-sm-9"
                    ),
                    css_class="row"
                ),
                Div(  # cpu priority
                    Div(
                        Field('priority', id="vm-cpu-priority-slider",
                              css_class="vm-slider",
                              data_slider_min="0", data_slider_max="100",
                              data_slider_step="1",
                              data_slider_value=self.instance.priority,
                              data_slider_handle="square",
                              data_slider_tooltip="hide"),
                        css_class="col-sm-9"
                    ),
                    css_class="row"
                ),
                Div(
                    Div(
                        Field('ram_size', id="vm-ram-size-slider",
                              css_class="vm-slider",
                              data_slider_min="128", data_slider_max="4096",
                              data_slider_step="128",
                              data_slider_value=self.instance.ram_size,
                              data_slider_handle="square",
                              data_slider_tooltip="hide"),
                        css_class="col-sm-9"
                    ),
                    css_class="row",
                ),
677
                Field('max_ram_size', type="hidden", value="0"),
678 679 680
                Field('arch'),
            ),
            Fieldset(
Kálmán Viktor committed
681
                _("Virtual machine settings"),
682 683
                Field('access_method'),
                Field('boot_menu'),
684
                Field('raw_data', **kwargs_raw_data),
685 686
                Field('req_traits'),
                Field('description'),
687
                Field("parent", type="hidden"),
688 689 690
                Field("system"),
            ),
            Fieldset(
Kálmán Viktor committed
691
                _("External resources"),
692
                Field("networks"),
693 694 695 696 697 698
                Field("lease"),
                Field("tags"),
            ),
        )
        helper.add_input(Submit('submit', 'Save changes'))
        return helper
699 700 701

    class Meta:
        model = InstanceTemplate
702
        exclude = ('state', 'disks', )
703 704 705
        widgets = {
            'system': forms.TextInput
        }
706 707 708 709


class LeaseForm(forms.ModelForm):

710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
    def __init__(self, *args, **kwargs):
        super(LeaseForm, self).__init__(*args, **kwargs)
        self.generate_fields()

    # e2ae8b048e7198428f696375b8bdcd89e90002d1/django/utils/timesince.py#L10
    def get_intervals(self, delta_seconds):
        chunks = (
            (60 * 60 * 24 * 30, "months"),
            (60 * 60 * 24 * 7, "weeks"),
            (60 * 60 * 24, "days"),
            (60 * 60, "hours"),
        )
        for i, (seconds, name) in enumerate(chunks):
            count = delta_seconds // seconds
            if count != 0:
                break
        re = {'%s' % name: count}
727
        if i + 1 < len(chunks) and i > 0:
728 729 730 731 732 733 734 735 736 737
            seconds2, name2 = chunks[i + 1]
            count2 = (delta_seconds - (seconds * count)) // seconds2
            if count2 != 0:
                re['%s' % name2] = count2
        return re

    def generate_fields(self):
        intervals = ["hours", "days", "weeks", "months"]
        methods = ["suspend", "delete"]
        # feels redundant but these lines are so long
738 739 740 741
        s = (self.instance.suspend_interval.total_seconds()
             if self.instance.pk else 0)
        d = (self.instance.delete_interval.total_seconds()
             if self.instance.pk else 0)
742
        seconds = {
743 744
            'suspend': s,
            'delete': d
745 746 747 748 749 750 751 752
        }
        initial = {
            'suspend': self.get_intervals(int(seconds['suspend'])),
            'delete': self.get_intervals(int(seconds['delete']))
        }
        for m in methods:
            for idx, i in enumerate(intervals):
                self.fields["%s_%s" % (m, i)] = forms.IntegerField(
753
                    min_value=0, widget=NumberInput,
754 755 756 757
                    initial=initial[m].get(i, 0))

    def save(self, commit=True):
        data = self.cleaned_data
758

759 760
        suspend_seconds = timedelta(
            hours=data['suspend_hours'],
761 762
            days=(data['suspend_days'] + data['suspend_months'] % 12 * 30 +
                  data['suspend_months'] / 12 * 365),
763 764 765 766
            weeks=data['suspend_weeks'],
        )
        delete_seconds = timedelta(
            hours=data['delete_hours'],
767 768
            days=(data['delete_days'] + data['delete_months'] % 12 * 30 +
                  data['delete_months'] / 12 * 365),
769 770 771 772 773 774 775 776 777
            weeks=data['delete_weeks'],
        )
        self.instance.delete_interval = delete_seconds
        self.instance.suspend_interval = suspend_seconds
        instance = super(LeaseForm, self).save(commit=False)
        if commit:
            instance.save()
        return instance

778 779 780
    @property
    def helper(self):
        helper = FormHelper()
781 782
        helper.layout = Layout(
            Field('name'),
783 784
            Field("suspend_interval_seconds", type="hidden", value="0"),
            Field("delete_interval_seconds", type="hidden", value="0"),
785 786 787 788
            Div(
                Div(
                    HTML(_("Suspend in")),
                    css_class="input-group-addon",
789
                    style="width: 100px;",
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
                ),
                NumberField("suspend_hours", css_class="form-control"),
                Div(
                    HTML(_("hours")),
                    css_class="input-group-addon",
                ),
                NumberField("suspend_days", css_class="form-control"),
                Div(
                    HTML(_("days")),
                    css_class="input-group-addon",
                ),
                NumberField("suspend_weeks", css_class="form-control"),
                Div(
                    HTML(_("weeks")),
                    css_class="input-group-addon",
                ),
                NumberField("suspend_months", css_class="form-control"),
                Div(
                    HTML(_("months")),
                    css_class="input-group-addon",
                ),
                css_class="input-group interval-input",
            ),
            Div(
                Div(
                    HTML(_("Delete in")),
                    css_class="input-group-addon",
817
                    style="width: 100px;",
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841
                ),
                NumberField("delete_hours", css_class="form-control"),
                Div(
                    HTML(_("hours")),
                    css_class="input-group-addon",
                ),
                NumberField("delete_days", css_class="form-control"),
                Div(
                    HTML(_("days")),
                    css_class="input-group-addon",
                ),
                NumberField("delete_weeks", css_class="form-control"),
                Div(
                    HTML(_("weeks")),
                    css_class="input-group-addon",
                ),
                NumberField("delete_months", css_class="form-control"),
                Div(
                    HTML(_("months")),
                    css_class="input-group-addon",
                ),
                css_class="input-group interval-input",
            )
        )
842 843 844 845 846 847 848
        helper.add_input(Submit("submit", "Save changes"))
        return helper

    class Meta:
        model = Lease


849 850
class DiskAddForm(forms.Form):
    name = forms.CharField()
851 852
    size = forms.CharField(widget=FileSizeWidget, required=False)
    url = forms.CharField(required=False)
853
    is_template = forms.CharField()
854 855 856
    object_pk = forms.CharField()

    def __init__(self, *args, **kwargs):
857
        self.is_template = kwargs.pop("is_template")
858
        self.object_pk = kwargs.pop("object_pk")
859
        self.user = kwargs.pop("user")
860
        super(DiskAddForm, self).__init__(*args, **kwargs)
861
        self.initial['is_template'] = 1 if self.is_template else 0
862
        self.initial['object_pk'] = self.object_pk
863 864 865

    def clean_size(self):
        size_in_bytes = self.cleaned_data.get("size")
866
        if not size_in_bytes.isdigit() and len(size_in_bytes) > 0:
867 868 869 870
            raise forms.ValidationError(_("Invalid format, you can use "
                                          " GB or MB!"))
        return size_in_bytes

871 872 873 874 875 876 877 878 879 880 881
    def clean(self):
        cleaned_data = self.cleaned_data
        size = cleaned_data.get("size")
        url = cleaned_data.get("url")

        if not size and not url:
            msg = _("You have to either specify size or URL")
            self._errors[_("Global")] = self.error_class([msg])
        return cleaned_data

    def save(self, commit=True):
882
        data = self.cleaned_data
883

884
        if self.is_template:
885
            inst = InstanceTemplate.objects.get(pk=self.object_pk)
886
        else:
887
            inst = Instance.objects.get(pk=self.object_pk)
888

889 890 891 892 893 894 895
        if data['size']:
            kwargs = {
                'name': data['name'],
                'type': "qcow2-norm",
                'datastore': DataStore.objects.all()[0],
                'size': data['size'],
            }
896
            d = Disk.create_empty(instance=inst, user=self.user, **kwargs)
897 898 899
        else:
            kwargs = {
                'name': data['name'],
900
                'url': data['url'],
901
            }
902 903
            Disk.create_from_url_async(instance=inst, user=self.user,
                                       **kwargs)
904
            d = None
905

906 907 908 909 910 911 912
        return d

    @property
    def helper(self):
        helper = FormHelper()
        helper.form_show_labels = False
        helper.layout = Layout(
913
            Field("is_template", type="hidden"),
914
            Field("object_pk", type="hidden"),
915 916 917
            Field("name", placeholder=_("Name")),
            Field("size", placeholder=_("Disk size (for example: 20GB, "
                                        "1500MB)")),
918 919 920 921 922 923 924 925 926 927
            Field("url", placeholder=_("URL to an ISO image")),
            AnyTag(
                "div",
                HTML(
                    _("Either specify the size for an empty disk or a URL "
                      "to an ISO image!")
                ),
                css_class="alert alert-info",
                style="padding: 5px; text-align: justify;",
            ),
928
        )
929
        helper.add_input(Submit("submit", _("Add"),
930 931 932 933
                                css_class="btn btn-success"))
        return helper


934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975
class CircleAuthenticationForm(AuthenticationForm):
    # fields: username, password

    @property
    def helper(self):
        helper = FormHelper()
        helper.form_show_labels = False
        helper.layout = Layout(
            AnyTag(
                "div",
                AnyTag(
                    "span",
                    AnyTag(
                        "i",
                        css_class="icon-user",
                    ),
                    css_class="input-group-addon",
                ),
                Field("username", placeholder=_("Username"),
                      css_class="form-control"),
                css_class="input-group",
            ),
            AnyTag(
                "div",
                AnyTag(
                    "span",
                    AnyTag(
                        "i",
                        css_class="icon-lock",
                    ),
                    css_class="input-group-addon",
                ),
                Field("password", placeholder=_("Password"),
                      css_class="form-control"),
                css_class="input-group",
            ),
        )
        helper.add_input(Submit("submit", _("Sign in"),
                                css_class="btn btn-success"))
        return helper


976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
class CirclePasswordResetForm(PasswordResetForm):
    # fields: email

    @property
    def helper(self):
        helper = FormHelper()
        helper.form_show_labels = False
        helper.layout = Layout(
            AnyTag(
                "div",
                AnyTag(
                    "span",
                    AnyTag(
                        "i",
                        css_class="icon-envelope",
                    ),
                    css_class="input-group-addon",
                ),
                Field("email", placeholder=_("Email address"),
                      css_class="form-control"),
                Div(
                    AnyTag(
                        "button",
                        HTML(_("Reset password")),
                        css_class="btn btn-success",
                    ),
                    css_class="input-group-btn",
                ),
                css_class="input-group",
            ),
        )
        return helper


class CircleSetPasswordForm(SetPasswordForm):

    @property
    def helper(self):
        helper = FormHelper()
        helper.add_input(Submit("submit", _("Change password"),
                                css_class="btn btn-success change-password",
                                css_id="submit-password-button"))
        return helper


1021
class LinkButton(BaseInput):
1022

1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
    """
    Used to create a link button descriptor for the {% crispy %} template tag::

        back = LinkButton('back', 'Back', reverse_lazy('index'))

    .. note:: The first argument is also slugified and turned into the id for
              the submit button.
    """
    template = "bootstrap/layout/linkbutton.html"
    field_classes = 'btn btn-default'

    def __init__(self, name, text, url, *args, **kwargs):
        self.href = url
        super(LinkButton, self).__init__(name, text, *args, **kwargs)


1039 1040 1041 1042
class NumberInput(TextInput):
    input_type = "number"


1043 1044 1045 1046
class NumberField(Field):
    template = "crispy_forms/numberfield.html"

    def __init__(self, *args, **kwargs):
1047
        kwargs['min'] = 0
1048 1049 1050
        super(NumberField, self).__init__(*args, **kwargs)


1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
class AnyTag(Div):
    template = "crispy_forms/anytag.html"

    def __init__(self, tag, *fields, **kwargs):
        self.tag = tag
        super(AnyTag, self).__init__(*fields, **kwargs)

    def render(self, form, form_style, context, template_pack=TEMPLATE_PACK):
        fields = ''
        for field in self.fields:
            fields += render_field(field, form, form_style, context,
                                   template_pack=template_pack)

        return render_to_string(self.template, Context({'tag': self,
                                                        'fields': fields}))


class WorkingBaseInput(BaseInput):
1069

1070 1071 1072 1073
    def __init__(self, name, value, input_type="text", **kwargs):
        self.input_type = input_type
        self.field_classes = ""  # we need this for some reason
        super(WorkingBaseInput, self).__init__(name, value, **kwargs)
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083


class TraitForm(forms.ModelForm):

    def __init__(self, *args, **kwargs):
        super(TraitForm, self).__init__(*args, **kwargs)
        self.helper = FormHelper(self)
        self.helper.form_show_labels = False
        self.helper.layout = Layout(
            Div(
1084 1085
                Field('name', id="node-details-traits-input",
                      css_class="input-sm input-traits"),
1086
                Div(
1087 1088 1089 1090 1091
                    HTML('<input type="submit" '
                         'class="btn btn-default btn-sm input-traits" '
                         'value="Add trait"/>',
                         ),
                    css_class="input-group-btn",
1092
                ),
1093 1094
                css_class="input-group",
                id="node-details-traits-form",
1095 1096 1097 1098 1099 1100
            ),
        )

    class Meta:
        model = Trait
        fields = ['name']
1101 1102 1103 1104 1105


class MyProfileForm(forms.ModelForm):

    class Meta:
1106
        fields = ('preferred_language', 'email_notifications', )
1107 1108 1109 1110 1111
        model = Profile

    @property
    def helper(self):
        helper = FormHelper()
1112
        helper.add_input(Submit("submit", _("Save")))
1113 1114 1115 1116 1117
        return helper

    def save(self, *args, **kwargs):
        value = super(MyProfileForm, self).save(*args, **kwargs)
        return value
1118 1119


1120 1121 1122 1123 1124 1125 1126 1127 1128
class UnsubscribeForm(forms.ModelForm):

    class Meta:
        fields = ('email_notifications', )
        model = Profile

    @property
    def helper(self):
        helper = FormHelper()
1129
        helper.add_input(Submit("submit", _("Save")))
1130 1131 1132
        return helper


1133 1134 1135 1136 1137 1138 1139 1140 1141
class CirclePasswordChangeForm(PasswordChangeForm):

    @property
    def helper(self):
        helper = FormHelper()
        helper.add_input(Submit("submit", _("Change password"),
                                css_class="btn btn-primary",
                                css_id="submit-password-button"))
        return helper
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163


class UserCreationForm(OrgUserCreationForm):

    class Meta:
        model = User
        fields = ("username", 'email', 'first_name', 'last_name')

    @property
    def helper(self):
        helper = FormHelper()
        helper.layout = Layout('username', 'password1', 'password2', 'email',
                               'first_name', 'last_name')
        helper.add_input(Submit("submit", _("Save")))
        return helper

    def save(self, commit=True):
        user = super(UserCreationForm, self).save(commit=False)
        user.set_password(self.cleaned_data["password1"])
        if commit:
            user.save()
        return user