summaryrefslogtreecommitdiffstats
path: root/forum/management/commands/pg_multi_award_badges.py
blob: 75f84bfe4d42163e0f818dbbd6b5dc6bb7b5e105 (plain)
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
#!/usr/bin/env python
#encoding:utf-8
#-------------------------------------------------------------------------------
# Name:        Award badges command
# Purpose:     This is a command file croning in background process regularly to
#              query database and award badges for user's special acitivities.
#
# Author:      Mike, Sailing
#
# Created:     22/01/2009
# Copyright:   (c) Mike 2009
# Licence:     GPL V2
#-------------------------------------------------------------------------------

from datetime import datetime, date
from django.core.management.base import NoArgsCommand
from django.db import connection
from django.shortcuts import get_object_or_404
from django.contrib.contenttypes.models import ContentType

from forum.models import *
from forum.const import *
from pg_base_command import BaseCommand
"""
(1, '????', 3, '????', '?????3?????????', 1, 0),
(2, '????', 3, '????', '?????3?????????', 1, 0),
(3, '????', 3, '????', '????10???', 1, 0),
(4, '????', 3, '????', '????10???', 1, 0),
(5, '???', 3, '???', '??10???', 0, 0),
(6, '????', 3, '????', '????????1000??', 1, 0),
(7, '???', 3, '???', '?????????', 0, 0),
(8, '???', 3, '???', '???????', 0, 0),
(9, '???', 3, '???', '??????', 0, 0),
(10, '??', 3, '??', '???????', 0, 0),
(11, '??', 3, '??', '???????', 0, 0),
(12, '??', 3, '??', '???????', 0, 0),
(13, '??', 3, '??', '???????????????', 0, 0),
(14, '???', 3, '???', '??????', 0, 0),
(15, '??', 3, '??', '??????????????????', 0, 0),
(16, '????', 3, '????', '????????????', 0, 0),
(17, '????', 3, '????', '??????????3??????', 1, 0),
(18, '??????', 1, '??????', '????100????', 1, 0),
(19, '??????', 1, '??????', '????100????', 1, 0),
(20, '???', 1, '???', '???100?????', 1, 0),
(21, '????', 1, '????', '????????10000??', 1, 0),
(22, 'alpha??', 2, 'alpha??', '?????????', 0, 0),
(23, '????', 2, '????', '????25????', 1, 0),
(24, '????', 2, '????', '????25????', 1, 0),
(25, '?????', 2, '?????', '???25?????', 1, 0),
(26, '????', 2, '????', '??300???', 0, 0),
(27, '????', 2, '????', '???100???', 0, 0),
(28, '??', 2, '??', '?????????', 0, 0),
(29, '??', 2, '??', '???????????', 0, 0),
(30, '??', 2, '??', '?????????', 0, 0),
(31, '??????', 2, '??????', '????????2500??', 1, 0),
(32, '???', 2, '???', '??????????10???', 0, 0),
(33, 'beta??', 2, 'beta??', 'beta??????', 0, 0),
(34, '??', 2, '??', '?????????????40??', 1, 0),
(35, '??', 2, '??', '???60??????????5???', 1, 0),
(36, '????', 2, '????', '??????50???????', 1, 0);


TYPE_ACTIVITY_ASK_QUESTION=1
TYPE_ACTIVITY_ANSWER=2
TYPE_ACTIVITY_COMMENT_QUESTION=3
TYPE_ACTIVITY_COMMENT_ANSWER=4
TYPE_ACTIVITY_UPDATE_QUESTION=5
TYPE_ACTIVITY_UPDATE_ANSWER=6
TYPE_ACTIVITY_PRIZE=7
TYPE_ACTIVITY_MARK_ANSWER=8
TYPE_ACTIVITY_VOTE_UP=9
TYPE_ACTIVITY_VOTE_DOWN=10
TYPE_ACTIVITY_CANCEL_VOTE=11
TYPE_ACTIVITY_DELETE_QUESTION=12
TYPE_ACTIVITY_DELETE_ANSWER=13
TYPE_ACTIVITY_MARK_OFFENSIVE=14
TYPE_ACTIVITY_UPDATE_TAGS=15
TYPE_ACTIVITY_FAVORITE=16
TYPE_ACTIVITY_USER_FULL_UPDATED = 17
"""

