diff --git a/Bantracker/__init__.py b/Bantracker/__init__.py index 62663af..2b26bf7 100644 --- a/Bantracker/__init__.py +++ b/Bantracker/__init__.py @@ -21,7 +21,7 @@ import supybot.world as world __version__ = "0.3.1" __author__ = supybot.Author("Dennis Kaarsemaker","Seveas","dennis@kaarsemaker.net") __contributors__ = {supybot.Author("Terence Simpson", "stdin", "stdin@stdin.me.uk"): ['Alow configurable bantracker URL']} -__url__ = 'https://ubotu.ubuntu-nl.org' +__url__ = 'http://ubottu.com/' import config reload(config) diff --git a/Bantracker/bans.cgi b/Bantracker/bans.cgi index c8a2037..71973f5 100755 --- a/Bantracker/bans.cgi +++ b/Bantracker/bans.cgi @@ -15,15 +15,12 @@ import sys # This needs to be set to the location of the commoncgi.py file -sys.path.append('/home/ubottu/bot/plugins/') +sys.path.append('/var/www/bot') from commoncgi import * ### Variables -# Location of the bans database -db = '/home/ubottu/data/bans.db' -# Number of bans to show per page +db = '/home/bot/data/bans.db' num_per_page = 100 -### You shouldn't have to change anything under this line ### con = sqlite.connect(db) cur = con.cursor() @@ -33,18 +30,10 @@ error = '' user = None # Delete old sessions -# FAIL! try: - cur.execute("DELETE FROM sessions WHERE time < %d", int(time.mktime(time.gmtime())) - 2592000 * 3) - con.commit() - con.close() + cur.execute("""DELETE FROM sessions WHERE time < %d""", int(time.time()) - 2592000 * 3) except: - try: - con.commit() - except: - pass - finally: - con.close() + pass # Session handling if form.has_key('sess'): @@ -52,15 +41,10 @@ if form.has_key('sess'): if cookie.has_key('sess'): try: sess = cookie['sess'].value - con = sqlite.connect(db) - cur = con.cursor() - cur.execute("SELECT user FROM sessions WHERE session_id=%s",sess) + cur.execute("""SELECT user FROM sessions WHERE session_id=%s""",sess) user = cur.fetchall()[0][0] - con.commit() - con.close() except: con.commit() - con.close() pass if not user: @@ -70,12 +54,9 @@ if not user: # Log if form.has_key('log'): - con = sqlite.connect(db) - cur = con.cursor() - cur.execute("SELECT log FROM bans WHERE id=%s", form['log'].value) + cur.execute("""SELECT log FROM bans WHERE id=%s""", form['log'].value) log = cur.fetchall() con.commit() - con.close() if form.has_key('mark'): marked = form['mark'].value lines = log[0][0].splitlines() @@ -91,19 +72,12 @@ if form.has_key('log'): # Main page # Process comments if form.has_key('comment') and form.has_key('comment_id') and user: - con = sqlite.connect(db) - cur = con.cursor() - cur.execute("SELECT ban_id FROM comments WHERE ban_id=%s and comment=%s", (form['comment_id'].value, form['comment'].value)) + cur.execute("""SELECT ban_id FROM comments WHERE ban_id=%s and comment=%s""", (form['comment_id'].value, form['comment'].value)) comm = cur.fetchall() - con.commit() - con.close() if not len(comm): - con = sqlite.connect(db) - cur = con.cursor() - cur.execute("INSERT INTO comments (ban_id, who, comment, time) VALUES (%s, %s, %s, %s)", + cur.execute("""INSERT INTO comments (ban_id, who, comment, time) VALUES (%s, %s, %s, %s)""", (form['comment_id'].value,user,form['comment'].value,pickle.dumps(datetime.datetime.now(pytz.UTC)))) - con.commit() - con.close() + con.commit() # Write the page print '
' @@ -180,14 +154,11 @@ if not form.has_key('query'): if form.has_key('sort'): sort='&sort=' + form['sort'].value print '
·' - con = sqlite.connect(db) - cur = con.cursor() cur.execute('SELECT COUNT(id) FROM bans') - nump = math.ceil(int(cur.fetchall()[0][0]) / float(num_per_page)) - for i in range(int(nump)): + nump = int(math.ceil(int(cur.fetchall()[0][0]) / float(num_per_page))) + for i in range(nump): print '%d ·' % (i, sort, i+1) print '
' - con.close() # Empty log div, will be filled with AJAX print '
 
' @@ -206,11 +177,8 @@ for h in [['Channel',0], ['Nick/Mask',1], ['Operator',2], ['Time',6]]: print 'Log' # Select and filter bans -con = sqlite.connect(db) -cur = con.cursor() cur.execute("SELECT channel,mask,operator,time,removal,removal_op,id FROM bans ORDER BY id DESC") bans = cur.fetchall() -con.close() def myfilter(item, regex, kick, ban, oldban, mute, oldmute, floods, operator, channel): if operator: @@ -323,11 +291,8 @@ for b in bans[start:end]: print ' class="bg2"' print '>' print '' - con = sqlite.connect(db) - cur = con.cursor() - cur.execute("SELECT who, comment, time FROM comments WHERE ban_id = %s" % b[6]) + cur.execute("""SELECT who, comment, time FROM comments WHERE ban_id = %s""" % b[6]) comments = cur.fetchall() - con.close() if len(comments) == 0: print '(No comments) ' else: @@ -336,14 +301,15 @@ for b in bans[start:end]: print u'
%s, %s

' % \ (c[0],pickle.loads(c[2]).astimezone(tz).strftime("%b %d %Y %H:%M:%S")) if user: - print 'Add comment' % b[6] - print '
' + print """Add comment""" % b[6] + print """