~ubuntu-branches/ubuntu/raring/maas/raring-updates

« back to all changes in this revision

Viewing changes to src/maasserver/dj14/genericipaddressfield.py

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez, Raphaël Badin, Julian Edwards, Jeroen Vermeulen, Gavin Panella, Andres Rodriguez
  • Date: 2013-03-04 11:49:44 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20130304114944-81my0hho8arxa3ix
Tags: 1.3+bzr1452+dfsg-0ubuntu1
* New upstream release.
  - MAAS file storage mechanism is shifting from a single shared
    namespace to a per-user namespace. Operators of the majority
    of MAAS systems will not notice any change. However, operators
    of the most complex installations may find that a new
    "shared-environment" user is created, and that some resources
    are reassigned to it, such as API credentials and SSH public
    keys. This provides a transitional environment that mimics the
    behaviour of a shared namespace.

[ Raphaël Badin ]
* debian/control: maas-region-controller depends on bind9utils.
  (LP: #1103195)
* debian/maas-dns.postinst: Call write_dns_config.
  (LP: #1085865).
* debian/maas-cluster-controller.postinst: Fix the name of the config
  file (/etc/maas/pserv.yaml and not /etc/maas/pserv.conf)
  (LP: #1083542).
* debian/extras/99-maas-sudoers: Add 'SETENV:' to sudo rule
  to allow preserving the environment when running
  /usr/sbin/maas-import-pxe-files via sudo.
* debian/maas-dns.postinst: fix permissions and group ownership of
  file /etc/bind/maas/named.conf.rndc.maas. (LP: #1066935)
* debian/control: Remove the dependency of maas-cluster-controller
  on rabbitmq-server. (LP: #1072744)
* debian/extras/99-maas-sudoers: Add sudo rule for script
  /usr/sbin/maas-import-pxe-files.
* debian/maas-cluster-controller.install: Removed commissioning-user-data
  script.

[ Julian Edwards ]
* debian/maas-region-controller.install: Remove installation of maas-gc; it
  is no longer required as upstream no longer stores files in the filesystem.
  (LP: #1069734)
* debian/maas-cluster-controller.postinst: Ensure that /etc/maas/pserv.yaml
  is updated when reconfiguring. (LP: #1081212)

[ Jeroen Vermeulen ]
* debian/maas-cluster-controller.install: Install import scripts.
* debian/maas-cluster-controller.postinst: Configure tgt (the iSCSI server)
  so the import script can install files to it.
* debian/maas-cluster-controller.postrm: Clean up tgt config.
* debian/maas-region-controller.install: Move import scripts out to the
  cluster controller, and drop the maas-import-isos compatibility script.
* debian/maas-region-controller.postinst: Remove tgt config.
* debian/maas-region-controller.postrm: Remove tgt config cleanup.
* Bump code revision to include latest user_data.template fixes.

[ Gavin Panella ]
* debian/extras/99-maas: squashfs image download is no longer needed.
* debian/maas-cluster-controller.install: maas-import-squashfs and its
  configuration file are no longer part of upstream.
* debian/maas-cluster-controller.install: The maas-import-pxe-files cron
  task is no longer used.
* debian/maas-cluster-controller.postinst: Remove leading comment
  markers from the 'generator' line in pserv.yaml.

[ Andres Rodriguez ]
* debian/control:
  - maas-cluster-controller Conflicts with tftpd-hpa (LP: #1076028)
  - maas-dns: Conflicts with dnsmasq
  - maas-cluster-controller Conflicts/Replaces maas-region-controller as
    import scripts are no longer shipped in the region.
  - debian/control: Depends on distro-info for maas-cluster-controller
    instead of maas-region-controller (LP: #1103194)
* debian/maas-cluster-controller.config: If URL has been detected,
  add /MAAS if it doesn't contain it. This helps upgrades from versions
  where DEFAULT_MAAS_URL didn't use /MAAS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# flake8: noqa
2
 
# Extract of Django 1.4's db/models/fields/__init__.py file with modified
3
 
# imports.
4
 
from django.core import exceptions
5
 
from django.db.models.fields import Field
6
 
from django.utils.translation import ugettext_lazy as _
7
 
from maasserver.dj14.forms import GenericIPAddressFormField
8
 
from maasserver.dj14.ipv6 import clean_ipv6_address
9
 
from maasserver.dj14.validators import ip_address_validators
10
 
 
11
 
 
12
 
class GenericIPAddressField(Field):
13
 
    empty_strings_allowed = True
14
 
    description = _("IP address")
15
 
    default_error_messages = {}
16
 
 
17
 
    def __init__(self, protocol='both', unpack_ipv4=False, *args, **kwargs):
18
 
        self.unpack_ipv4 = unpack_ipv4
19
 
        self.default_validators, invalid_error_message = \
20
 
            ip_address_validators(protocol, unpack_ipv4)
21
 
        self.default_error_messages['invalid'] = invalid_error_message
22
 
        kwargs['max_length'] = 39
23
 
        Field.__init__(self, *args, **kwargs)
24
 
 
25
 
    def get_internal_type(self):
26
 
        return "GenericIPAddressField"
27
 
 
28
 
    def to_python(self, value):
29
 
        if value and ':' in value:
30
 
            return clean_ipv6_address(value,
31
 
                self.unpack_ipv4, self.error_messages['invalid'])
32
 
        return value
33
 
 
34
 
    def get_db_prep_value(self, value, connection, prepared=False):
35
 
        if not prepared:
36
 
            value = self.get_prep_value(value)
37
 
        return value or None
38
 
 
39
 
    def get_prep_value(self, value):
40
 
        if value and ':' in value:
41
 
            try:
42
 
                return clean_ipv6_address(value, self.unpack_ipv4)
43
 
            except exceptions.ValidationError:
44
 
                pass
45
 
        return value
46
 
 
47
 
    def formfield(self, **kwargs):
48
 
        defaults = {'form_class': GenericIPAddressFormField}
49
 
        defaults.update(kwargs)
50
 
        return super(GenericIPAddressField, self).formfield(**defaults)