2006-11-25 14:33:59 +08:00
|
|
|
"""
|
2006-12-15 13:46:11 +08:00
|
|
|
Helper functions for creating Form classes from Django models
|
|
|
|
and database field objects.
|
2006-11-25 14:33:59 +08:00
|
|
|
"""
|
|
|
|
|
2009-12-22 23:18:51 +08:00
|
|
|
from django.db import connections
|
2008-11-01 06:07:05 +08:00
|
|
|
from django.utils.encoding import smart_unicode, force_unicode
|
2007-11-11 12:44:20 +08:00
|
|
|
from django.utils.datastructures import SortedDict
|
2008-09-02 06:22:12 +08:00
|
|
|
from django.utils.text import get_text_list, capfirst
|
2009-05-07 20:17:52 +08:00
|
|
|
from django.utils.translation import ugettext_lazy as _, ugettext
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
|
2010-01-12 10:29:45 +08:00
|
|
|
from django.core.exceptions import ValidationError, NON_FIELD_ERRORS
|
2010-01-05 11:56:19 +08:00
|
|
|
from django.core.validators import EMPTY_VALUES
|
|
|
|
from util import ErrorList
|
|
|
|
from forms import BaseForm, get_declared_fields
|
|
|
|
from fields import Field, ChoiceField
|
|
|
|
from widgets import SelectMultiple, HiddenInput, MultipleHiddenInput
|
2008-07-19 07:54:34 +08:00
|
|
|
from widgets import media_property
|
|
|
|
from formsets import BaseFormSet, formset_factory, DELETION_FIELD_NAME
|
2006-12-15 13:46:11 +08:00
|
|
|
|
2008-10-08 18:09:44 +08:00
|
|
|
try:
|
|
|
|
set
|
|
|
|
except NameError:
|
|
|
|
from sets import Set as set # Python 2.3 fallback
|
|
|
|
|
2007-05-17 05:20:35 +08:00
|
|
|
__all__ = (
|
2007-12-03 03:29:54 +08:00
|
|
|
'ModelForm', 'BaseModelForm', 'model_to_dict', 'fields_for_model',
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
'save_instance', 'form_for_fields', 'ModelChoiceField',
|
|
|
|
'ModelMultipleChoiceField',
|
2007-05-17 05:20:35 +08:00
|
|
|
)
|
2006-11-25 14:33:59 +08:00
|
|
|
|
2010-01-05 11:56:19 +08:00
|
|
|
def construct_instance(form, instance, fields=None, exclude=None):
|
2007-01-09 13:49:47 +08:00
|
|
|
"""
|
2010-01-05 11:56:19 +08:00
|
|
|
Constructs and returns a model instance from the bound ``form``'s
|
|
|
|
``cleaned_data``, but does not save the returned instance to the
|
|
|
|
database.
|
2007-01-09 13:49:47 +08:00
|
|
|
"""
|
2006-12-28 10:34:53 +08:00
|
|
|
from django.db import models
|
2008-07-19 07:54:34 +08:00
|
|
|
opts = instance._meta
|
2010-01-05 11:56:19 +08:00
|
|
|
|
2007-05-15 00:24:51 +08:00
|
|
|
cleaned_data = form.cleaned_data
|
2008-11-05 03:48:35 +08:00
|
|
|
file_field_list = []
|
2007-01-28 12:56:54 +08:00
|
|
|
for f in opts.fields:
|
2007-10-30 07:52:17 +08:00
|
|
|
if not f.editable or isinstance(f, models.AutoField) \
|
|
|
|
or not f.name in cleaned_data:
|
2007-01-09 13:49:47 +08:00
|
|
|
continue
|
2007-05-12 22:42:46 +08:00
|
|
|
if fields and f.name not in fields:
|
|
|
|
continue
|
2008-08-31 17:49:55 +08:00
|
|
|
if exclude and f.name in exclude:
|
|
|
|
continue
|
2008-11-05 03:48:35 +08:00
|
|
|
# Defer saving file-type fields until after the other fields, so a
|
|
|
|
# callable upload_to can use the values from other fields.
|
|
|
|
if isinstance(f, models.FileField):
|
|
|
|
file_field_list.append(f)
|
|
|
|
else:
|
|
|
|
f.save_form_data(instance, cleaned_data[f.name])
|
2008-12-23 13:50:51 +08:00
|
|
|
|
2008-11-05 03:48:35 +08:00
|
|
|
for f in file_field_list:
|
2007-10-30 07:52:17 +08:00
|
|
|
f.save_form_data(instance, cleaned_data[f.name])
|
2008-12-23 13:50:51 +08:00
|
|
|
|
2010-01-05 11:56:19 +08:00
|
|
|
return instance
|
|
|
|
|
|
|
|
def save_instance(form, instance, fields=None, fail_message='saved',
|
|
|
|
commit=True, exclude=None, construct=True):
|
|
|
|
"""
|
|
|
|
Saves bound Form ``form``'s cleaned_data into model instance ``instance``.
|
|
|
|
|
|
|
|
If commit=True, then the changes to ``instance`` will be saved to the
|
|
|
|
database. Returns ``instance``.
|
|
|
|
|
|
|
|
If construct=False, assume ``instance`` has already been constructed and
|
|
|
|
just needs to be saved.
|
|
|
|
"""
|
|
|
|
if construct:
|
|
|
|
instance = construct_instance(form, instance, fields, exclude)
|
|
|
|
opts = instance._meta
|
|
|
|
if form.errors:
|
|
|
|
raise ValueError("The %s could not be %s because the data didn't"
|
|
|
|
" validate." % (opts.object_name, fail_message))
|
|
|
|
|
2007-10-30 07:52:17 +08:00
|
|
|
# Wrap up the saving of m2m data as a function.
|
2007-08-05 15:39:36 +08:00
|
|
|
def save_m2m():
|
|
|
|
cleaned_data = form.cleaned_data
|
2007-01-28 12:56:54 +08:00
|
|
|
for f in opts.many_to_many:
|
2007-05-12 22:42:46 +08:00
|
|
|
if fields and f.name not in fields:
|
|
|
|
continue
|
2007-05-15 00:24:51 +08:00
|
|
|
if f.name in cleaned_data:
|
2007-08-06 21:58:56 +08:00
|
|
|
f.save_form_data(instance, cleaned_data[f.name])
|
2007-08-05 15:39:36 +08:00
|
|
|
if commit:
|
2007-10-30 07:52:17 +08:00
|
|
|
# If we are committing, save the instance and the m2m data immediately.
|
2007-08-05 15:39:36 +08:00
|
|
|
instance.save()
|
|
|
|
save_m2m()
|
|
|
|
else:
|
2007-10-30 07:52:17 +08:00
|
|
|
# We're not committing. Add a method to the form to allow deferred
|
|
|
|
# saving of m2m data.
|
2007-08-05 15:39:36 +08:00
|
|
|
form.save_m2m = save_m2m
|
2007-01-09 13:49:47 +08:00
|
|
|
return instance
|
|
|
|
|
2007-05-12 22:42:46 +08:00
|
|
|
def make_model_save(model, fields, fail_message):
|
2007-10-30 07:52:17 +08:00
|
|
|
"""Returns the save() method for a Form."""
|
2007-01-09 13:49:47 +08:00
|
|
|
def save(self, commit=True):
|
2007-05-12 22:42:46 +08:00
|
|
|
return save_instance(self, model(), fields, fail_message, commit)
|
|
|
|
return save
|
2007-10-30 07:52:17 +08:00
|
|
|
|
2007-05-12 22:42:46 +08:00
|
|
|
def make_instance_save(instance, fields, fail_message):
|
2007-10-30 07:52:17 +08:00
|
|
|
"""Returns the save() method for a Form."""
|
2007-05-12 22:42:46 +08:00
|
|
|
def save(self, commit=True):
|
|
|
|
return save_instance(self, instance, fields, fail_message, commit)
|
2007-01-09 13:49:47 +08:00
|
|
|
return save
|
2006-12-28 10:34:53 +08:00
|
|
|
|
2006-11-25 14:33:59 +08:00
|
|
|
def form_for_fields(field_list):
|
2007-10-30 07:52:17 +08:00
|
|
|
"""
|
|
|
|
Returns a Form class for the given list of Django database field instances.
|
|
|
|
"""
|
2007-11-11 12:44:20 +08:00
|
|
|
fields = SortedDict([(f.name, f.formfield())
|
|
|
|
for f in field_list if f.editable])
|
2007-01-28 06:06:56 +08:00
|
|
|
return type('FormForFields', (BaseForm,), {'base_fields': fields})
|
2007-02-20 10:42:07 +08:00
|
|
|
|
2007-12-03 03:29:54 +08:00
|
|
|
|
|
|
|
# ModelForms #################################################################
|
|
|
|
|
|
|
|
def model_to_dict(instance, fields=None, exclude=None):
|
|
|
|
"""
|
|
|
|
Returns a dict containing the data in ``instance`` suitable for passing as
|
|
|
|
a Form's ``initial`` keyword argument.
|
2007-12-17 19:59:53 +08:00
|
|
|
|
2007-12-03 03:29:54 +08:00
|
|
|
``fields`` is an optional list of field names. If provided, only the named
|
|
|
|
fields will be included in the returned dict.
|
2007-12-17 19:59:53 +08:00
|
|
|
|
2007-12-03 03:29:54 +08:00
|
|
|
``exclude`` is an optional list of field names. If provided, the named
|
|
|
|
fields will be excluded from the returned dict, even if they are listed in
|
|
|
|
the ``fields`` argument.
|
|
|
|
"""
|
|
|
|
# avoid a circular import
|
2010-01-05 11:56:19 +08:00
|
|
|
from django.db.models.fields.related import ManyToManyField
|
2007-12-03 03:29:54 +08:00
|
|
|
opts = instance._meta
|
|
|
|
data = {}
|
|
|
|
for f in opts.fields + opts.many_to_many:
|
|
|
|
if not f.editable:
|
|
|
|
continue
|
|
|
|
if fields and not f.name in fields:
|
|
|
|
continue
|
|
|
|
if exclude and f.name in exclude:
|
|
|
|
continue
|
|
|
|
if isinstance(f, ManyToManyField):
|
|
|
|
# If the object doesn't have a primry key yet, just use an empty
|
|
|
|
# list for its m2m fields. Calling f.value_from_object will raise
|
|
|
|
# an exception.
|
|
|
|
if instance.pk is None:
|
|
|
|
data[f.name] = []
|
|
|
|
else:
|
|
|
|
# MultipleChoiceWidget needs a list of pks, not object instances.
|
|
|
|
data[f.name] = [obj.pk for obj in f.value_from_object(instance)]
|
|
|
|
else:
|
|
|
|
data[f.name] = f.value_from_object(instance)
|
|
|
|
return data
|
|
|
|
|
2010-01-11 03:23:42 +08:00
|
|
|
def fields_for_model(model, fields=None, exclude=None, widgets=None, formfield_callback=lambda f, **kwargs: f.formfield(**kwargs)):
|
2007-12-03 03:29:54 +08:00
|
|
|
"""
|
|
|
|
Returns a ``SortedDict`` containing form fields for the given model.
|
|
|
|
|
|
|
|
``fields`` is an optional list of field names. If provided, only the named
|
|
|
|
fields will be included in the returned fields.
|
2007-12-17 19:59:53 +08:00
|
|
|
|
2007-12-03 03:29:54 +08:00
|
|
|
``exclude`` is an optional list of field names. If provided, the named
|
|
|
|
fields will be excluded from the returned fields, even if they are listed
|
|
|
|
in the ``fields`` argument.
|
|
|
|
"""
|
|
|
|
field_list = []
|
|
|
|
opts = model._meta
|
|
|
|
for f in opts.fields + opts.many_to_many:
|
|
|
|
if not f.editable:
|
|
|
|
continue
|
|
|
|
if fields and not f.name in fields:
|
|
|
|
continue
|
|
|
|
if exclude and f.name in exclude:
|
|
|
|
continue
|
2010-01-11 03:23:42 +08:00
|
|
|
if widgets and f.name in widgets:
|
|
|
|
kwargs = {'widget': widgets[f.name]}
|
|
|
|
else:
|
|
|
|
kwargs = {}
|
|
|
|
formfield = formfield_callback(f, **kwargs)
|
2007-12-03 03:29:54 +08:00
|
|
|
if formfield:
|
|
|
|
field_list.append((f.name, formfield))
|
2009-03-15 13:05:26 +08:00
|
|
|
field_dict = SortedDict(field_list)
|
|
|
|
if fields:
|
2009-03-17 18:30:17 +08:00
|
|
|
field_dict = SortedDict([(f, field_dict.get(f)) for f in fields if (not exclude) or (exclude and f not in exclude)])
|
2009-03-15 13:05:26 +08:00
|
|
|
return field_dict
|
2007-12-03 03:29:54 +08:00
|
|
|
|
|
|
|
class ModelFormOptions(object):
|
|
|
|
def __init__(self, options=None):
|
|
|
|
self.model = getattr(options, 'model', None)
|
|
|
|
self.fields = getattr(options, 'fields', None)
|
|
|
|
self.exclude = getattr(options, 'exclude', None)
|
2010-01-11 03:23:42 +08:00
|
|
|
self.widgets = getattr(options, 'widgets', None)
|
2007-12-03 03:29:54 +08:00
|
|
|
|
2008-02-14 20:56:49 +08:00
|
|
|
|
2007-12-03 03:29:54 +08:00
|
|
|
class ModelFormMetaclass(type):
|
2008-07-06 20:29:40 +08:00
|
|
|
def __new__(cls, name, bases, attrs):
|
|
|
|
formfield_callback = attrs.pop('formfield_callback',
|
2010-01-11 03:23:42 +08:00
|
|
|
lambda f, **kwargs: f.formfield(**kwargs))
|
2008-02-14 20:56:49 +08:00
|
|
|
try:
|
|
|
|
parents = [b for b in bases if issubclass(b, ModelForm)]
|
|
|
|
except NameError:
|
|
|
|
# We are defining ModelForm itself.
|
|
|
|
parents = None
|
2008-08-27 16:05:59 +08:00
|
|
|
declared_fields = get_declared_fields(bases, attrs, False)
|
2008-07-06 20:29:40 +08:00
|
|
|
new_class = super(ModelFormMetaclass, cls).__new__(cls, name, bases,
|
|
|
|
attrs)
|
2008-02-14 20:56:49 +08:00
|
|
|
if not parents:
|
2008-07-06 20:29:40 +08:00
|
|
|
return new_class
|
2008-02-14 20:56:49 +08:00
|
|
|
|
2008-07-19 07:54:34 +08:00
|
|
|
if 'media' not in attrs:
|
|
|
|
new_class.media = media_property(new_class)
|
2008-02-14 20:56:49 +08:00
|
|
|
opts = new_class._meta = ModelFormOptions(getattr(new_class, 'Meta', None))
|
|
|
|
if opts.model:
|
|
|
|
# If a model is defined, extract form fields from it.
|
|
|
|
fields = fields_for_model(opts.model, opts.fields,
|
2010-01-11 03:23:42 +08:00
|
|
|
opts.exclude, opts.widgets, formfield_callback)
|
2008-02-15 17:42:50 +08:00
|
|
|
# Override default model fields with any custom declared ones
|
|
|
|
# (plus, include all the other declared fields).
|
2008-02-14 20:56:49 +08:00
|
|
|
fields.update(declared_fields)
|
|
|
|
else:
|
|
|
|
fields = declared_fields
|
2008-02-15 01:38:05 +08:00
|
|
|
new_class.declared_fields = declared_fields
|
2008-02-14 20:56:49 +08:00
|
|
|
new_class.base_fields = fields
|
|
|
|
return new_class
|
2007-12-03 03:29:54 +08:00
|
|
|
|
|
|
|
class BaseModelForm(BaseForm):
|
2007-12-13 10:48:04 +08:00
|
|
|
def __init__(self, data=None, files=None, auto_id='id_%s', prefix=None,
|
2008-02-14 20:56:49 +08:00
|
|
|
initial=None, error_class=ErrorList, label_suffix=':',
|
2008-07-19 07:54:34 +08:00
|
|
|
empty_permitted=False, instance=None):
|
2007-12-03 03:29:54 +08:00
|
|
|
opts = self._meta
|
2007-12-13 10:48:04 +08:00
|
|
|
if instance is None:
|
2010-02-23 22:59:30 +08:00
|
|
|
if opts.model is None:
|
|
|
|
raise ValueError('ModelForm has no model class specified.')
|
2007-12-13 10:48:04 +08:00
|
|
|
# if we didn't get an instance, instantiate a new one
|
|
|
|
self.instance = opts.model()
|
|
|
|
object_data = {}
|
2010-01-05 11:56:19 +08:00
|
|
|
self.instance._adding = True
|
2007-12-13 10:48:04 +08:00
|
|
|
else:
|
|
|
|
self.instance = instance
|
2010-01-05 11:56:19 +08:00
|
|
|
self.instance._adding = False
|
2007-12-13 10:48:04 +08:00
|
|
|
object_data = model_to_dict(instance, opts.fields, opts.exclude)
|
2007-12-03 03:29:54 +08:00
|
|
|
# if initial was provided, it should override the values from instance
|
|
|
|
if initial is not None:
|
|
|
|
object_data.update(initial)
|
2008-08-01 22:44:38 +08:00
|
|
|
super(BaseModelForm, self).__init__(data, files, auto_id, prefix, object_data,
|
|
|
|
error_class, label_suffix, empty_permitted)
|
2009-04-30 21:47:39 +08:00
|
|
|
|
2010-01-21 10:28:03 +08:00
|
|
|
def _update_errors(self, message_dict):
|
|
|
|
for k, v in message_dict.items():
|
|
|
|
if k != NON_FIELD_ERRORS:
|
|
|
|
self._errors.setdefault(k, self.error_class()).extend(v)
|
|
|
|
# Remove the data from the cleaned_data dict since it was invalid
|
|
|
|
if k in self.cleaned_data:
|
|
|
|
del self.cleaned_data[k]
|
|
|
|
if NON_FIELD_ERRORS in message_dict:
|
|
|
|
messages = message_dict[NON_FIELD_ERRORS]
|
|
|
|
self._errors.setdefault(NON_FIELD_ERRORS, self.error_class()).extend(messages)
|
2010-01-12 10:29:45 +08:00
|
|
|
|
|
|
|
def _get_validation_exclusions(self):
|
|
|
|
"""
|
|
|
|
For backwards-compatibility, several types of fields need to be
|
|
|
|
excluded from model validation. See the following tickets for
|
|
|
|
details: #12507, #12521, #12553
|
|
|
|
"""
|
|
|
|
exclude = []
|
|
|
|
# Build up a list of fields that should be excluded from model field
|
|
|
|
# validation and unique checks.
|
|
|
|
for f in self.instance._meta.fields:
|
|
|
|
field = f.name
|
|
|
|
# Exclude fields that aren't on the form. The developer may be
|
|
|
|
# adding these values to the model after form validation.
|
|
|
|
if field not in self.fields:
|
|
|
|
exclude.append(f.name)
|
2010-02-23 07:06:09 +08:00
|
|
|
|
|
|
|
# Don't perform model validation on fields that were defined
|
|
|
|
# manually on the form and excluded via the ModelForm's Meta
|
|
|
|
# class. See #12901.
|
|
|
|
elif self._meta.fields and field not in self._meta.fields:
|
|
|
|
exclude.append(f.name)
|
2010-02-26 01:18:27 +08:00
|
|
|
elif self._meta.exclude and field in self._meta.exclude:
|
|
|
|
exclude.append(f.name)
|
2010-02-23 07:06:09 +08:00
|
|
|
|
2010-01-12 10:29:45 +08:00
|
|
|
# Exclude fields that failed form validation. There's no need for
|
|
|
|
# the model fields to validate them as well.
|
|
|
|
elif field in self._errors.keys():
|
|
|
|
exclude.append(f.name)
|
2010-02-23 07:06:09 +08:00
|
|
|
|
2010-01-12 10:29:45 +08:00
|
|
|
# Exclude empty fields that are not required by the form. The
|
|
|
|
# underlying model field may be required, so this keeps the model
|
|
|
|
# field from raising that error.
|
|
|
|
else:
|
|
|
|
form_field = self.fields[field]
|
|
|
|
field_value = self.cleaned_data.get(field, None)
|
|
|
|
if field_value is None and not form_field.required:
|
|
|
|
exclude.append(f.name)
|
|
|
|
return exclude
|
|
|
|
|
2008-09-02 03:08:08 +08:00
|
|
|
def clean(self):
|
2010-01-21 10:28:03 +08:00
|
|
|
self.validate_unique()
|
|
|
|
return self.cleaned_data
|
|
|
|
|
|
|
|
def _clean_fields(self):
|
|
|
|
"""
|
|
|
|
Cleans the form fields, constructs the instance, then cleans the model
|
|
|
|
fields.
|
|
|
|
"""
|
|
|
|
super(BaseModelForm, self)._clean_fields()
|
2010-01-05 11:56:19 +08:00
|
|
|
opts = self._meta
|
|
|
|
self.instance = construct_instance(self, self.instance, opts.fields, opts.exclude)
|
2010-01-12 10:29:45 +08:00
|
|
|
exclude = self._get_validation_exclusions()
|
2010-01-05 11:56:19 +08:00
|
|
|
try:
|
2010-01-21 10:28:03 +08:00
|
|
|
self.instance.clean_fields(exclude=exclude)
|
2010-01-05 11:56:19 +08:00
|
|
|
except ValidationError, e:
|
2010-01-21 10:28:03 +08:00
|
|
|
self._update_errors(e.message_dict)
|
|
|
|
|
|
|
|
def _clean_form(self):
|
|
|
|
"""
|
|
|
|
Runs the instance's clean method, then the form's. This is becuase the
|
|
|
|
form will run validate_unique() by default, and we should run the
|
|
|
|
model's clean method first.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
self.instance.clean()
|
|
|
|
except ValidationError, e:
|
2010-02-10 08:34:45 +08:00
|
|
|
self._update_errors({NON_FIELD_ERRORS: e.messages})
|
2010-01-21 10:28:03 +08:00
|
|
|
super(BaseModelForm, self)._clean_form()
|
|
|
|
|
|
|
|
def validate_unique(self):
|
|
|
|
"""
|
|
|
|
Calls the instance's validate_unique() method and updates the form's
|
|
|
|
validation errors if any were raised.
|
|
|
|
"""
|
|
|
|
exclude = self._get_validation_exclusions()
|
|
|
|
try:
|
|
|
|
self.instance.validate_unique(exclude=exclude)
|
|
|
|
except ValidationError, e:
|
|
|
|
self._update_errors(e.message_dict)
|
2007-12-03 03:29:54 +08:00
|
|
|
|
|
|
|
def save(self, commit=True):
|
|
|
|
"""
|
2008-02-14 20:56:49 +08:00
|
|
|
Saves this ``form``'s cleaned_data into model instance
|
|
|
|
``self.instance``.
|
2007-12-03 03:29:54 +08:00
|
|
|
|
|
|
|
If commit=True, then the changes to ``instance`` will be saved to the
|
|
|
|
database. Returns ``instance``.
|
|
|
|
"""
|
|
|
|
if self.instance.pk is None:
|
|
|
|
fail_message = 'created'
|
|
|
|
else:
|
|
|
|
fail_message = 'changed'
|
2009-04-16 22:26:08 +08:00
|
|
|
return save_instance(self, self.instance, self._meta.fields,
|
2010-01-05 11:56:19 +08:00
|
|
|
fail_message, commit, construct=False)
|
2007-12-03 03:29:54 +08:00
|
|
|
|
2008-12-23 13:50:51 +08:00
|
|
|
save.alters_data = True
|
|
|
|
|
2007-12-03 03:29:54 +08:00
|
|
|
class ModelForm(BaseModelForm):
|
|
|
|
__metaclass__ = ModelFormMetaclass
|
|
|
|
|
2008-07-19 07:54:34 +08:00
|
|
|
def modelform_factory(model, form=ModelForm, fields=None, exclude=None,
|
|
|
|
formfield_callback=lambda f: f.formfield()):
|
2009-04-22 23:48:51 +08:00
|
|
|
# Create the inner Meta class. FIXME: ideally, we should be able to
|
|
|
|
# construct a ModelForm without creating and passing in a temporary
|
|
|
|
# inner class.
|
|
|
|
|
|
|
|
# Build up a list of attributes that the Meta object will have.
|
|
|
|
attrs = {'model': model}
|
|
|
|
if fields is not None:
|
|
|
|
attrs['fields'] = fields
|
|
|
|
if exclude is not None:
|
|
|
|
attrs['exclude'] = exclude
|
|
|
|
|
|
|
|
# If parent form class already has an inner Meta, the Meta we're
|
|
|
|
# creating needs to inherit from the parent's inner meta.
|
|
|
|
parent = (object,)
|
|
|
|
if hasattr(form, 'Meta'):
|
|
|
|
parent = (form.Meta, object)
|
|
|
|
Meta = type('Meta', parent, attrs)
|
|
|
|
|
|
|
|
# Give this new form class a reasonable name.
|
2008-07-19 07:54:34 +08:00
|
|
|
class_name = model.__name__ + 'Form'
|
2009-04-22 23:48:51 +08:00
|
|
|
|
|
|
|
# Class attributes for the new form class.
|
|
|
|
form_class_attrs = {
|
|
|
|
'Meta': Meta,
|
|
|
|
'formfield_callback': formfield_callback
|
|
|
|
}
|
|
|
|
|
|
|
|
return ModelFormMetaclass(class_name, (form,), form_class_attrs)
|
2008-07-19 07:54:34 +08:00
|
|
|
|
|
|
|
|
|
|
|
# ModelFormSets ##############################################################
|
|
|
|
|
|
|
|
class BaseModelFormSet(BaseFormSet):
|
|
|
|
"""
|
|
|
|
A ``FormSet`` for editing a queryset and/or adding new objects to it.
|
|
|
|
"""
|
|
|
|
model = None
|
|
|
|
|
|
|
|
def __init__(self, data=None, files=None, auto_id='id_%s', prefix=None,
|
|
|
|
queryset=None, **kwargs):
|
|
|
|
self.queryset = queryset
|
|
|
|
defaults = {'data': data, 'files': files, 'auto_id': auto_id, 'prefix': prefix}
|
|
|
|
defaults.update(kwargs)
|
|
|
|
super(BaseModelFormSet, self).__init__(**defaults)
|
|
|
|
|
2009-03-30 23:58:52 +08:00
|
|
|
def initial_form_count(self):
|
|
|
|
"""Returns the number of forms that are required in this FormSet."""
|
|
|
|
if not (self.data or self.files):
|
|
|
|
return len(self.get_queryset())
|
|
|
|
return super(BaseModelFormSet, self).initial_form_count()
|
|
|
|
|
2009-07-03 11:05:17 +08:00
|
|
|
def _existing_object(self, pk):
|
|
|
|
if not hasattr(self, '_object_dict'):
|
|
|
|
self._object_dict = dict([(o.pk, o) for o in self.get_queryset()])
|
|
|
|
return self._object_dict.get(pk)
|
|
|
|
|
2008-09-02 03:08:08 +08:00
|
|
|
def _construct_form(self, i, **kwargs):
|
2009-07-03 11:05:17 +08:00
|
|
|
if self.is_bound and i < self.initial_form_count():
|
|
|
|
pk_key = "%s-%s" % (self.add_prefix(i), self.model._meta.pk.name)
|
|
|
|
pk = self.data[pk_key]
|
|
|
|
pk_field = self.model._meta.pk
|
2009-12-22 23:18:51 +08:00
|
|
|
pk = pk_field.get_db_prep_lookup('exact', pk,
|
|
|
|
connection=connections[self.get_queryset().db])
|
2009-07-03 11:05:17 +08:00
|
|
|
if isinstance(pk, list):
|
|
|
|
pk = pk[0]
|
|
|
|
kwargs['instance'] = self._existing_object(pk)
|
|
|
|
if i < self.initial_form_count() and not kwargs.get('instance'):
|
2008-09-02 03:08:08 +08:00
|
|
|
kwargs['instance'] = self.get_queryset()[i]
|
|
|
|
return super(BaseModelFormSet, self)._construct_form(i, **kwargs)
|
|
|
|
|
2008-07-19 07:54:34 +08:00
|
|
|
def get_queryset(self):
|
2008-09-02 03:08:08 +08:00
|
|
|
if not hasattr(self, '_queryset'):
|
|
|
|
if self.queryset is not None:
|
|
|
|
qs = self.queryset
|
|
|
|
else:
|
|
|
|
qs = self.model._default_manager.get_query_set()
|
2009-04-23 06:16:42 +08:00
|
|
|
|
|
|
|
# If the queryset isn't already ordered we need to add an
|
|
|
|
# artificial ordering here to make sure that all formsets
|
|
|
|
# constructed from this queryset have the same form order.
|
|
|
|
if not qs.ordered:
|
|
|
|
qs = qs.order_by(self.model._meta.pk.name)
|
|
|
|
|
2008-09-02 03:08:08 +08:00
|
|
|
if self.max_num > 0:
|
|
|
|
self._queryset = qs[:self.max_num]
|
|
|
|
else:
|
|
|
|
self._queryset = qs
|
|
|
|
return self._queryset
|
2008-07-19 07:54:34 +08:00
|
|
|
|
|
|
|
def save_new(self, form, commit=True):
|
|
|
|
"""Saves and returns a new model instance for the given form."""
|
2009-03-30 23:58:52 +08:00
|
|
|
return form.save(commit=commit)
|
2008-07-19 07:54:34 +08:00
|
|
|
|
|
|
|
def save_existing(self, form, instance, commit=True):
|
|
|
|
"""Saves and returns an existing model instance for the given form."""
|
2009-03-30 23:58:52 +08:00
|
|
|
return form.save(commit=commit)
|
2008-07-19 07:54:34 +08:00
|
|
|
|
|
|
|
def save(self, commit=True):
|
|
|
|
"""Saves model instances for every form, adding and changing instances
|
|
|
|
as necessary, and returns the list of instances.
|
|
|
|
"""
|
|
|
|
if not commit:
|
|
|
|
self.saved_forms = []
|
|
|
|
def save_m2m():
|
|
|
|
for form in self.saved_forms:
|
|
|
|
form.save_m2m()
|
|
|
|
self.save_m2m = save_m2m
|
|
|
|
return self.save_existing_objects(commit) + self.save_new_objects(commit)
|
|
|
|
|
2009-05-07 20:17:52 +08:00
|
|
|
def clean(self):
|
|
|
|
self.validate_unique()
|
|
|
|
|
|
|
|
def validate_unique(self):
|
2010-01-12 10:29:45 +08:00
|
|
|
# Collect unique_checks and date_checks to run from all the forms.
|
|
|
|
all_unique_checks = set()
|
|
|
|
all_date_checks = set()
|
2009-05-07 20:17:52 +08:00
|
|
|
for form in self.forms:
|
2010-01-12 10:29:45 +08:00
|
|
|
if not hasattr(form, 'cleaned_data'):
|
|
|
|
continue
|
|
|
|
exclude = form._get_validation_exclusions()
|
|
|
|
unique_checks, date_checks = form.instance._get_unique_checks(exclude=exclude)
|
|
|
|
all_unique_checks = all_unique_checks.union(set(unique_checks))
|
|
|
|
all_date_checks = all_date_checks.union(set(date_checks))
|
|
|
|
|
2009-05-07 20:17:52 +08:00
|
|
|
errors = []
|
|
|
|
# Do each of the unique checks (unique and unique_together)
|
2010-01-12 10:29:45 +08:00
|
|
|
for unique_check in all_unique_checks:
|
2009-05-07 20:17:52 +08:00
|
|
|
seen_data = set()
|
|
|
|
for form in self.forms:
|
|
|
|
# if the form doesn't have cleaned_data then we ignore it,
|
|
|
|
# it's already invalid
|
|
|
|
if not hasattr(form, "cleaned_data"):
|
|
|
|
continue
|
|
|
|
# get each of the fields for which we have data on this form
|
|
|
|
if [f for f in unique_check if f in form.cleaned_data and form.cleaned_data[f] is not None]:
|
|
|
|
# get the data itself
|
|
|
|
row_data = tuple([form.cleaned_data[field] for field in unique_check])
|
|
|
|
# if we've aready seen it then we have a uniqueness failure
|
|
|
|
if row_data in seen_data:
|
|
|
|
# poke error messages into the right places and mark
|
|
|
|
# the form as invalid
|
|
|
|
errors.append(self.get_unique_error_message(unique_check))
|
|
|
|
form._errors[NON_FIELD_ERRORS] = self.get_form_error()
|
|
|
|
del form.cleaned_data
|
|
|
|
break
|
|
|
|
# mark the data as seen
|
|
|
|
seen_data.add(row_data)
|
|
|
|
# iterate over each of the date checks now
|
2010-01-12 10:29:45 +08:00
|
|
|
for date_check in all_date_checks:
|
2009-05-07 20:17:52 +08:00
|
|
|
seen_data = set()
|
|
|
|
lookup, field, unique_for = date_check
|
|
|
|
for form in self.forms:
|
|
|
|
# if the form doesn't have cleaned_data then we ignore it,
|
|
|
|
# it's already invalid
|
|
|
|
if not hasattr(self, 'cleaned_data'):
|
|
|
|
continue
|
|
|
|
# see if we have data for both fields
|
|
|
|
if (form.cleaned_data and form.cleaned_data[field] is not None
|
|
|
|
and form.cleaned_data[unique_for] is not None):
|
|
|
|
# if it's a date lookup we need to get the data for all the fields
|
|
|
|
if lookup == 'date':
|
|
|
|
date = form.cleaned_data[unique_for]
|
|
|
|
date_data = (date.year, date.month, date.day)
|
|
|
|
# otherwise it's just the attribute on the date/datetime
|
|
|
|
# object
|
|
|
|
else:
|
|
|
|
date_data = (getattr(form.cleaned_data[unique_for], lookup),)
|
|
|
|
data = (form.cleaned_data[field],) + date_data
|
|
|
|
# if we've aready seen it then we have a uniqueness failure
|
|
|
|
if data in seen_data:
|
|
|
|
# poke error messages into the right places and mark
|
|
|
|
# the form as invalid
|
|
|
|
errors.append(self.get_date_error_message(date_check))
|
|
|
|
form._errors[NON_FIELD_ERRORS] = self.get_form_error()
|
|
|
|
del form.cleaned_data
|
|
|
|
break
|
|
|
|
seen_data.add(data)
|
|
|
|
if errors:
|
|
|
|
raise ValidationError(errors)
|
|
|
|
|
|
|
|
def get_unique_error_message(self, unique_check):
|
|
|
|
if len(unique_check) == 1:
|
|
|
|
return ugettext("Please correct the duplicate data for %(field)s.") % {
|
|
|
|
"field": unique_check[0],
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
return ugettext("Please correct the duplicate data for %(field)s, "
|
|
|
|
"which must be unique.") % {
|
2009-05-29 13:23:50 +08:00
|
|
|
"field": get_text_list(unique_check, unicode(_("and"))),
|
2009-05-07 20:17:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
def get_date_error_message(self, date_check):
|
|
|
|
return ugettext("Please correct the duplicate data for %(field_name)s "
|
|
|
|
"which must be unique for the %(lookup)s in %(date_field)s.") % {
|
|
|
|
'field_name': date_check[1],
|
|
|
|
'date_field': date_check[2],
|
|
|
|
'lookup': unicode(date_check[0]),
|
|
|
|
}
|
|
|
|
|
|
|
|
def get_form_error(self):
|
|
|
|
return ugettext("Please correct the duplicate values below.")
|
|
|
|
|
2008-07-19 07:54:34 +08:00
|
|
|
def save_existing_objects(self, commit=True):
|
|
|
|
self.changed_objects = []
|
|
|
|
self.deleted_objects = []
|
|
|
|
if not self.get_queryset():
|
|
|
|
return []
|
|
|
|
|
|
|
|
saved_instances = []
|
|
|
|
for form in self.initial_forms:
|
2009-04-01 03:55:20 +08:00
|
|
|
pk_name = self._pk_field.name
|
|
|
|
raw_pk_value = form._raw_value(pk_name)
|
2009-05-14 10:23:53 +08:00
|
|
|
|
|
|
|
# clean() for different types of PK fields can sometimes return
|
|
|
|
# the model instance, and sometimes the PK. Handle either.
|
|
|
|
pk_value = form.fields[pk_name].clean(raw_pk_value)
|
|
|
|
pk_value = getattr(pk_value, 'pk', pk_value)
|
2009-05-15 20:44:51 +08:00
|
|
|
|
2009-07-03 11:05:17 +08:00
|
|
|
obj = self._existing_object(pk_value)
|
2009-04-01 03:55:20 +08:00
|
|
|
if self.can_delete:
|
|
|
|
raw_delete_value = form._raw_value(DELETION_FIELD_NAME)
|
|
|
|
should_delete = form.fields[DELETION_FIELD_NAME].clean(raw_delete_value)
|
|
|
|
if should_delete:
|
|
|
|
self.deleted_objects.append(obj)
|
|
|
|
obj.delete()
|
|
|
|
continue
|
2009-04-11 02:42:24 +08:00
|
|
|
if form.has_changed():
|
2009-04-01 03:55:20 +08:00
|
|
|
self.changed_objects.append((obj, form.changed_data))
|
|
|
|
saved_instances.append(self.save_existing(form, obj, commit=commit))
|
|
|
|
if not commit:
|
|
|
|
self.saved_forms.append(form)
|
2008-07-19 07:54:34 +08:00
|
|
|
return saved_instances
|
|
|
|
|
|
|
|
def save_new_objects(self, commit=True):
|
|
|
|
self.new_objects = []
|
|
|
|
for form in self.extra_forms:
|
|
|
|
if not form.has_changed():
|
|
|
|
continue
|
|
|
|
# If someone has marked an add form for deletion, don't save the
|
|
|
|
# object.
|
2009-04-01 03:55:20 +08:00
|
|
|
if self.can_delete:
|
|
|
|
raw_delete_value = form._raw_value(DELETION_FIELD_NAME)
|
|
|
|
should_delete = form.fields[DELETION_FIELD_NAME].clean(raw_delete_value)
|
|
|
|
if should_delete:
|
|
|
|
continue
|
2008-07-19 07:54:34 +08:00
|
|
|
self.new_objects.append(self.save_new(form, commit=commit))
|
|
|
|
if not commit:
|
|
|
|
self.saved_forms.append(form)
|
|
|
|
return self.new_objects
|
|
|
|
|
|
|
|
def add_fields(self, form, index):
|
|
|
|
"""Add a hidden field for the object's primary key."""
|
2009-03-30 23:58:52 +08:00
|
|
|
from django.db.models import AutoField, OneToOneField, ForeignKey
|
2008-08-31 17:49:55 +08:00
|
|
|
self._pk_field = pk = self.model._meta.pk
|
2009-03-30 23:58:52 +08:00
|
|
|
# If a pk isn't editable, then it won't be on the form, so we need to
|
|
|
|
# add it here so we can tell which object is which when we get the
|
|
|
|
# data back. Generally, pk.editable should be false, but for some
|
|
|
|
# reason, auto_created pk fields and AutoField's editable attribute is
|
|
|
|
# True, so check for that as well.
|
2009-05-07 19:56:10 +08:00
|
|
|
def pk_is_not_editable(pk):
|
2009-04-19 05:03:29 +08:00
|
|
|
return ((not pk.editable) or (pk.auto_created or isinstance(pk, AutoField))
|
2009-05-07 19:56:10 +08:00
|
|
|
or (pk.rel and pk.rel.parent_link and pk_is_not_editable(pk.rel.to._meta.pk)))
|
|
|
|
if pk_is_not_editable(pk) or pk.name not in form.fields:
|
2009-07-03 11:05:17 +08:00
|
|
|
if form.is_bound:
|
|
|
|
pk_value = form.instance.pk
|
|
|
|
else:
|
|
|
|
try:
|
2010-01-26 23:02:53 +08:00
|
|
|
if index is not None:
|
|
|
|
pk_value = self.get_queryset()[index].pk
|
|
|
|
else:
|
|
|
|
pk_value = None
|
2009-07-03 11:05:17 +08:00
|
|
|
except IndexError:
|
|
|
|
pk_value = None
|
2009-03-30 23:58:52 +08:00
|
|
|
if isinstance(pk, OneToOneField) or isinstance(pk, ForeignKey):
|
|
|
|
qs = pk.rel.to._default_manager.get_query_set()
|
|
|
|
else:
|
|
|
|
qs = self.model._default_manager.get_query_set()
|
2009-12-22 23:18:51 +08:00
|
|
|
qs = qs.using(form.instance._state.db)
|
2009-03-30 23:58:52 +08:00
|
|
|
form.fields[self._pk_field.name] = ModelChoiceField(qs, initial=pk_value, required=False, widget=HiddenInput)
|
2008-07-19 07:54:34 +08:00
|
|
|
super(BaseModelFormSet, self).add_fields(form, index)
|
|
|
|
|
|
|
|
def modelformset_factory(model, form=ModelForm, formfield_callback=lambda f: f.formfield(),
|
|
|
|
formset=BaseModelFormSet,
|
|
|
|
extra=1, can_delete=False, can_order=False,
|
|
|
|
max_num=0, fields=None, exclude=None):
|
|
|
|
"""
|
|
|
|
Returns a FormSet class for the given Django model class.
|
|
|
|
"""
|
|
|
|
form = modelform_factory(model, form=form, fields=fields, exclude=exclude,
|
|
|
|
formfield_callback=formfield_callback)
|
|
|
|
FormSet = formset_factory(form, formset, extra=extra, max_num=max_num,
|
|
|
|
can_order=can_order, can_delete=can_delete)
|
|
|
|
FormSet.model = model
|
|
|
|
return FormSet
|
|
|
|
|
|
|
|
|
|
|
|
# InlineFormSets #############################################################
|
|
|
|
|
2008-08-09 04:27:48 +08:00
|
|
|
class BaseInlineFormSet(BaseModelFormSet):
|
2008-07-19 07:54:34 +08:00
|
|
|
"""A formset for child objects related to a parent."""
|
2008-07-23 12:46:31 +08:00
|
|
|
def __init__(self, data=None, files=None, instance=None,
|
2009-12-16 22:52:29 +08:00
|
|
|
save_as_new=False, prefix=None, queryset=None):
|
2008-07-19 07:54:34 +08:00
|
|
|
from django.db.models.fields.related import RelatedObject
|
2008-10-29 04:01:03 +08:00
|
|
|
if instance is None:
|
2009-10-30 17:11:56 +08:00
|
|
|
self.instance = self.fk.rel.to()
|
2008-10-29 04:01:03 +08:00
|
|
|
else:
|
|
|
|
self.instance = instance
|
2008-07-19 07:54:34 +08:00
|
|
|
self.save_as_new = save_as_new
|
|
|
|
# is there a better way to get the object descriptor?
|
|
|
|
self.rel_name = RelatedObject(self.fk.rel.to, self.model, self.fk).get_accessor_name()
|
2009-05-13 22:04:29 +08:00
|
|
|
if self.fk.rel.field_name == self.fk.rel.to._meta.pk.name:
|
|
|
|
backlink_value = self.instance
|
|
|
|
else:
|
|
|
|
backlink_value = getattr(self.instance, self.fk.rel.field_name)
|
2009-12-16 22:52:29 +08:00
|
|
|
if queryset is None:
|
|
|
|
queryset = self.model._default_manager
|
|
|
|
qs = queryset.filter(**{self.fk.name: backlink_value})
|
2009-03-10 19:19:26 +08:00
|
|
|
super(BaseInlineFormSet, self).__init__(data, files, prefix=prefix,
|
2008-11-14 23:37:59 +08:00
|
|
|
queryset=qs)
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
|
2009-03-30 23:58:52 +08:00
|
|
|
def initial_form_count(self):
|
2008-07-19 07:54:34 +08:00
|
|
|
if self.save_as_new:
|
2009-03-30 23:58:52 +08:00
|
|
|
return 0
|
|
|
|
return super(BaseInlineFormSet, self).initial_form_count()
|
|
|
|
|
|
|
|
def total_form_count(self):
|
|
|
|
if self.save_as_new:
|
|
|
|
return super(BaseInlineFormSet, self).initial_form_count()
|
|
|
|
return super(BaseInlineFormSet, self).total_form_count()
|
2008-07-19 07:54:34 +08:00
|
|
|
|
2008-09-02 03:08:08 +08:00
|
|
|
def _construct_form(self, i, **kwargs):
|
|
|
|
form = super(BaseInlineFormSet, self)._construct_form(i, **kwargs)
|
|
|
|
if self.save_as_new:
|
|
|
|
# Remove the primary key from the form's data, we are only
|
|
|
|
# creating new instances
|
|
|
|
form.data[form.add_prefix(self._pk_field.name)] = None
|
2009-04-02 08:01:15 +08:00
|
|
|
|
|
|
|
# Remove the foreign key from the form's data
|
|
|
|
form.data[form.add_prefix(self.fk.name)] = None
|
2010-01-05 11:56:19 +08:00
|
|
|
|
|
|
|
# Set the fk value here so that the form can do it's validation.
|
|
|
|
setattr(form.instance, self.fk.get_attname(), self.instance.pk)
|
2008-09-02 03:08:08 +08:00
|
|
|
return form
|
2008-12-23 13:50:51 +08:00
|
|
|
|
2009-03-10 19:19:26 +08:00
|
|
|
#@classmethod
|
|
|
|
def get_default_prefix(cls):
|
|
|
|
from django.db.models.fields.related import RelatedObject
|
|
|
|
return RelatedObject(cls.fk.rel.to, cls.model, cls.fk).get_accessor_name()
|
|
|
|
get_default_prefix = classmethod(get_default_prefix)
|
|
|
|
|
2008-07-19 07:54:34 +08:00
|
|
|
def save_new(self, form, commit=True):
|
2009-03-30 23:58:52 +08:00
|
|
|
# Use commit=False so we can assign the parent key afterwards, then
|
|
|
|
# save the object.
|
|
|
|
obj = form.save(commit=False)
|
2009-05-15 20:44:51 +08:00
|
|
|
pk_value = getattr(self.instance, self.fk.rel.field_name)
|
|
|
|
setattr(obj, self.fk.get_attname(), getattr(pk_value, 'pk', pk_value))
|
2009-05-08 17:59:46 +08:00
|
|
|
if commit:
|
|
|
|
obj.save()
|
2009-03-30 23:58:52 +08:00
|
|
|
# form.save_m2m() can be called via the formset later on if commit=False
|
|
|
|
if commit and hasattr(form, 'save_m2m'):
|
|
|
|
form.save_m2m()
|
|
|
|
return obj
|
2008-10-08 18:09:44 +08:00
|
|
|
|
2008-08-31 17:49:55 +08:00
|
|
|
def add_fields(self, form, index):
|
|
|
|
super(BaseInlineFormSet, self).add_fields(form, index)
|
|
|
|
if self._pk_field == self.fk:
|
2010-02-23 07:06:09 +08:00
|
|
|
name = self._pk_field.name
|
|
|
|
kwargs = {'pk_field': True}
|
2008-11-01 06:07:05 +08:00
|
|
|
else:
|
2009-03-31 08:03:34 +08:00
|
|
|
# The foreign key field might not be on the form, so we poke at the
|
|
|
|
# Model field to get the label, since we need that for error messages.
|
2010-02-23 07:06:09 +08:00
|
|
|
name = self.fk.name
|
2009-05-15 20:44:51 +08:00
|
|
|
kwargs = {
|
2010-02-23 07:06:09 +08:00
|
|
|
'label': getattr(form.fields.get(name), 'label', capfirst(self.fk.verbose_name))
|
2009-05-15 20:44:51 +08:00
|
|
|
}
|
|
|
|
if self.fk.rel.field_name != self.fk.rel.to._meta.pk.name:
|
|
|
|
kwargs['to_field'] = self.fk.rel.field_name
|
2010-02-23 07:06:09 +08:00
|
|
|
|
|
|
|
form.fields[name] = InlineForeignKeyField(self.instance, **kwargs)
|
|
|
|
|
|
|
|
# Add the generated field to form._meta.fields if it's defined to make
|
|
|
|
# sure validation isn't skipped on that field.
|
|
|
|
if form._meta.fields:
|
|
|
|
if isinstance(form._meta.fields, tuple):
|
|
|
|
form._meta.fields = list(form._meta.fields)
|
|
|
|
form._meta.fields.append(self.fk.name)
|
2008-07-19 07:54:34 +08:00
|
|
|
|
2009-05-07 20:17:52 +08:00
|
|
|
def get_unique_error_message(self, unique_check):
|
|
|
|
unique_check = [field for field in unique_check if field != self.fk.name]
|
|
|
|
return super(BaseInlineFormSet, self).get_unique_error_message(unique_check)
|
|
|
|
|
2009-05-11 05:09:38 +08:00
|
|
|
def _get_foreign_key(parent_model, model, fk_name=None, can_fail=False):
|
2008-07-19 07:54:34 +08:00
|
|
|
"""
|
2009-05-11 05:09:38 +08:00
|
|
|
Finds and returns the ForeignKey from model to parent if there is one
|
|
|
|
(returns None if can_fail is True and no such field exists). If fk_name is
|
|
|
|
provided, assume it is the name of the ForeignKey field. Unles can_fail is
|
|
|
|
True, an exception is raised if there is no ForeignKey from model to
|
|
|
|
parent_model.
|
2008-07-19 07:54:34 +08:00
|
|
|
"""
|
|
|
|
# avoid circular import
|
|
|
|
from django.db.models import ForeignKey
|
|
|
|
opts = model._meta
|
|
|
|
if fk_name:
|
|
|
|
fks_to_parent = [f for f in opts.fields if f.name == fk_name]
|
|
|
|
if len(fks_to_parent) == 1:
|
|
|
|
fk = fks_to_parent[0]
|
2008-08-01 08:27:40 +08:00
|
|
|
if not isinstance(fk, ForeignKey) or \
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
(fk.rel.to != parent_model and
|
2008-08-30 01:41:40 +08:00
|
|
|
fk.rel.to not in parent_model._meta.get_parent_list()):
|
2008-07-19 07:54:34 +08:00
|
|
|
raise Exception("fk_name '%s' is not a ForeignKey to %s" % (fk_name, parent_model))
|
|
|
|
elif len(fks_to_parent) == 0:
|
|
|
|
raise Exception("%s has no field named '%s'" % (model, fk_name))
|
|
|
|
else:
|
|
|
|
# Try to discover what the ForeignKey from model to parent_model is
|
2008-08-01 08:27:40 +08:00
|
|
|
fks_to_parent = [
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
f for f in opts.fields
|
|
|
|
if isinstance(f, ForeignKey)
|
|
|
|
and (f.rel.to == parent_model
|
2008-08-30 01:41:40 +08:00
|
|
|
or f.rel.to in parent_model._meta.get_parent_list())
|
2008-08-01 08:27:40 +08:00
|
|
|
]
|
2008-07-19 07:54:34 +08:00
|
|
|
if len(fks_to_parent) == 1:
|
|
|
|
fk = fks_to_parent[0]
|
|
|
|
elif len(fks_to_parent) == 0:
|
2009-05-11 05:09:38 +08:00
|
|
|
if can_fail:
|
|
|
|
return
|
2008-07-19 07:54:34 +08:00
|
|
|
raise Exception("%s has no ForeignKey to %s" % (model, parent_model))
|
|
|
|
else:
|
|
|
|
raise Exception("%s has more than 1 ForeignKey to %s" % (model, parent_model))
|
|
|
|
return fk
|
|
|
|
|
|
|
|
|
|
|
|
def inlineformset_factory(parent_model, model, form=ModelForm,
|
2008-08-09 04:27:48 +08:00
|
|
|
formset=BaseInlineFormSet, fk_name=None,
|
2008-07-19 07:54:34 +08:00
|
|
|
fields=None, exclude=None,
|
|
|
|
extra=3, can_order=False, can_delete=True, max_num=0,
|
|
|
|
formfield_callback=lambda f: f.formfield()):
|
|
|
|
"""
|
2008-08-09 04:27:48 +08:00
|
|
|
Returns an ``InlineFormSet`` for the given kwargs.
|
2008-07-19 07:54:34 +08:00
|
|
|
|
|
|
|
You must provide ``fk_name`` if ``model`` has more than one ``ForeignKey``
|
|
|
|
to ``parent_model``.
|
|
|
|
"""
|
|
|
|
fk = _get_foreign_key(parent_model, model, fk_name=fk_name)
|
2008-09-01 05:14:46 +08:00
|
|
|
# enforce a max_num=1 when the foreign key to the parent model is unique.
|
|
|
|
if fk.unique:
|
|
|
|
max_num = 1
|
|
|
|
kwargs = {
|
|
|
|
'form': form,
|
|
|
|
'formfield_callback': formfield_callback,
|
|
|
|
'formset': formset,
|
|
|
|
'extra': extra,
|
|
|
|
'can_delete': can_delete,
|
|
|
|
'can_order': can_order,
|
|
|
|
'fields': fields,
|
|
|
|
'exclude': exclude,
|
|
|
|
'max_num': max_num,
|
|
|
|
}
|
|
|
|
FormSet = modelformset_factory(model, **kwargs)
|
2008-07-19 07:54:34 +08:00
|
|
|
FormSet.fk = fk
|
|
|
|
return FormSet
|
|
|
|
|
2007-12-03 03:29:54 +08:00
|
|
|
|
|
|
|
# Fields #####################################################################
|
|
|
|
|
2008-11-01 06:07:05 +08:00
|
|
|
class InlineForeignKeyHiddenInput(HiddenInput):
|
|
|
|
def _has_changed(self, initial, data):
|
|
|
|
return False
|
|
|
|
|
|
|
|
class InlineForeignKeyField(Field):
|
|
|
|
"""
|
|
|
|
A basic integer field that deals with validating the given value to a
|
|
|
|
given parent instance in an inline.
|
|
|
|
"""
|
|
|
|
default_error_messages = {
|
|
|
|
'invalid_choice': _(u'The inline foreign key did not match the parent instance primary key.'),
|
|
|
|
}
|
2008-12-23 13:50:51 +08:00
|
|
|
|
2008-11-01 06:07:05 +08:00
|
|
|
def __init__(self, parent_instance, *args, **kwargs):
|
|
|
|
self.parent_instance = parent_instance
|
|
|
|
self.pk_field = kwargs.pop("pk_field", False)
|
2009-05-13 22:04:29 +08:00
|
|
|
self.to_field = kwargs.pop("to_field", None)
|
2008-11-01 06:07:05 +08:00
|
|
|
if self.parent_instance is not None:
|
2009-05-13 22:04:29 +08:00
|
|
|
if self.to_field:
|
|
|
|
kwargs["initial"] = getattr(self.parent_instance, self.to_field)
|
|
|
|
else:
|
|
|
|
kwargs["initial"] = self.parent_instance.pk
|
2008-11-01 06:07:05 +08:00
|
|
|
kwargs["required"] = False
|
|
|
|
kwargs["widget"] = InlineForeignKeyHiddenInput
|
|
|
|
super(InlineForeignKeyField, self).__init__(*args, **kwargs)
|
2008-12-23 13:50:51 +08:00
|
|
|
|
2008-11-01 06:07:05 +08:00
|
|
|
def clean(self, value):
|
|
|
|
if value in EMPTY_VALUES:
|
|
|
|
if self.pk_field:
|
|
|
|
return None
|
|
|
|
# if there is no value act as we did before.
|
|
|
|
return self.parent_instance
|
|
|
|
# ensure the we compare the values as equal types.
|
2009-05-13 22:04:29 +08:00
|
|
|
if self.to_field:
|
|
|
|
orig = getattr(self.parent_instance, self.to_field)
|
|
|
|
else:
|
|
|
|
orig = self.parent_instance.pk
|
|
|
|
if force_unicode(value) != force_unicode(orig):
|
2008-11-01 06:07:05 +08:00
|
|
|
raise ValidationError(self.error_messages['invalid_choice'])
|
|
|
|
return self.parent_instance
|
|
|
|
|
2008-03-20 07:10:45 +08:00
|
|
|
class ModelChoiceIterator(object):
|
|
|
|
def __init__(self, field):
|
|
|
|
self.field = field
|
|
|
|
self.queryset = field.queryset
|
2007-02-21 13:14:28 +08:00
|
|
|
|
|
|
|
def __iter__(self):
|
2008-03-20 07:10:45 +08:00
|
|
|
if self.field.empty_label is not None:
|
|
|
|
yield (u"", self.field.empty_label)
|
2008-06-20 05:15:33 +08:00
|
|
|
if self.field.cache_choices:
|
|
|
|
if self.field.choice_cache is None:
|
|
|
|
self.field.choice_cache = [
|
2008-09-02 06:43:38 +08:00
|
|
|
self.choice(obj) for obj in self.queryset.all()
|
2008-06-20 05:15:33 +08:00
|
|
|
]
|
|
|
|
for choice in self.field.choice_cache:
|
|
|
|
yield choice
|
|
|
|
else:
|
|
|
|
for obj in self.queryset.all():
|
2008-09-02 06:43:38 +08:00
|
|
|
yield self.choice(obj)
|
|
|
|
|
2009-12-14 01:46:52 +08:00
|
|
|
def __len__(self):
|
|
|
|
return len(self.queryset)
|
|
|
|
|
2008-09-02 06:43:38 +08:00
|
|
|
def choice(self, obj):
|
|
|
|
if self.field.to_field_name:
|
2008-12-08 16:15:37 +08:00
|
|
|
key = obj.serializable_value(self.field.to_field_name)
|
2008-09-02 06:43:38 +08:00
|
|
|
else:
|
|
|
|
key = obj.pk
|
|
|
|
return (key, self.field.label_from_instance(obj))
|
|
|
|
|
2007-02-21 13:14:28 +08:00
|
|
|
|
2007-02-20 10:42:07 +08:00
|
|
|
class ModelChoiceField(ChoiceField):
|
2007-10-30 07:52:17 +08:00
|
|
|
"""A ChoiceField whose choices are a model QuerySet."""
|
2007-02-21 13:14:28 +08:00
|
|
|
# This class is a subclass of ChoiceField for purity, but it doesn't
|
|
|
|
# actually use any of ChoiceField's implementation.
|
2007-11-19 04:25:23 +08:00
|
|
|
default_error_messages = {
|
|
|
|
'invalid_choice': _(u'Select a valid choice. That choice is not one of'
|
|
|
|
u' the available choices.'),
|
|
|
|
}
|
2007-10-30 07:52:17 +08:00
|
|
|
|
2007-02-21 13:14:28 +08:00
|
|
|
def __init__(self, queryset, empty_label=u"---------", cache_choices=False,
|
2008-08-24 01:26:00 +08:00
|
|
|
required=True, widget=None, label=None, initial=None,
|
2008-09-02 06:43:38 +08:00
|
|
|
help_text=None, to_field_name=None, *args, **kwargs):
|
2009-05-10 15:44:27 +08:00
|
|
|
if required and (initial is not None):
|
|
|
|
self.empty_label = None
|
|
|
|
else:
|
|
|
|
self.empty_label = empty_label
|
2007-02-21 13:14:28 +08:00
|
|
|
self.cache_choices = cache_choices
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
|
2007-02-21 13:14:28 +08:00
|
|
|
# Call Field instead of ChoiceField __init__() because we don't need
|
|
|
|
# ChoiceField.__init__().
|
2007-11-19 04:25:23 +08:00
|
|
|
Field.__init__(self, required, widget, label, initial, help_text,
|
|
|
|
*args, **kwargs)
|
2007-11-13 22:36:29 +08:00
|
|
|
self.queryset = queryset
|
2008-06-20 05:15:33 +08:00
|
|
|
self.choice_cache = None
|
2008-09-02 06:43:38 +08:00
|
|
|
self.to_field_name = to_field_name
|
2007-11-13 22:36:29 +08:00
|
|
|
|
|
|
|
def _get_queryset(self):
|
|
|
|
return self._queryset
|
|
|
|
|
|
|
|
def _set_queryset(self, queryset):
|
|
|
|
self._queryset = queryset
|
2007-02-21 13:14:28 +08:00
|
|
|
self.widget.choices = self.choices
|
|
|
|
|
2007-11-13 22:36:29 +08:00
|
|
|
queryset = property(_get_queryset, _set_queryset)
|
|
|
|
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
# this method will be used to create object labels by the QuerySetIterator.
|
|
|
|
# Override it to customize the label.
|
2008-03-20 07:10:45 +08:00
|
|
|
def label_from_instance(self, obj):
|
|
|
|
"""
|
|
|
|
This method is used to convert objects into strings; it's used to
|
|
|
|
generate the labels for the choices presented by this object. Subclasses
|
|
|
|
can override this method to customize the display of the choices.
|
|
|
|
"""
|
|
|
|
return smart_unicode(obj)
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
|
2007-02-21 13:14:28 +08:00
|
|
|
def _get_choices(self):
|
|
|
|
# If self._choices is set, then somebody must have manually set
|
|
|
|
# the property self.choices. In this case, just return self._choices.
|
|
|
|
if hasattr(self, '_choices'):
|
|
|
|
return self._choices
|
2008-03-20 07:10:45 +08:00
|
|
|
|
2007-02-21 13:14:28 +08:00
|
|
|
# Otherwise, execute the QuerySet in self.queryset to determine the
|
2008-03-20 07:10:45 +08:00
|
|
|
# choices dynamically. Return a fresh QuerySetIterator that has not been
|
|
|
|
# consumed. Note that we're instantiating a new QuerySetIterator *each*
|
|
|
|
# time _get_choices() is called (and, thus, each time self.choices is
|
|
|
|
# accessed) so that we can ensure the QuerySet has not been consumed. This
|
|
|
|
# construct might look complicated but it allows for lazy evaluation of
|
|
|
|
# the queryset.
|
|
|
|
return ModelChoiceIterator(self)
|
2007-02-21 13:14:28 +08:00
|
|
|
|
2008-06-16 11:22:44 +08:00
|
|
|
choices = property(_get_choices, ChoiceField._set_choices)
|
2007-02-20 10:42:07 +08:00
|
|
|
|
2010-01-12 22:58:24 +08:00
|
|
|
def to_python(self, value):
|
2007-11-19 12:07:03 +08:00
|
|
|
if value in EMPTY_VALUES:
|
2007-02-20 10:42:07 +08:00
|
|
|
return None
|
|
|
|
try:
|
2008-09-02 06:43:38 +08:00
|
|
|
key = self.to_field_name or 'pk'
|
|
|
|
value = self.queryset.get(**{key: value})
|
2007-02-21 13:14:28 +08:00
|
|
|
except self.queryset.model.DoesNotExist:
|
2007-11-19 04:25:23 +08:00
|
|
|
raise ValidationError(self.error_messages['invalid_choice'])
|
2007-02-20 10:42:07 +08:00
|
|
|
return value
|
|
|
|
|
2010-01-12 22:58:24 +08:00
|
|
|
def validate(self, value):
|
|
|
|
return Field.validate(self, value)
|
|
|
|
|
2007-02-21 13:14:28 +08:00
|
|
|
class ModelMultipleChoiceField(ModelChoiceField):
|
2007-10-30 07:52:17 +08:00
|
|
|
"""A MultipleChoiceField whose choices are a model QuerySet."""
|
2008-08-24 01:26:00 +08:00
|
|
|
widget = SelectMultiple
|
2007-02-21 13:14:28 +08:00
|
|
|
hidden_widget = MultipleHiddenInput
|
2007-11-19 04:25:23 +08:00
|
|
|
default_error_messages = {
|
|
|
|
'list': _(u'Enter a list of values.'),
|
|
|
|
'invalid_choice': _(u'Select a valid choice. %s is not one of the'
|
|
|
|
u' available choices.'),
|
2009-03-31 07:00:36 +08:00
|
|
|
'invalid_pk_value': _(u'"%s" is not a valid value for a primary key.')
|
2007-11-19 04:25:23 +08:00
|
|
|
}
|
2007-10-30 07:52:17 +08:00
|
|
|
|
2007-02-21 13:14:28 +08:00
|
|
|
def __init__(self, queryset, cache_choices=False, required=True,
|
2008-08-24 01:26:00 +08:00
|
|
|
widget=None, label=None, initial=None,
|
2007-11-19 04:25:23 +08:00
|
|
|
help_text=None, *args, **kwargs):
|
2007-10-30 07:52:17 +08:00
|
|
|
super(ModelMultipleChoiceField, self).__init__(queryset, None,
|
2007-11-19 04:25:23 +08:00
|
|
|
cache_choices, required, widget, label, initial, help_text,
|
|
|
|
*args, **kwargs)
|
2007-02-20 10:42:07 +08:00
|
|
|
|
|
|
|
def clean(self, value):
|
2007-02-21 13:14:28 +08:00
|
|
|
if self.required and not value:
|
2007-11-19 04:25:23 +08:00
|
|
|
raise ValidationError(self.error_messages['required'])
|
2007-02-21 13:14:28 +08:00
|
|
|
elif not self.required and not value:
|
2007-02-20 10:42:07 +08:00
|
|
|
return []
|
2007-02-21 13:14:28 +08:00
|
|
|
if not isinstance(value, (list, tuple)):
|
2007-11-19 04:25:23 +08:00
|
|
|
raise ValidationError(self.error_messages['list'])
|
2009-04-18 23:51:11 +08:00
|
|
|
for pk in value:
|
2007-02-21 13:14:28 +08:00
|
|
|
try:
|
2009-04-18 23:51:11 +08:00
|
|
|
self.queryset.filter(pk=pk)
|
2009-03-31 07:00:36 +08:00
|
|
|
except ValueError:
|
2009-04-18 23:51:11 +08:00
|
|
|
raise ValidationError(self.error_messages['invalid_pk_value'] % pk)
|
|
|
|
qs = self.queryset.filter(pk__in=value)
|
|
|
|
pks = set([force_unicode(o.pk) for o in qs])
|
|
|
|
for val in value:
|
|
|
|
if force_unicode(val) not in pks:
|
|
|
|
raise ValidationError(self.error_messages['invalid_choice'] % val)
|
|
|
|
return qs
|