|
@@ -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
|
|
|
+ )
|
|
|
+
|
|
|
+
|