summaryrefslogtreecommitdiff
path: root/journal-content.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2007-10-07 19:03:00 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2007-10-07 19:03:00 +0200
commit96f17e7d17ff44671d11f73b8eb5adfafd81eef4 (patch)
tree3a991d57252b06671776533134c4a6ec962b812d /journal-content.lisp
parentb5c357c081a4901c892ab0e61e33ab94ade98086 (diff)
Hide spam comments.
darcs-hash:857a0fd8096dff8f61c30ee9dce15abbddbe2387
Diffstat (limited to 'journal-content.lisp')
-rw-r--r--journal-content.lisp24
1 files changed, 17 insertions, 7 deletions
diff --git a/journal-content.lisp b/journal-content.lisp
index 92c5d6c..630599e 100644
--- a/journal-content.lisp
+++ b/journal-content.lisp
@@ -154,15 +154,25 @@
(defgeneric comments-about (thing &key ordered-p))
(defgeneric (setf comments-about) (new-value thing &key ordered-p))
-(defmethod comments-about ((journal-entry journal-entry) &key ordered-p)
+(defmethod comments-about ((journal-entry journal-entry) &key ordered-p ham-p)
#.(locally-enable-sql-reader-syntax)
(prog1 (if ordered-p
- (select 'journal-comment
- :where [= [slot-value 'journal-comment 'entry-id]
- (id-of journal-entry)]
- :order-by '([date])
- :flatp t)
- (%comments-about journal-entry))
+ (if ham-p
+ (select 'journal-comment
+ :where [and [= [slot-value 'journal-comment 'entry-id]
+ (id-of journal-entry)]
+ [not [= [slot-value 'journal-comment 'spam-p]
+ "t"]]]
+ :order-by '([date])
+ :flatp t)
+ (select 'journal-comment
+ :where [= [slot-value 'journal-comment 'entry-id]
+ (id-of journal-entry)]
+ :order-by '([date])
+ :flatp t))
+ (if ham-p
+ (remove-if #'spamp (%comments-about journal-entry))
+ (%comments-about journal-entry)))
#.(restore-sql-reader-syntax-state)))