2008-07-19 07:54:34 +08:00
from django . core . exceptions import ObjectDoesNotExist
from django . db import models
2009-12-23 02:29:00 +08:00
from django . utils import formats
2008-07-19 07:54:34 +08:00
from django . utils . html import escape
from django . utils . safestring import mark_safe
from django . utils . text import capfirst
2009-12-23 02:29:00 +08:00
from django . utils . encoding import force_unicode , smart_unicode , smart_str
2009-03-24 04:22:56 +08:00
from django . utils . translation import ungettext , ugettext as _
from django . core . urlresolvers import reverse , NoReverseMatch
2008-07-19 07:54:34 +08:00
2009-12-23 02:29:00 +08:00
2008-07-19 07:54:34 +08:00
def quote ( s ) :
"""
Ensure that primary key values do not confuse the admin URLs by escaping
any ' / ' , ' _ ' and ' : ' characters . Similar to urllib . quote , except that the
quoting is slightly different so that it doesn ' t get automatically
unquoted by the Web browser .
"""
if not isinstance ( s , basestring ) :
return s
res = list ( s )
for i in range ( len ( res ) ) :
c = res [ i ]
if c in """ :/_#?;@&=+$, " <> % \\ """ :
res [ i ] = ' _ %02X ' % ord ( c )
return ' ' . join ( res )
def unquote ( s ) :
"""
Undo the effects of quote ( ) . Based heavily on urllib . unquote ( ) .
"""
mychr = chr
myatoi = int
list = s . split ( ' _ ' )
res = [ list [ 0 ] ]
myappend = res . append
del list [ 0 ]
for item in list :
if item [ 1 : 2 ] :
try :
myappend ( mychr ( myatoi ( item [ : 2 ] , 16 ) ) + item [ 2 : ] )
except ValueError :
myappend ( ' _ ' + item )
else :
myappend ( ' _ ' + item )
return " " . join ( res )
2008-08-18 23:49:58 +08:00
def flatten_fieldsets ( fieldsets ) :
""" Returns a list of field names from an admin fieldsets structure. """
field_names = [ ]
for name , opts in fieldsets :
for field in opts [ ' fields ' ] :
# type checking feels dirty, but it seems like the best way here
if type ( field ) == tuple :
field_names . extend ( field )
else :
field_names . append ( field )
return field_names
2008-07-19 07:54:34 +08:00
def _nest_help ( obj , depth , val ) :
current = obj
for i in range ( depth ) :
current = current [ - 1 ]
current . append ( val )
2009-03-24 04:22:56 +08:00
def get_change_view_url ( app_label , module_name , pk , admin_site , levels_to_root ) :
"""
Returns the url to the admin change view for the given app_label ,
module_name and primary key .
"""
try :
return reverse ( ' %s admin_ %s _ %s _change ' % ( admin_site . name , app_label , module_name ) , None , ( pk , ) )
except NoReverseMatch :
return ' %s %s / %s / %s / ' % ( ' ../ ' * levels_to_root , app_label , module_name , pk )
def get_deleted_objects ( deleted_objects , perms_needed , user , obj , opts , current_depth , admin_site , levels_to_root = 4 ) :
"""
Helper function that recursively populates deleted_objects .
` levels_to_root ` defines the number of directories ( . . / ) to reach the
admin root path . In a change_view this is 4 , in a change_list view 2.
This is for backwards compatibility since the options . delete_selected
method uses this function also from a change_list view .
This will not be used if we can reverse the URL .
"""
2008-07-19 07:54:34 +08:00
nh = _nest_help # Bind to local variable for performance
if current_depth > 16 :
return # Avoid recursing too deep.
opts_seen = [ ]
for related in opts . get_all_related_objects ( ) :
has_admin = related . model in admin_site . _registry
if related . opts in opts_seen :
continue
opts_seen . append ( related . opts )
rel_opts_name = related . get_accessor_name ( )
if isinstance ( related . field . rel , models . OneToOneRel ) :
try :
sub_obj = getattr ( obj , rel_opts_name )
except ObjectDoesNotExist :
pass
else :
if has_admin :
p = ' %s . %s ' % ( related . opts . app_label , related . opts . get_delete_permission ( ) )
if not user . has_perm ( p ) :
perms_needed . add ( related . opts . verbose_name )
# We don't care about populating deleted_objects now.
continue
Removed oldforms, validators, and related code:
* Removed `Manipulator`, `AutomaticManipulator`, and related classes.
* Removed oldforms specific bits from model fields:
* Removed `validator_list` and `core` arguments from constructors.
* Removed the methods:
* `get_manipulator_field_names`
* `get_manipulator_field_objs`
* `get_manipulator_fields`
* `get_manipulator_new_data`
* `prepare_field_objs_and_params`
* `get_follow`
* Renamed `flatten_data` method to `value_to_string` for better alignment with its use by the serialization framework, which was the only remaining code using `flatten_data`.
* Removed oldforms methods from `django.db.models.Options` class: `get_followed_related_objects`, `get_data_holders`, `get_follow`, and `has_field_type`.
* Removed oldforms-admin specific options from `django.db.models.fields.related` classes: `num_in_admin`, `min_num_in_admin`, `max_num_in_admin`, `num_extra_on_change`, and `edit_inline`.
* Serialization framework
* `Serializer.get_string_value` now calls the model fields' renamed `value_to_string` methods.
* Removed a special-casing of `models.DateTimeField` in `core.serializers.base.Serializer.get_string_value` that's handled by `django.db.models.fields.DateTimeField.value_to_string`.
* Removed `django.core.validators`:
* Moved `ValidationError` exception to `django.core.exceptions`.
* For the couple places that were using validators, brought over the necessary code to maintain the same functionality.
* Introduced a SlugField form field for validation and to compliment the SlugField model field (refs #8040).
* Removed an oldforms-style model creation hack (refs #2160).
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8616 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-27 15:19:44 +08:00
if not has_admin :
2008-07-19 07:54:34 +08:00
# Don't display link to edit, because it either has no
# admin or is edited inline.
2008-12-17 01:42:18 +08:00
nh ( deleted_objects , current_depth ,
[ u ' %s : %s ' % ( capfirst ( related . opts . verbose_name ) , force_unicode ( sub_obj ) ) , [ ] ] )
2008-07-19 07:54:34 +08:00
else :
# Display a link to the admin page.
2009-03-24 04:22:56 +08:00
nh ( deleted_objects , current_depth , [ mark_safe ( u ' %s : <a href= " %s " > %s </a> ' %
2008-12-17 01:42:18 +08:00
( escape ( capfirst ( related . opts . verbose_name ) ) ,
2009-03-24 04:22:56 +08:00
get_change_view_url ( related . opts . app_label ,
related . opts . object_name . lower ( ) ,
sub_obj . _get_pk_val ( ) ,
admin_site ,
levels_to_root ) ,
2008-12-17 01:42:18 +08:00
escape ( sub_obj ) ) ) , [ ] ] )
2008-07-19 07:54:34 +08:00
get_deleted_objects ( deleted_objects , perms_needed , user , sub_obj , related . opts , current_depth + 2 , admin_site )
else :
has_related_objs = False
for sub_obj in getattr ( obj , rel_opts_name ) . all ( ) :
has_related_objs = True
Removed oldforms, validators, and related code:
* Removed `Manipulator`, `AutomaticManipulator`, and related classes.
* Removed oldforms specific bits from model fields:
* Removed `validator_list` and `core` arguments from constructors.
* Removed the methods:
* `get_manipulator_field_names`
* `get_manipulator_field_objs`
* `get_manipulator_fields`
* `get_manipulator_new_data`
* `prepare_field_objs_and_params`
* `get_follow`
* Renamed `flatten_data` method to `value_to_string` for better alignment with its use by the serialization framework, which was the only remaining code using `flatten_data`.
* Removed oldforms methods from `django.db.models.Options` class: `get_followed_related_objects`, `get_data_holders`, `get_follow`, and `has_field_type`.
* Removed oldforms-admin specific options from `django.db.models.fields.related` classes: `num_in_admin`, `min_num_in_admin`, `max_num_in_admin`, `num_extra_on_change`, and `edit_inline`.
* Serialization framework
* `Serializer.get_string_value` now calls the model fields' renamed `value_to_string` methods.
* Removed a special-casing of `models.DateTimeField` in `core.serializers.base.Serializer.get_string_value` that's handled by `django.db.models.fields.DateTimeField.value_to_string`.
* Removed `django.core.validators`:
* Moved `ValidationError` exception to `django.core.exceptions`.
* For the couple places that were using validators, brought over the necessary code to maintain the same functionality.
* Introduced a SlugField form field for validation and to compliment the SlugField model field (refs #8040).
* Removed an oldforms-style model creation hack (refs #2160).
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8616 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-27 15:19:44 +08:00
if not has_admin :
2008-07-19 07:54:34 +08:00
# Don't display link to edit, because it either has no
# admin or is edited inline.
2008-12-17 01:42:18 +08:00
nh ( deleted_objects , current_depth ,
[ u ' %s : %s ' % ( capfirst ( related . opts . verbose_name ) , force_unicode ( sub_obj ) ) , [ ] ] )
2008-07-19 07:54:34 +08:00
else :
# Display a link to the admin page.
2009-03-24 04:22:56 +08:00
nh ( deleted_objects , current_depth , [ mark_safe ( u ' %s : <a href= " %s " > %s </a> ' %
2008-12-17 01:42:18 +08:00
( escape ( capfirst ( related . opts . verbose_name ) ) ,
2009-03-24 04:22:56 +08:00
get_change_view_url ( related . opts . app_label ,
related . opts . object_name . lower ( ) ,
sub_obj . _get_pk_val ( ) ,
admin_site ,
levels_to_root ) ,
2008-12-17 01:42:18 +08:00
escape ( sub_obj ) ) ) , [ ] ] )
2008-07-19 07:54:34 +08:00
get_deleted_objects ( deleted_objects , perms_needed , user , sub_obj , related . opts , current_depth + 2 , admin_site )
# If there were related objects, and the user doesn't have
# permission to delete them, add the missing perm to perms_needed.
if has_admin and has_related_objs :
p = ' %s . %s ' % ( related . opts . app_label , related . opts . get_delete_permission ( ) )
if not user . has_perm ( p ) :
perms_needed . add ( related . opts . verbose_name )
for related in opts . get_all_related_many_to_many_objects ( ) :
has_admin = related . model in admin_site . _registry
if related . opts in opts_seen :
continue
opts_seen . append ( related . opts )
rel_opts_name = related . get_accessor_name ( )
has_related_objs = False
# related.get_accessor_name() could return None for symmetrical relationships
if rel_opts_name :
rel_objs = getattr ( obj , rel_opts_name , None )
if rel_objs :
has_related_objs = True
if has_related_objs :
for sub_obj in rel_objs . all ( ) :
Removed oldforms, validators, and related code:
* Removed `Manipulator`, `AutomaticManipulator`, and related classes.
* Removed oldforms specific bits from model fields:
* Removed `validator_list` and `core` arguments from constructors.
* Removed the methods:
* `get_manipulator_field_names`
* `get_manipulator_field_objs`
* `get_manipulator_fields`
* `get_manipulator_new_data`
* `prepare_field_objs_and_params`
* `get_follow`
* Renamed `flatten_data` method to `value_to_string` for better alignment with its use by the serialization framework, which was the only remaining code using `flatten_data`.
* Removed oldforms methods from `django.db.models.Options` class: `get_followed_related_objects`, `get_data_holders`, `get_follow`, and `has_field_type`.
* Removed oldforms-admin specific options from `django.db.models.fields.related` classes: `num_in_admin`, `min_num_in_admin`, `max_num_in_admin`, `num_extra_on_change`, and `edit_inline`.
* Serialization framework
* `Serializer.get_string_value` now calls the model fields' renamed `value_to_string` methods.
* Removed a special-casing of `models.DateTimeField` in `core.serializers.base.Serializer.get_string_value` that's handled by `django.db.models.fields.DateTimeField.value_to_string`.
* Removed `django.core.validators`:
* Moved `ValidationError` exception to `django.core.exceptions`.
* For the couple places that were using validators, brought over the necessary code to maintain the same functionality.
* Introduced a SlugField form field for validation and to compliment the SlugField model field (refs #8040).
* Removed an oldforms-style model creation hack (refs #2160).
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8616 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-27 15:19:44 +08:00
if not has_admin :
2008-07-19 07:54:34 +08:00
# Don't display link to edit, because it either has no
# admin or is edited inline.
nh ( deleted_objects , current_depth , [ _ ( ' One or more %(fieldname)s in %(name)s : %(obj)s ' ) % \
{ ' fieldname ' : force_unicode ( related . field . verbose_name ) , ' name ' : force_unicode ( related . opts . verbose_name ) , ' obj ' : escape ( sub_obj ) } , [ ] ] )
else :
# Display a link to the admin page.
nh ( deleted_objects , current_depth , [
mark_safe ( ( _ ( ' One or more %(fieldname)s in %(name)s : ' ) % { ' fieldname ' : escape ( force_unicode ( related . field . verbose_name ) ) , ' name ' : escape ( force_unicode ( related . opts . verbose_name ) ) } ) + \
2009-03-24 04:22:56 +08:00
( u ' <a href= " %s " > %s </a> ' % \
( get_change_view_url ( related . opts . app_label ,
related . opts . object_name . lower ( ) ,
sub_obj . _get_pk_val ( ) ,
admin_site ,
levels_to_root ) ,
escape ( sub_obj ) ) ) ) , [ ] ] )
2008-07-19 07:54:34 +08:00
# If there were related objects, and the user doesn't have
# permission to change them, add the missing perm to perms_needed.
if has_admin and has_related_objs :
p = u ' %s . %s ' % ( related . opts . app_label , related . opts . get_change_permission ( ) )
if not user . has_perm ( p ) :
perms_needed . add ( related . opts . verbose_name )
2009-03-24 04:22:56 +08:00
def model_format_dict ( obj ) :
"""
Return a ` dict ` with keys ' verbose_name ' and ' verbose_name_plural ' ,
typically for use with string formatting .
` obj ` may be a ` Model ` instance , ` Model ` subclass , or ` QuerySet ` instance .
"""
if isinstance ( obj , ( models . Model , models . base . ModelBase ) ) :
opts = obj . _meta
elif isinstance ( obj , models . query . QuerySet ) :
opts = obj . model . _meta
else :
opts = obj
return {
' verbose_name ' : force_unicode ( opts . verbose_name ) ,
' verbose_name_plural ' : force_unicode ( opts . verbose_name_plural )
}
def model_ngettext ( obj , n = None ) :
"""
2009-03-25 09:31:57 +08:00
Return the appropriate ` verbose_name ` or ` verbose_name_plural ` value for
` obj ` depending on the count ` n ` .
2009-03-24 04:22:56 +08:00
` obj ` may be a ` Model ` instance , ` Model ` subclass , or ` QuerySet ` instance .
If ` obj ` is a ` QuerySet ` instance , ` n ` is optional and the length of the
` QuerySet ` is used .
"""
if isinstance ( obj , models . query . QuerySet ) :
if n is None :
n = obj . count ( )
obj = obj . model
d = model_format_dict ( obj )
2009-03-25 09:31:57 +08:00
singular , plural = d [ " verbose_name " ] , d [ " verbose_name_plural " ]
return ungettext ( singular , plural , n or 0 )
2009-12-23 02:29:00 +08:00
def lookup_field ( name , obj , model_admin = None ) :
opts = obj . _meta
try :
f = opts . get_field ( name )
except models . FieldDoesNotExist :
# For non-field values, the value is either a method, property or
# returned via a callable.
if callable ( name ) :
attr = name
value = attr ( obj )
elif ( model_admin is not None and hasattr ( model_admin , name ) and
not name == ' __str__ ' and not name == ' __unicode__ ' ) :
attr = getattr ( model_admin , name )
value = attr ( obj )
else :
attr = getattr ( obj , name )
if callable ( attr ) :
value = attr ( )
else :
value = attr
f = None
else :
attr = None
value = getattr ( obj , f . attname )
return f , attr , value
def label_for_field ( name , model , model_admin ) :
try :
model . _meta . get_field_by_name ( name ) [ 0 ]
return name
except models . FieldDoesNotExist :
if name == " __unicode__ " :
return force_unicode ( model . _meta . verbose_name )
if name == " __str__ " :
return smart_str ( model . _meta . verbose_name )
if callable ( name ) :
attr = name
elif hasattr ( model_admin , name ) :
attr = getattr ( model_admin , name )
elif hasattr ( model , name ) :
attr = getattr ( model , name )
else :
raise AttributeError
if hasattr ( attr , " short_description " ) :
return attr . short_description
elif callable ( attr ) :
if attr . __name__ == " <lambda> " :
return " -- "
else :
return attr . __name__
else :
return name
def display_for_field ( value , field ) :
from django . contrib . admin . templatetags . admin_list import _boolean_icon
from django . contrib . admin . views . main import EMPTY_CHANGELIST_VALUE
if isinstance ( field , models . DateField ) or isinstance ( field , models . TimeField ) :
return formats . localize ( value )
elif isinstance ( field , models . BooleanField ) or isinstance ( field , models . NullBooleanField ) :
return _boolean_icon ( value )
elif isinstance ( field , models . DecimalField ) :
return formats . number_format ( value , field . decimal_places )
elif isinstance ( field , models . FloatField ) :
return formats . number_format ( value )
elif field . flatchoices :
return dict ( field . flatchoices ) . get ( value , EMPTY_CHANGELIST_VALUE )
else :
return smart_unicode ( value )