Remember who thanked or flagged notes by session cookies #250
authorCharles Connell <charles@connells.org>
Sat, 4 Jan 2014 22:27:10 +0000 (17:27 -0500)
committerCharles Connell <charles@connells.org>
Sat, 4 Jan 2014 22:27:10 +0000 (17:27 -0500)
karmaworld/apps/notes/views.py
karmaworld/settings/common.py
karmaworld/templates/notes/note_detail.html

index 192872194250f4140e90cf888c809888e0817989..43f42a1e683a499a5020fe9d15002a90410fdb71 100644 (file)
@@ -39,6 +39,11 @@ def is_ppt(self):
         return True
     return False
 
+def format_session_increment_field(id, field):
+    return field + '-' + str(id)
+
+THANKS_FIELD = 'thanks'
+FLAG_FIELD = 'flags'
 
 class NoteDetailView(DetailView):
     """ Class-based view for the note html page """
@@ -59,6 +64,12 @@ class NoteDetailView(DetailView):
         if self.object.mimetype == 'application/pdf':
             kwargs['pdf_controls'] = True
 
+        if self.request.session.get(format_session_increment_field(self.object.id, THANKS_FIELD), False):
+            kwargs['already_thanked'] = True
+
+        if self.request.session.get(format_session_increment_field(self.object.id, FLAG_FIELD), False):
+            kwargs['already_flagged'] = True
+
         return super(NoteDetailView, self).get_context_data(**kwargs)
 
 
@@ -213,9 +224,14 @@ def ajaxIncrementBase(request, pk, field):
                                     mimetype="application/json")
 
     try:
+        # Increment counter
         note = Note.objects.get(pk=pk)
         note.__dict__[field] += 1
         note.save()
+
+        # Record that user has performed this, to prevent
+        # them from doing it again
+        request.session[format_session_increment_field(pk, field)] = True
     except ObjectDoesNotExist:
         return HttpResponseNotFound(json.dumps({'status': 'fail', 'message': 'note id does not match a note'}),
                                     mimetype="application/json")
@@ -224,10 +240,10 @@ def ajaxIncrementBase(request, pk, field):
 
 def thank_note(request, pk):
     """Record that somebody has thanked a note."""
-    return ajaxIncrementBase(request, pk, 'thanks')
+    return ajaxIncrementBase(request, pk, THANKS_FIELD)
 
 def flag_note(request, pk):
     """Record that somebody has flagged a note."""
-    return ajaxIncrementBase(request, pk, 'flags')
+    return ajaxIncrementBase(request, pk, FLAG_FIELD)
 
 
index 0e7b0a531982b639f5d1252c649743f5be68c5f7..bfc6fb199f563c1975aa8ae10e3eb0d74a0c7cc4 100644 (file)
@@ -283,6 +283,12 @@ COMPRESS_JS_FILTERS = [
 ]
 ########## END COMPRESSION CONFIGURATION
 
+########## SESSION CONFIGURATION
+
+SESSION_COOKIE_AGE = 63072000    # 2 years in seconds
+
+########## END SESSION CONFIGURATION
+
 ########## TAGGIT CONFIGURATION
 # From https://github.com/yedpodtrzitko/django-taggit
 
index 125c0c6f8ce23cc137d8a822953b063b5166cc16..447d1c72d579785e68e2081ebdaa13610453933f 100644 (file)
         <div id="note_actions" class="large-3 medium-6 small-12 columns small-centered">
           <div class="row">
             <div class="small-4 column">
-              <a href="#" id="flag-button"><img src="{{ STATIC_URL }}img/note_flag.png" alt="note_flag" width="25" height="35"/></a>
-              <a href="#" id="flag-button-disabled" class="hide"><img src="{{ STATIC_URL }}img/note_flag_disabled.png" alt="note_flag" width="25" height="35"/></a>
+              <a href="#" id="flag-button" {% if already_flagged %} class="hide" {% endif %}><img src="{{ STATIC_URL }}img/note_flag.png" alt="note_flag" width="25" height="35"/></a>
+              <a href="#" id="flag-button-disabled" {% if not already_flagged %} class="hide" {% endif %}><img src="{{ STATIC_URL }}img/note_flag_disabled.png" alt="note_flag" width="25" height="35"/></a>
             </div>
             <div class="small-4 column">
-              <a href="#" id="thank-button"><img src="{{ STATIC_URL }}img/note_thank.png" alt="note_thank" width="34" height="34"/></a>
-              <a href="#" id="thank-button-disabled" class="hide"><img src="{{ STATIC_URL }}img/note_thank_disabled.png" alt="note_thank" width="34" height="34"/></a>
+              <a href="#" id="thank-button" {% if already_thanked %} class="hide" {% endif %}><img src="{{ STATIC_URL }}img/note_thank.png" alt="note_thank" width="34" height="34"/></a>
+              <a href="#" id="thank-button-disabled" {% if not already_thanked %} class="hide" {% endif %}><img src="{{ STATIC_URL }}img/note_thank_disabled.png" alt="note_thank" width="34" height="34"/></a>
             </div>
             <div class="small-4 column">
               <a href="{{ note.fp_file }}">