aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBlake DeMarcy <ofunknowndescent@gmail.com>2017-04-26 14:51:03 -0500
committerBlake DeMarcy <ofunknowndescent@gmail.com>2017-04-26 14:51:03 -0500
commit33b591293750db1de93c2c372706cf2e3b134dee (patch)
tree6114beb9dbabe7495885fb57adf7c2cb92947aed /src
parentc4f04173c44ec79c80de1eed47892e28fde2d704 (diff)
downloadbbj-33b591293750db1de93c2c372706cf2e3b134dee.tar.gz
add message feeds
Diffstat (limited to 'src')
-rw-r--r--src/db.py48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/db.py b/src/db.py
index 1050e6a..ebb205d 100644
--- a/src/db.py
+++ b/src/db.py
@@ -30,6 +30,54 @@ import os
anon = None
+
+def message_feed(connection, time):
+ """
+ Returns a special object representing all activity on the board since
+ the argument `time`, a unix/epoch timestamp.
+
+ {
+ "threads": {
+ "thread_id": {
+ ...thread object
+ },
+ ...more thread_id/object pairs
+ },
+ "messages": [...standard message object array sorted by date]
+ }
+
+ The message objects in "messages" are the same objects returned
+ in threads normally. They each have a thread_id parameter, and
+ you can access metadata for these threads by the "threads" object
+ which is also provided.
+
+ The "messages" array is already sorted by submission time, newest
+ first. The order in the threads object is undefined and you should
+ instead use their `last_mod` attribute if you intend to list them
+ out visually.
+ """
+ threads = {
+ obj[0]: schema.thread(*obj) for obj in
+ connection.execute(
+ "SELECT * FROM threads WHERE last_mod > ?", (time,))
+ }
+
+ messages = list()
+ for thread in threads.values():
+ messages += [
+ schema.message(*obj) for obj in
+ connection.execute("""
+ SELECT * FROM messages WHERE thread_id = ?
+ AND created > ? """, (thread["thread_id"], time))
+ ]
+
+ return {
+ "threads": threads,
+ "messages": sorted(messages, key=lambda m: m["created"])
+ }
+
+
+
### THREADS ###
def thread_get(connection, thread_id, messages=True):
Un proyecto texto-plano.xyz