Merge branch 'master' of github.com:ncoevoet/ChanTracker

This commit is contained in:
Nicolas Coevoet 2021-09-15 14:38:00 +00:00
commit 1053a2975b
2 changed files with 424 additions and 433 deletions

749
plugin.py

File diff suppressed because it is too large Load Diff

View File

@ -74,17 +74,17 @@ class MyHandler(http.server.BaseHTTPRequestHandler):
def page(self, query): def page(self, query):
def write(subtitle, body): def write(subtitle, body):
page = [ page = [
'<html style="text-align:center;font-size:1.2em;">', '<!DOCTYPE html>', '<html>', '<head>',
'<head>\n<title>BanTracker%s</title>' % (' &raquo; %s' % subtitle if subtitle else ''), '<title>BanTracker%s</title>' % (' &raquo; %s' % subtitle if subtitle else ''),
'<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />', '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />',
'<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"></link>', '<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" />',
'</head>\n<body style="margin:0.5em;width:98%;margin-left:auto;margin-right:auto;text-align:left;" class="container">' '</head>', '<body style="margin:0.5em; width:98%;" class="container">'
] + body + ['</body>\n</html>'] ] + body + ['</body>', '</html>']
self.send_response(200) self.send_response(200)
self.send_header("Content-type","text/html") self.send_header("Content-Type", "text/html")
full = '\n'.join(page) full = '\n'.join(page)
print('HTML lines %s' % len(full)) print('HTML lines %s' % len(full))
self.send_header("Content-length",len(full)) self.send_header("Content-Length", len(full))
self.end_headers() self.end_headers()
self.wfile.write(full.encode('utf-8')) self.wfile.write(full.encode('utf-8'))
@ -116,7 +116,7 @@ class MyHandler(http.server.BaseHTTPRequestHandler):
body = [ body = [
'<form action="%s">' % h, '<form action="%s">' % h,
'<p>Username: <input name="username" /></p>', '<p>Username: <input name="username" /></p>',
'<p>Password: <input name="password" type="password"/></p>', '<p>Password: <input name="password" type="password" /></p>',
'<button type="submit" class="btn btn-default">Login</button>', '<button type="submit" class="btn btn-default">Login</button>',
'</form>' '</form>'
] ]
@ -129,7 +129,7 @@ class MyHandler(http.server.BaseHTTPRequestHandler):
query = utils.web.urlunquote(query) query = utils.web.urlunquote(query)
subtitle = '' subtitle = ''
body = [ body = [
'<div class="row"><div class="col-xs-6">', '<div class="row"><div class="col-xs-6" style="width:100%; max-width:600px;">',
'<form action="%s" class="form">' % q, '<form action="%s" class="form">' % q,
'<div class="input-group">', '<div class="input-group">',
'<input type="hidden" name="hash" value="%s">' % base64string, '<input type="hidden" name="hash" value="%s">' % base64string,
@ -157,9 +157,9 @@ class MyHandler(http.server.BaseHTTPRequestHandler):
if not channels or channel in channels: if not channels or channel in channels:
body.extend([ body.extend([
'<h3>#%d</h3>' % bid, '<h3>#%d</h3>' % bid,
'<p>#%d by <a href="%s%s&%s">%s</a>' % (bid,h,q,utils.web.urlencode({'oper':oper}),oper), '<p>#%d by <a href="%s%s&amp;%s">%s</a>' % (bid,h,q,utils.web.urlencode({'oper':oper}),oper),
'in <a href="%s%s&channel=%s">%s</a>:' % (h,q,channel.split('#')[1],channel), 'in <a href="%s%s&amp;channel=%s">%s</a>:' % (h,q,channel.split('#')[1],channel),
'+%s <a href="%s%s&%s">%s</a></p>' % (kind,h,q,utils.web.urlencode({'mask':mask}),mask), '+%s <a href="%s%s&amp;%s">%s</a></p>' % (kind,h,q,utils.web.urlencode({'mask':mask}),mask),
'<p>Begin at %s</p>' % time.strftime('%Y-%m-%d %H:%M:%S GMT',time.gmtime(float(begin_at))) '<p>Begin at %s</p>' % time.strftime('%Y-%m-%d %H:%M:%S GMT',time.gmtime(float(begin_at)))
]) ])
was = float(begin_at) == float(end_at) was = float(begin_at) == float(end_at)
@ -174,7 +174,7 @@ class MyHandler(http.server.BaseHTTPRequestHandler):
else: else:
body.extend(['<p>Removed after %s' % timeElapsed(float(removed_at)-float(begin_at)), body.extend(['<p>Removed after %s' % timeElapsed(float(removed_at)-float(begin_at)),
'on %s' % time.strftime('%Y-%m-%d %H:%M:%S GMT',time.gmtime(float(removed_at))), 'on %s' % time.strftime('%Y-%m-%d %H:%M:%S GMT',time.gmtime(float(removed_at))),
'by <a href="%s%s&%s">%s</a></p>' % (h,q,utils.web.urlencode({'removed_by':removed_by}),removed_by)]) 'by <a href="%s%s&amp;%s">%s</a></p>' % (h,q,utils.web.urlencode({'removed_by':removed_by}),removed_by)])
c.execute("""SELECT full,log FROM nicks WHERE ban_id=?""",(bid,)) c.execute("""SELECT full,log FROM nicks WHERE ban_id=?""",(bid,))
r = c.fetchall() r = c.fetchall()
if len(r): if len(r):
@ -305,7 +305,7 @@ class MyHandler(http.server.BaseHTTPRequestHandler):
print('Found %s results' % len(ar)) print('Found %s results' % len(ar))
body.extend([ body.extend([
'<h3>Results <small>%s</small></h3>' % search, '<h3>Results <small>%s</small></h3>' % search,
'<div class="row"><div class="col-xs-12"><table class="table table-bordered sortable">', '<div class="row"><div class="col-xs-12"><table class="table table-bordered">',
'<thead><tr><th>ID</th><th>Channel</th><th>Operator</th><th>Type</th><th>Mask</th><th>Begin date</th><th>End date</th><th>Removed</th><th>Removed by</th></tr></thead>', '<thead><tr><th>ID</th><th>Channel</th><th>Operator</th><th>Type</th><th>Mask</th><th>Begin date</th><th>End date</th><th>Removed</th><th>Removed by</th></tr></thead>',
'<tbody>' '<tbody>'
]) ])
@ -315,11 +315,11 @@ class MyHandler(http.server.BaseHTTPRequestHandler):
s = time.strftime('%Y-%m-%d %H:%M:%S GMT',time.gmtime(float(begin_at))) s = time.strftime('%Y-%m-%d %H:%M:%S GMT',time.gmtime(float(begin_at)))
body.extend([ body.extend([
'<tr>', '<tr>',
'<td><a href="%s%s&id=%d">%d</a></td>' % (h,q,bid,bid), '<td><a href="%s%s&amp;id=%d">%d</a></td>' % (h,q,bid,bid),
'<td><a href="%s%s&channel=%s">%s</a></td>' % (h,q,channel.split('#')[1],channel), '<td><a href="%s%s&amp;channel=%s">%s</a></td>' % (h,q,channel.split('#')[1],channel),
'<td><a href="%s%s&%s">%s</a></td>' % (h,q,utils.web.urlencode({'oper':oper}),oper), '<td><a href="%s%s&amp;%s">%s</a></td>' % (h,q,utils.web.urlencode({'oper':oper}),oper),
'<td>+%s</td>' % kind, '<td>+%s</td>' % kind,
'<td><a href="%s%s&%s">%s</a></td>' % (h,q,utils.web.urlencode({'mask':mask}),mask), '<td><a href="%s%s&amp;%s">%s</a></td>' % (h,q,utils.web.urlencode({'mask':mask}),mask),
'<td>%s</td>' % s '<td>%s</td>' % s
]) ])
if end_at and end_at != begin_at: if end_at and end_at != begin_at:
@ -333,7 +333,7 @@ class MyHandler(http.server.BaseHTTPRequestHandler):
else: else:
body.append('<td></td>') body.append('<td></td>')
if removed_by: if removed_by:
body.append('<td><a href="%s%s&%s">%s</a></td>' % (h,q,utils.web.urlencode({'removed_by':removed_by}),removed_by)) body.append('<td><a href="%s%s&amp;%s">%s</a></td>' % (h,q,utils.web.urlencode({'removed_by':removed_by}),removed_by))
else: else:
body.append('<td></td>') body.append('<td></td>')
# affected = '' # affected = ''