/usr/share/pyshared/voting/managers.py is in python-django-voting 0.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 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 | from django.conf import settings
from django.db import connection, models
try:
from django.db.models.sql.aggregates import Aggregate
except ImportError:
supports_aggregates = False
else:
supports_aggregates = True
from django.contrib.contenttypes.models import ContentType
ZERO_VOTES_ALLOWED = getattr(settings, 'VOTING_ZERO_VOTES_ALLOWED', False)
if supports_aggregates:
class CoalesceWrapper(Aggregate):
sql_template = 'COALESCE(%(function)s(%(field)s), %(default)s)'
def __init__(self, lookup, **extra):
self.lookup = lookup
self.extra = extra
def _default_alias(self):
return '%s__%s' % (self.lookup, self.__class__.__name__.lower())
default_alias = property(_default_alias)
def add_to_query(self, query, alias, col, source, is_summary):
super(CoalesceWrapper, self).__init__(col, source, is_summary, **self.extra)
query.aggregate_select[alias] = self
class CoalesceSum(CoalesceWrapper):
sql_function = 'SUM'
class CoalesceCount(CoalesceWrapper):
sql_function = 'COUNT'
class VoteManager(models.Manager):
def get_score(self, obj):
"""
Get a dictionary containing the total score for ``obj`` and
the number of votes it's received.
"""
ctype = ContentType.objects.get_for_model(obj)
result = self.filter(object_id=obj._get_pk_val(),
content_type=ctype).extra(
select={
'score': 'COALESCE(SUM(vote), 0)',
'num_votes': 'COALESCE(COUNT(vote), 0)',
}).values_list('score', 'num_votes')[0]
return {
'score': int(result[0]),
'num_votes': int(result[1]),
'num_up_votes': (int(result[1])+int(result[0]))/2,
'num_down_votes': (int(result[1])-int(result[0]))/2,
}
def get_scores_in_bulk(self, objects):
"""
Get a dictionary mapping object ids to total score and number
of votes for each object.
"""
object_ids = [o._get_pk_val() for o in objects]
if not object_ids:
return {}
ctype = ContentType.objects.get_for_model(objects[0])
if supports_aggregates:
queryset = self.filter(
object_id__in=object_ids,
content_type=ctype,
).values(
'object_id',
).annotate(
score=CoalesceSum('vote', default='0'),
num_votes=CoalesceCount('vote', default='0'),
)
else:
queryset = self.filter(
object_id__in=object_ids,
content_type=ctype,
).extra(
select={
'score': 'COALESCE(SUM(vote), 0)',
'num_votes': 'COALESCE(COUNT(vote), 0)',
}
).values('object_id', 'score', 'num_votes')
queryset.query.group_by.append('object_id')
vote_dict = {}
for row in queryset:
vote_dict[row['object_id']] = {
'score': int(row['score']),
'num_votes': int(row['num_votes']),
'num_up_votes': (int(row['num_votes'])+int(row['score']))/2,
'num_down_votes': (int(row['num_votes'])-int(row['score']))/2,
}
return vote_dict
def record_vote(self, obj, user, vote):
"""
Record a user's vote on a given object. Only allows a given user
to vote once, though that vote may be changed.
A zero vote indicates that any existing vote should be removed.
"""
if vote not in (+1, 0, -1):
raise ValueError('Invalid vote (must be +1/0/-1)')
ctype = ContentType.objects.get_for_model(obj)
try:
v = self.get(user=user, content_type=ctype,
object_id=obj._get_pk_val())
if vote == 0 and not ZERO_VOTES_ALLOWED:
v.delete()
else:
v.vote = vote
v.save()
except models.ObjectDoesNotExist:
if not ZERO_VOTES_ALLOWED and vote == 0:
return
self.create(user=user, content_type=ctype,
object_id=obj._get_pk_val(), vote=vote)
def get_top(self, Model, limit=10, reversed=False):
"""
Get the top N scored objects for a given model.
Yields (object, score) tuples.
"""
ctype = ContentType.objects.get_for_model(Model)
query = """
SELECT object_id, SUM(vote) as %s
FROM %s
WHERE content_type_id = %%s
GROUP BY object_id""" % (
connection.ops.quote_name('score'),
connection.ops.quote_name(self.model._meta.db_table),
)
# MySQL has issues with re-using the aggregate function in the
# HAVING clause, so we alias the score and use this alias for
# its benefit.
if settings.DATABASES['default']['ENGINE'] == 'mysql':
having_score = connection.ops.quote_name('score')
else:
having_score = 'SUM(vote)'
if reversed:
having_sql = ' HAVING %(having_score)s < 0 ORDER BY %(having_score)s ASC LIMIT %%s'
else:
having_sql = ' HAVING %(having_score)s > 0 ORDER BY %(having_score)s DESC LIMIT %%s'
query += having_sql % {
'having_score': having_score,
}
cursor = connection.cursor()
cursor.execute(query, [ctype.id, limit])
results = cursor.fetchall()
# Use in_bulk() to avoid O(limit) db hits.
objects = Model.objects.in_bulk([id for id, score in results])
# Yield each object, score pair. Because of the lazy nature of generic
# relations, missing objects are silently ignored.
for id, score in results:
if id in objects:
yield objects[id], int(score)
def get_bottom(self, Model, limit=10):
"""
Get the bottom (i.e. most negative) N scored objects for a given
model.
Yields (object, score) tuples.
"""
return self.get_top(Model, limit, True)
def get_for_user(self, obj, user):
"""
Get the vote made on the given object by the given user, or
``None`` if no matching vote exists.
"""
if not user.is_authenticated():
return None
ctype = ContentType.objects.get_for_model(obj)
try:
vote = self.get(content_type=ctype, object_id=obj._get_pk_val(),
user=user)
except models.ObjectDoesNotExist:
vote = None
return vote
def get_for_user_in_bulk(self, objects, user):
"""
Get a dictionary mapping object ids to votes made by the given
user on the corresponding objects.
"""
vote_dict = {}
if len(objects) > 0:
ctype = ContentType.objects.get_for_model(objects[0])
votes = list(self.filter(content_type__pk=ctype.id,
object_id__in=[obj._get_pk_val() \
for obj in objects],
user__pk=user.id))
vote_dict = dict([(vote.object_id, vote) for vote in votes])
return vote_dict
|