瀏覽代碼

Updated with /lastcallers from ENiGMA.

root 4 年之前
父節點
當前提交
049431a93b
共有 2 個文件被更改,包括 71 次插入1 次删除
  1. 43 1
      messages.py
  2. 28 0
      templates/lastcallers.html

+ 43 - 1
messages.py

@@ -9,6 +9,7 @@ import os
 import textwrap
 import sys
 import re
+import json
 
 def rot47(s):
     x = ''
@@ -243,7 +244,6 @@ def display_ansi(area, msgno):
     response.headers.set("Content-Type", "image/png")
     return response
 
-
 # <img alt="My Image" src="data:image/png;base64,
 @app.route(base_path + "/read/<area>/<int:msgno>")
 def display_message(area, msgno):
@@ -314,3 +314,45 @@ def display_message(area, msgno):
         base_path=base_path,
         title="Message {0}".format(msgno),
     )
+
+# LAST CALLERS PROCESSING
+
[email protected](timeout=60)
+def last_bbs_callers():
+    dbsystem = sqlite3.connect("db/system.sqlite3")
+    dbsys = dbsystem.cursor()
+    dbuser = sqlite3.connect("db/user.sqlite3")
+    dbusr = dbuser.cursor()
+    # step 1:  get list of last 25 callers
+    users = []
+    lookup = set()
+    for row in dbsys.execute('select id,timestamp,log_value from system_event_log where log_name="user_login_history" order by id desc limit 25;'):
+        # Ok!
+        # row[0], row[1], row[2]
+        jdata = json.loads(row[2])
+        caller = { 'logid': row[0], 'timestamp': row[1], 'userId': jdata['userId'] }
+        lookup.add(jdata['userId'])
+        users.append(caller)
+    # Ok, we have a list of userIds to look up.
+    # just look all 10 of them up.  :P
+    for row in dbusr.execute('select U.id,U.user_name, (SELECT prop_value FROM user_property AS UP WHERE U.id=user_id AND prop_name="location") as location from user as U;'):
+        (userid, username, location) = row
+        if userid in lookup:
+            # Ok, we have something!
+            for u in users:
+                if u['userId'] == userid:
+                    u['username'] = username
+                    u['location'] = location
+
+        
+    return users;
+
[email protected]("/lastcallers")
+def display_lastcallers():
+    users=last_bbs_callers()
+    return render_template(
+        "lastcallers.html",
+        users=users
+    )
+
+    

+ 28 - 0
templates/lastcallers.html

@@ -0,0 +1,28 @@
+{% extends 'base.html' %}
+
+{% block header %}
+<h1>BZ&BZ Last callers</h1>
+{% endblock %}
+
+{% block content %}
+
+<div class="large-12 cell">
+
+<div class="grid-x padding-x">
+<div class="large-4 cell head">Timestamp</div>
+<div class="large-2 cell head">Username</div>
+<div class="large-2 cell head">Location</div>
+</div>
+
+{% for user in users %}
+<div class="grid-x padding-x">
+<div class="large-4 cell">{{ user.timestamp }}</div>
+<div class="large-2 cell">{{ user.username }}</div>
+<div class="large-2 cell">{{ user.location }}</div>
+</div>
+{% endfor %}
+
+</div>
+
+
+{% endblock %}