class Command(BaseCommand):
    def handle_noargs(self, **options):
        try:
            try:
                self.delete_question_be_voted_up_3()
                self.delete_answer_be_voted_up_3()
                self.delete_question_be_vote_down_3()
                self.delete_answer_be_voted_down_3()
                self.answer_be_voted_up_10()
                self.question_be_voted_up_10()
                self.question_view_1000()
                self.answer_self_question_be_voted_up_3()
                self.answer_be_voted_up_100()
                self.question_be_voted_up_100()
                self.question_be_favorited_100()
                self.question_view_10000()
                self.answer_be_voted_up_25()
                self.question_be_voted_up_25()
                self.question_be_favorited_25()
                self.question_view_2500()
                self.answer_be_accepted_and_voted_up_40()
                self.question_be_answered_after_60_days_and_be_voted_up_5()
                self.created_tag_be_used_in_question_50()
            except Exception, e:
                print e
        finally:
            connection.close()

    def delete_question_be_voted_up_3(self):
        """
        (1, '????', 3, '????', '?????3?????????', 1, 0),
        """
        query = "SELECT act.id, act.user_id, act.object_id FROM activity act, question q WHERE act.object_id = q.id AND\
                act.activity_type = %s AND\
                q.vote_up_count >=3 AND \
                not act.is_auditted" % (TYPE_ACTIVITY_DELETE_QUESTION)
        self.__process_activities_badge(query, 1, Question)

    def delete_answer_be_voted_up_3(self):
        """
        (1, '????', 3, '????', '?????3?????????', 1, 0),
        """
        query = "SELECT act.id, act.user_id, act.object_id FROM activity act, answer an WHERE act.object_id = an.id AND\
                act.activity_type = %s AND\
                an.vote_up_count >=3 AND \
                not act.is_auditted" % (TYPE_ACTIVITY_DELETE_ANSWER)
        self.__process_activities_badge(query, 1, Answer)

    def delete_question_be_vote_down_3(self):
        """
        (2, '????', 3, '????', '?????3?????????', 1, 0),
        """
        query = "SELECT act.id, act.user_id, act.object_id FROM activity act, question q WHERE act.object_id = q.id AND\
                act.activity_type = %s AND\
                q.vote_down_count >=3 AND \
                not act.is_auditted" % (TYPE_ACTIVITY_DELETE_QUESTION)
        content_type = ContentType.objects.get_for_model(Question)
        self.__process_activities_badge(query, 2, Question)

    def delete_answer_be_voted_down_3(self):
        """
        (2, '????', 3, '????', '?????3?????????', 1, 0),
        """
        query = "SELECT act.id, act.user_id, act.object_id FROM activity act, answer an WHERE act.object_id = an.id AND\
                act.activity_type = %s AND\
                an.vote_down_count >=3 AND \
                not act.is_auditted" % (TYPE_ACTIVITY_DELETE_ANSWER)
        self.__process_activities_badge(query, 2, Answer)

    def answer_be_voted_up_10(self):
        """
        (3, '????', 3, '????', '????10???', 1, 0),
        """
        query = "SELECT act.id, act.user_id, act.object_id FROM \
                    activity act, answer a WHERE act.object_id = a.id AND\
                    act.activity_type = %s AND \
                    a.vote_up_count >= 10 AND\
                    not act.is_auditted" % (TYPE_ACTIVITY_ANSWER)
        self.__process_activities_badge(query, 3, Answer)

    def question_be_voted_up_10(self):
        """
        (4, '????', 3, '????', '????10???', 1, 0),
        """
        query = "SELECT act.id, act.user_id, act.object_id FROM \
                    activity act, question q WHERE act.object_id = q.id AND\
                    act.activity_type = %s AND \
                    q.vote_up_count >= 10 AND\
                    not act.is_auditted" % (TYPE_ACTIVITY_ASK_QUESTION)
        self.__process_activities_badge(query, 4, Question)

    def question_view_1000(self):
        """
        (6, '????', 3, '????', '????????1000??', 1, 0),
        """
        query = "SELECT act.id, act.user_id, act.object_id FROM \
                    activity act, question q WHERE act.activity_type = %s AND\
                    act.object_id = q.id AND \
                    q.view_count >= 1000 AND\
                    act.object_id NOT IN \
                        (SELECT object_id FROM award WHERE award.badge_id = %s)" % (TYPE_ACTIVITY_ASK_QUESTION, 6)
        self.__process_activities_badge(query, 6, Question, False)

    def answer_self_question_be_voted_up_3(self):
        """
        (17, '????', 3, '????', '??????????3??????', 1, 0),
        """
        query = "SELECT act.id, act.user_id, act.object_id FROM \
                    activity act, answer an WHERE act.activity_type = %s AND\
                    act.object_id = an.id AND\
                    an.vote_up_count >= 3 AND\
                    act.user_id = (SELECT user_id FROM question q WHERE q.id = an.question_id) AND\
                    act.object_id NOT IN \
                        (SELECT object_id FROM award WHERE award.badge_id = %s)" % (TYPE_ACTIVITY_ANSWER, 17)
        self.__process_activities_badge(query, 17, Question, False)

    def answer_be_voted_up_100(self):
        """
        (18, '??????', 1, '??????', '????100????', 1, 0),
        """
        query = "SELECT an.id, an.author_id FROM answer an WHERE an.vote_up_count >= 100 AND an.id NOT IN \
                (SELECT object_id FROM award WHERE award.badge_id = %s)" % (18)

        self.__process_badge(query, 18, Answer)

    def question_be_voted_up_100(self):
        """
        (19, '??????', 1, '??????', '????100????', 1, 0),
        """
        query = "SELECT q.id, q.author_id FROM question q WHERE q.vote_up_count >= 100 AND q.id NOT IN \
                (SELECT object_id FROM award WHERE award.badge_id = %s)" % (19)

        self.__process_badge(query, 19, Question)

    def question_be_favorited_100(self):
        """
        (20, '???', 1, '???', '???100?????', 1, 0),
        """
        query = "SELECT q.id, q.author_id FROM question q WHERE q.favourite_count >= 100 AND q.id NOT IN \
                (SELECT object_id FROM award WHERE award.badge_id = %s)" % (20)

        self.__process_badge(query, 20, Question)

    def question_view_10000(self):
        """
        (21, '????', 1, '????', '????????10000??', 1, 0),
        """
        query = "SELECT q.id, q.author_id FROM question q WHERE q.view_count >= 10000 AND q.id NOT IN \
                (SELECT object_id FROM award WHERE award.badge_id = %s)" % (21)

        self.__process_badge(query, 21, Question)

    def answer_be_voted_up_25(self):
        """
        (23, '????', 2, '????', '????25????', 1, 0),
        """
        query = "SELECT a.id, a.author_id FROM answer a WHERE a.vote_up_count >= 25 AND a.id NOT IN \
                (SELECT object_id FROM award WHERE award.badge_id = %s)" % (23)

        self.__process_badge(query, 23, Answer)

    def question_be_voted_up_25(self):
        """
        (24, '????', 2, '????', '????25????', 1, 0),
        """
        query = "SELECT q.id, q.author_id FROM question q WHERE q.vote_up_count >= 25 AND q.id NOT IN \
                (SELECT object_id FROM award WHERE award.badge_id = %s)" % (24)

        self.__process_badge(query, 24, Question)

    def question_be_favorited_25(self):
        """
        (25, '?????', 2, '?????', '???25?????', 1, 0),
        """
        query = "SELECT q.id, q.author_id FROM question q WHERE q.favourite_count >= 25 AND q.id NOT IN \
                (SELECT object_id FROM award WHERE award.badge_id = %s)" % (25)

        self.__process_badge(query, 25, Question)

    def question_view_2500(self):
        """
        (31, '??????', 2, '??????', '????????2500??', 1, 0),
        """
        query = "SELECT q.id, q.author_id FROM question q WHERE q.view_count >= 2500 AND q.id NOT IN \
                (SELECT object_id FROM award WHERE award.badge_id = %s)" % (31)

        self.__process_badge(query, 31, Question)

    def answer_be_accepted_and_voted_up_40(self):
        """
        (34, '??', 2, '??', '?????????????40??', 1, 0),
        """
        query = "SELECT a.id, a.author_id FROM answer a WHERE a.vote_up_count >= 40 AND\
                    a.accepted AND\
                    a.id NOT IN \
                    (SELECT object_id FROM award WHERE award.badge_id = %s)" % (34)

        self.__process_badge(query, 34, Answer)

    def question_be_answered_after_60_days_and_be_voted_up_5(self):
        """
        (35, '??', 2, '??', '???60??????????5???', 1, 0),
        """
        query = "SELECT a.id, a.author_id FROM question q, answer a WHERE q.id = a.question_id AND\
                    (a.added_at + '60 day'::INTERVAL) >= q.added_at AND\
                    a.vote_up_count >= 5 AND \
                    a.id NOT IN \
                    (SELECT object_id FROM award WHERE award.badge_id = %s)" % (35)

        self.__process_badge(query, 35, Answer)

    def created_tag_be_used_in_question_50(self):
        """
        (36, '????', 2, '????', '??????50???????', 1, 0);
        """
        query = "SELECT t.id, t.created_by_id FROM tag t, auth_user u WHERE t.created_by_id = u.id AND \
                    t. used_count >= 50 AND \
                    t.id NOT IN \
                    (SELECT object_id FROM award WHERE award.badge_id = %s)" % (36)

        self.__process_badge(query, 36, Tag)

    def __process_activities_badge(self, query, badge, content_object, update_auditted=True):
        content_type = ContentType.objects.get_for_model(content_object)

        cursor = connection.cursor()
        try:
            cursor.execute(query)
            rows = cursor.fetchall()

            if update_auditted:
                activity_ids = []
            badge = get_object_or_404(Badge, id=badge)
            for row in rows:
                activity_id = row[0]
                user_id = row[1]
                object_id = row[2]

                user = get_object_or_404(User, id=user_id)
                award = Award(user=user, badge=badge, content_type=content_type, object_id=object_id)
                award.save()

                if update_auditted:
                    activity_ids.append(activity_id)

            if update_auditted:
                self.update_activities_auditted(cursor, activity_ids)
        finally:
            cursor.close()

    def __process_badge(self, query, badge, content_object):
        content_type = ContentType.objects.get_for_model(Answer)
        cursor = connection.cursor()
        try:
            cursor.execute(query)
            rows = cursor.fetchall()

            badge = get_object_or_404(Badge, id=badge)
            for row in rows:
                object_id = row[0]
                user_id = row[1]

                user = get_object_or_404(User, id=user_id)
                award = Award(user=user, badge=badge, content_type=content_type, object_id=object_id)
                award.save()
        finally:
            cursor.close()