My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
"""
A custom Model Field for tagging.
"""
from django.db.models import signals
from django.db.models.fields import CharField
from django.utils.translation import ugettext_lazy as _

from tagging import settings
from tagging.models import Tag
from tagging.utils import edit_string_for_tags

class TagField(CharField):
"""
A "special" character field that actually works as a relationship to tags
"under the hood". This exposes a space-separated string of tags, but does
the splitting/reordering/etc. under the hood.
"""
def __init__(self, *args, **kwargs):
kwargs['max_length'] = kwargs.get('max_length', 255)
kwargs['blank'] = kwargs.get('blank', True)
kwargs['default'] = kwargs.get('default', '')
super(TagField, self).__init__(*args, **kwargs)

def contribute_to_class(self, cls, name):
super(TagField, self).contribute_to_class(cls, name)

# Make this object the descriptor for field access.
setattr(cls, self.name, self)

# Save tags back to the database post-save
signals.post_save.connect(self._save, cls, True)

# Update tags from Tag objects post-init
signals.post_init.connect(self._update, cls, True)

def __get__(self, instance, owner=None):
"""
Tag getter. Returns an instance's tags if accessed on an instance, and
all of a model's tags if called on a class. That is, this model::

class Link(models.Model):
...
tags = TagField()

Lets you do both of these::

>>> l = Link.objects.get(...)
>>> l.tags
'tag1 tag2 tag3'

>>> Link.tags
'tag1 tag2 tag3 tag4'

"""
# Handle access on the model (i.e. Link.tags)
if instance is None:
return edit_string_for_tags(Tag.objects.usage_for_model(owner))

return self._get_instance_tag_cache(instance)

def __set__(self, instance, value):
"""
Set an object's tags.
"""
if instance is None:
raise AttributeError(_('%s can only be set on instances.') % self.name)
if settings.FORCE_LOWERCASE_TAGS and value is not None:
value = value.lower()
self._set_instance_tag_cache(instance, value)

def _save(self, **kwargs): #signal, sender, instance):
"""
Save tags back to the database
"""
tags = self._get_instance_tag_cache(kwargs['instance'])
Tag.objects.update_tags(kwargs['instance'], tags)

def _update(self, **kwargs): #signal, sender, instance):
"""
Update tag cache from TaggedItem objects.
"""
instance = kwargs['instance']
self._update_instance_tag_cache(instance)

def __delete__(self, instance):
"""
Clear all of an object's tags.
"""
self._set_instance_tag_cache(instance, '')

def _get_instance_tag_cache(self, instance):
"""
Helper: get an instance's tag cache.
"""
return getattr(instance, '_%s_cache' % self.attname, None)

def _set_instance_tag_cache(self, instance, tags):
"""
Helper: set an instance's tag cache.
"""
setattr(instance, '_%s_cache' % self.attname, tags)

def _update_instance_tag_cache(self, instance):
"""
Helper: update an instance's tag cache from actual Tags.
"""
# for an unsaved object, leave the default value alone
if instance.pk is not None:
tags = edit_string_for_tags(Tag.objects.get_for_object(instance))
self._set_instance_tag_cache(instance, tags)

def get_internal_type(self):
return 'CharField'

def formfield(self, **kwargs):
from tagging import forms
defaults = {'form_class': forms.TagField}
defaults.update(kwargs)
return super(TagField, self).formfield(**defaults)

Change log

r170 by brosner on Nov 5, 2009   Diff
Fixed  issue #28  — properly update TagField
tag instance cache when loading the object
to keep everything in sync. Thanks
ebartels and carljm for the legwork.
Go to: 
Project members, sign in to write a code review

Older revisions

r149 by doug.napoleone on Aug 28, 2008   Diff
Merge back of newforms-admin branch
with some other minor cleanup for
django 1.0 beta 2

r141 by doug.napoleone on Aug 11, 2008   Diff
Fixes issues #144 and #147, the
'newforms' and signals refactoring.
There are other issues when running
with django-1.0a which have yet to be
addressed.
...
r134 by jonathan.buchanan on Apr 30, 2008   Diff
Modified TagField's __init__ to take
and pass *args along
All revisions of this file

File info

Size: 3943 bytes, 119 lines

File properties

svn:eol-style
native
Powered by Google Project Hosting