1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
|
# Copyright (c) 2002, 2003, 2004 Joao Prado Maia. See the LICENSE file for more information.
import MySQLdb
import time
from mimify import mime_encode_header, mime_decode_header
import re
import settings
import md5
import mime
import strutil
# patch by Andreas Wegmann <Andreas.Wegmann@VSA.de> to fix the handling of unusual encodings of messages
q_quote_multiline = re.compile("=\?(.*?)\?[qQ]\?(.*?)\?=.*?=\?\\1\?[qQ]\?(.*?)\?=", re.M | re.S)
# we don't need to compile the regexps everytime..
doubleline_regexp = re.compile("^\.\.", re.M)
singleline_regexp = re.compile("^\.", re.M)
from_regexp = re.compile("^From:(.*)<(.*)>", re.M)
subject_regexp = re.compile("^Subject:(.*)", re.M)
references_regexp = re.compile("^References:(.*)<(.*)>", re.M)
lines_regexp = re.compile("^Lines:(.*)", re.M)
class Papercut_Storage:
"""
Storage Backend interface for the nuke port of phpBB (http://www.phpnuke.org)
This is the interface for PHPNuke/NukeBB running on a MySQL database. For more
information on the structure of the 'storage' package, please refer to the
__init__.py available on the 'storage' sub-directory.
"""
def __init__(self):
self.conn = MySQLdb.connect(host=settings.dbhost, db=settings.dbname, user=settings.dbuser, passwd=settings.dbpass)
self.cursor = self.conn.cursor()
def get_message_body(self, headers):
"""Parses and returns the most appropriate message body possible.
The function tries to extract the plaintext version of a MIME based
message, and if it is not available then it returns the html version.
"""
return mime.get_text_message(headers)
def quote_string(self, text):
"""Quotes strings the MySQL way."""
return text.replace("'", "\\'")
def make_bbcode_uid(self):
return md5.new(str(time.clock())).hexdigest()
def encode_ip(self, dotquad_ip):
t = dotquad_ip.split('.')
return '%02x%02x%02x%02x' % (int(t[0]), int(t[1]), int(t[2]), int(t[3]))
def group_exists(self, group_name):
stmt = """
SELECT
COUNT(*) AS total
FROM
%sforums
WHERE
LOWER(nntp_group_name)=LOWER('%s')""" % (settings.phpbb_table_prefix, group_name)
self.cursor.execute(stmt)
return self.cursor.fetchone()[0]
def article_exists(self, group_name, style, range):
forum_id = self.get_forum(group_name)
stmt = """
SELECT
COUNT(*) AS total
FROM
%sposts
WHERE
forum_id=%s""" % (settings.phpbb_table_prefix, forum_id)
if style == 'range':
stmt = "%s AND post_id > %s" % (stmt, range[0])
if len(range) == 2:
stmt = "%s AND post_id < %s" % (stmt, range[1])
else:
stmt = "%s AND post_id = %s" % (stmt, range[0])
self.cursor.execute(stmt)
return self.cursor.fetchone()[0]
def get_first_article(self, group_name):
forum_id = self.get_forum(group_name)
stmt = """
SELECT
IF(MIN(post_id) IS NULL, 0, MIN(post_id)) AS first_article
FROM
%sposts
WHERE
forum_id=%s""" % (settings.phpbb_table_prefix, forum_id)
num_rows = self.cursor.execute(stmt)
return self.cursor.fetchone()[0]
def get_group_stats(self, group_name):
total, max, min = self.get_forum_stats(self.get_forum(group_name))
return (total, min, max, group_name)
def get_forum_stats(self, forum_id):
stmt = """
SELECT
COUNT(post_id) AS total,
IF(MAX(post_id) IS NULL, 0, MAX(post_id)) AS maximum,
IF(MIN(post_id) IS NULL, 0, MIN(post_id)) AS minimum
FROM
%sposts
WHERE
forum_id=%s""" % (settings.phpbb_table_prefix, forum_id)
num_rows = self.cursor.execute(stmt)
return self.cursor.fetchone()
def get_forum(self, group_name):
stmt = """
SELECT
forum_id
FROM
%sforums
WHERE
nntp_group_name='%s'""" % (settings.phpbb_table_prefix, group_name)
self.cursor.execute(stmt)
return self.cursor.fetchone()[0]
def get_message_id(self, msg_num, group):
return '<%s@%s>' % (msg_num, group)
def get_NEWGROUPS(self, ts, group='%'):
# since phpBB doesn't record when each forum was created, we have no way of knowing this...
return None
def get_NEWNEWS(self, ts, group='*'):
stmt = """
SELECT
nntp_group_name,
forum_id
FROM
%sforums
WHERE
nntp_group_name LIKE '%s'
ORDER BY
nntp_group_name ASC""" % (settings.phpbb_table_prefix, group.replace('*', '%'))
self.cursor.execute(stmt)
result = list(self.cursor.fetchall())
articles = []
for group_name, forum_id in result:
stmt = """
SELECT
post_id
FROM
%sposts
WHERE
forum_id=%s AND
post_time >= %s""" % (settings.phpbb_table_prefix, forum_id, ts)
num_rows = self.cursor.execute(stmt)
if num_rows == 0:
continue
ids = list(self.cursor.fetchall())
for id in ids:
articles.append("<%s@%s>" % (id, group_name))
if len(articles) == 0:
return ''
else:
return "\r\n".join(articles)
def get_GROUP(self, group_name):
forum_id = self.get_forum(group_name)
result = self.get_forum_stats(forum_id)
return (result[0], result[2], result[1])
def get_LIST(self, username=""):
stmt = """
SELECT
nntp_group_name,
forum_id
FROM
%sforums
WHERE
LENGTH(nntp_group_name) > 0
ORDER BY
nntp_group_name ASC""" % (settings.phpbb_table_prefix)
self.cursor.execute(stmt)
result = list(self.cursor.fetchall())
if len(result) == 0:
return ""
else:
lists = []
for group_name, forum_id in result:
total, maximum, minimum = self.get_forum_stats(forum_id)
if settings.server_type == 'read-only':
lists.append("%s %s %s n" % (group_name, maximum, minimum))
else:
lists.append("%s %s %s y" % (group_name, maximum, minimum))
return "\r\n".join(lists)
def get_STAT(self, group_name, id):
forum_id = self.get_forum(group_name)
stmt = """
SELECT
post_id
FROM
%sposts
WHERE
forum_id=%s AND
post_id=%s""" % (settings.phpbb_table_prefix, forum_id, id)
return self.cursor.execute(stmt)
def get_ARTICLE(self, group_name, id):
forum_id = self.get_forum(group_name)
prefix = settings.phpbb_table_prefix
nuke_prefix = settings.nuke_table_prefix
stmt = """
SELECT
A.post_id,
C.username,
C.user_email,
CASE WHEN B.post_subject = '' THEN CONCAT('Re: ', E.topic_title) ELSE B.post_subject END,
A.post_time,
B.post_text,
A.topic_id,
A.post_username,
MIN(D.post_id)
FROM
%sposts A,
%sposts_text B
INNER JOIN
%sposts D
ON
D.topic_id=A.topic_id
INNER JOIN
%stopics E
ON
A.topic_id = E.topic_id
LEFT JOIN
%susers C
ON
A.poster_id=C.user_id
WHERE
A.forum_id=%s AND
A.post_id=B.post_id AND
A.post_id=%s
GROUP BY
D.topic_id""" % (prefix, prefix, prefix, prefix, nuke_prefix, forum_id, id)
num_rows = self.cursor.execute(stmt)
if num_rows == 0:
return None
result = list(self.cursor.fetchone())
# check if there is a registered user
if result[7] == '':
if len(result[2]) == 0:
author = result[1]
else:
author = "%s <%s>" % (result[1], result[2])
else:
author = result[7]
formatted_time = strutil.get_formatted_time(time.localtime(result[4]))
headers = []
headers.append("Path: %s" % (settings.nntp_hostname))
headers.append("From: %s" % (author))
headers.append("Newsgroups: %s" % (group_name))
headers.append("Date: %s" % (formatted_time))
headers.append("Subject: %s" % (result[3]))
headers.append("Message-ID: <%s@%s>" % (result[0], group_name))
headers.append("Xref: %s %s:%s" % (settings.nntp_hostname, group_name, result[0]))
if result[8] != result[0]:
headers.append("References: <%s@%s>" % (result[8], group_name))
return ("\r\n".join(headers), strutil.format_body(result[5]))
def get_LAST(self, group_name, current_id):
forum_id = self.get_forum(group_name)
stmt = """
SELECT
post_id
FROM
%sposts
WHERE
post_id < %s AND
forum_id=%s
ORDER BY
post_id DESC
LIMIT 0, 1""" % (settings.phpbb_table_prefix, current_id, forum_id)
num_rows = self.cursor.execute(stmt)
if num_rows == 0:
return None
return self.cursor.fetchone()[0]
def get_NEXT(self, group_name, current_id):
forum_id = self.get_forum(group_name)
stmt = """
SELECT
post_id
FROM
%sposts
WHERE
forum_id=%s AND
post_id > %s
ORDER BY
post_id ASC
LIMIT 0, 1""" % (settings.phpbb_table_prefix, forum_id, current_id)
num_rows = self.cursor.execute(stmt)
if num_rows == 0:
return None
return self.cursor.fetchone()[0]
def get_HEAD(self, group_name, id):
forum_id = self.get_forum(group_name)
prefix = settings.phpbb_table_prefix
nuke_prefix = settings.nuke_table_prefix
stmt = """
SELECT
A.post_id,
C.username,
C.user_email,
CASE WHEN B.post_subject = '' THEN CONCAT('Re: ', E.topic_title) ELSE B.post_subject END,
A.post_time,
A.topic_id,
A.post_username,
MIN(D.post_id)
FROM
%sposts A,
%sposts_text B
INNER JOIN
%stopics E
ON
A.topic_id = E.topic_id
INNER JOIN
%sposts D
ON
D.topic_id=A.topic_id
LEFT JOIN
%susers C
ON
A.poster_id=C.user_id
WHERE
A.forum_id=%s AND
A.post_id=B.post_id AND
A.post_id=%s
GROUP BY
D.topic_id""" % (prefix, prefix, prefix, prefix, nuke_prefix, forum_id, id)
num_rows = self.cursor.execute(stmt)
if num_rows == 0:
return None
result = list(self.cursor.fetchone())
# check if there is a registered user
if len(result[6]) == 0 or result[6] == '':
if len(result[2]) == 0:
author = result[1]
else:
author = "%s <%s>" % (result[1], result[2])
else:
author = result[6]
formatted_time = strutil.get_formatted_time(time.localtime(result[4]))
headers = []
headers.append("Path: %s" % (settings.nntp_hostname))
headers.append("From: %s" % (author))
headers.append("Newsgroups: %s" % (group_name))
headers.append("Date: %s" % (formatted_time))
headers.append("Subject: %s" % (result[3]))
headers.append("Message-ID: <%s@%s>" % (result[0], group_name))
headers.append("Xref: %s %s:%s" % (settings.nntp_hostname, group_name, result[0]))
if result[7] != result[0]:
headers.append("References: <%s@%s>" % (result[7], group_name))
return "\r\n".join(headers)
def get_BODY(self, group_name, id):
forum_id = self.get_forum(group_name)
prefix = settings.phpbb_table_prefix
stmt = """
SELECT
B.post_text
FROM
%sposts A,
%sposts_text B
WHERE
A.post_id=B.post_id AND
A.forum_id=%s AND
A.post_id=%s""" % (prefix, prefix, forum_id, id)
num_rows = self.cursor.execute(stmt)
if num_rows == 0:
return None
else:
return strutil.format_body(self.cursor.fetchone()[0])
def get_XOVER(self, group_name, start_id, end_id='ggg'):
forum_id = self.get_forum(group_name)
prefix = settings.phpbb_table_prefix
nuke_prefix = settings.nuke_table_prefix
stmt = """
SELECT
A.post_id,
A.topic_id,
C.username,
C.user_email,
CASE WHEN B.post_subject = '' THEN CONCAT('Re: ', D.topic_title) ELSE B.post_subject END,
A.post_time,
B.post_text,
A.post_username
FROM
%sposts A,
%sposts_text B
LEFT JOIN
%susers C
ON
A.poster_id=C.user_id
LEFT JOIN
%stopics D
ON
A.topic_id = D.topic_id
WHERE
A.post_id=B.post_id AND
A.forum_id=%s AND
A.post_id >= %s""" % (prefix, prefix, nuke_prefix, prefix, forum_id, start_id)
if end_id != 'ggg':
stmt = "%s AND A.post_id <= %s" % (stmt, end_id)
self.cursor.execute(stmt)
result = list(self.cursor.fetchall())
overviews = []
for row in result:
if row[7] == '':
if row[3] == '':
author = row[2]
else:
author = "%s <%s>" % (row[2], row[3])
else:
author = row[7]
formatted_time = strutil.get_formatted_time(time.localtime(row[5]))
message_id = "<%s@%s>" % (row[0], group_name)
line_count = len(row[6].split('\n'))
xref = 'Xref: %s %s:%s' % (settings.nntp_hostname, group_name, row[0])
if row[1] != row[0]:
reference = "<%s@%s>" % (row[1], group_name)
else:
reference = ""
# message_number <tab> subject <tab> author <tab> date <tab> message_id <tab> reference <tab> bytes <tab> lines <tab> xref
overviews.append("%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s" % (row[0], row[4], author, formatted_time, message_id, reference, len(strutil.format_body(row[6])), line_count, xref))
return "\r\n".join(overviews)
def get_XPAT(self, group_name, header, pattern, start_id, end_id='ggg'):
# XXX: need to actually check for the header values being passed as
# XXX: not all header names map to column names on the tables
forum_id = self.get_forum(group_name)
prefix = settings.phpbb_table_prefix
nuke_prefix = settings.nuke_table_prefix
stmt = """
SELECT
A.post_id,
A.topic_id,
C.username,
C.user_email,
CASE WHEN B.post_subject = '' THEN CONCAT('Re: ', D.topic_title) ELSE B.post_subject END,
A.post_time,
B.post_text,
A.post_username
FROM
%sposts A,
%sposts_text B
LEFT JOIN
%susers C
ON
A.poster_id=C.user_id
LEFT JOIN
%stopics D
ON
A.topic_id = D.topic_id
WHERE
A.forum_id=%s AND
%s REGEXP '%s' AND
A.post_id = B.post_id AND
A.post_id >= %s""" % (prefix, prefix, nuke_prefix, prefix, forum_id, header, strutil.format_wildcards(pattern), start_id)
if end_id != 'ggg':
stmt = "%s AND A.post_id <= %s" % (stmt, end_id)
num_rows = self.cursor.execute(stmt)
if num_rows == 0:
return None
result = list(self.cursor.fetchall())
hdrs = []
for row in result:
if header.upper() == 'SUBJECT':
hdrs.append('%s %s' % (row[0], row[4]))
elif header.upper() == 'FROM':
# XXX: totally broken with empty values for the email address
hdrs.append('%s %s <%s>' % (row[0], row[2], row[3]))
elif header.upper() == 'DATE':
hdrs.append('%s %s' % (row[0], strutil.get_formatted_time(time.localtime(result[5]))))
elif header.upper() == 'MESSAGE-ID':
hdrs.append('%s <%s@%s>' % (row[0], row[0], group_name))
elif (header.upper() == 'REFERENCES') and (row[1] != 0):
hdrs.append('%s <%s@%s>' % (row[0], row[1], group_name))
elif header.upper() == 'BYTES':
hdrs.append('%s %s' % (row[0], len(row[6])))
elif header.upper() == 'LINES':
hdrs.append('%s %s' % (row[0], len(row[6].split('\n'))))
elif header.upper() == 'XREF':
hdrs.append('%s %s %s:%s' % (row[0], settings.nntp_hostname, group_name, row[0]))
if len(hdrs) == 0:
return ""
else:
return "\r\n".join(hdrs)
def get_LISTGROUP(self, group_name):
forum_id = self.get_forum(group_name)
stmt = """
SELECT
post_id
FROM
%sposts
WHERE
forum_id=%s
ORDER BY
post_id ASC""" % (settings.phpbb_table_prefix, forum_id)
self.cursor.execute(stmt)
result = list(self.cursor.fetchall())
return "\r\n".join(["%s" % k for k in result])
def get_XGTITLE(self, pattern=None):
stmt = """
SELECT
nntp_group_name,
forum_desc
FROM
%sforums
WHERE
LENGTH(nntp_group_name) > 0""" % (settings.phpbb_table_prefix)
if pattern != None:
stmt = stmt + """ AND
nntp_group_name REGEXP '%s'""" % (strutil.format_wildcards(pattern))
stmt = stmt + """
ORDER BY
nntp_group_name ASC"""
self.cursor.execute(stmt)
result = list(self.cursor.fetchall())
return "\r\n".join(["%s %s" % (k, v) for k, v in result])
def get_XHDR(self, group_name, header, style, range):
forum_id = self.get_forum(group_name)
prefix = settings.phpbb_table_prefix
nuke_prefix = settings.nuke_table_prefix
stmt = """
SELECT
A.post_id,
A.topic_id,
D.username,
D.user_email,
CASE WHEN B.post_subject = '' THEN CONCAT('Re: ', C.topic_title) ELSE B.post_subject END,
A.post_time,
B.post_text,
A.post_username
FROM
%sposts A,
%sposts_text B
LEFT JOIN
%stopics C
ON
A.topic_id = C.topic_id
LEFT JOIN
%susers D
ON
A.poster_id=D.user_id
WHERE
A.forum_id=%s AND
A.post_id = B.post_id AND """ % (prefix, prefix, prefix, nuke_prefix, forum_id)
if style == 'range':
stmt = '%s A.post_id >= %s' % (stmt, range[0])
if len(range) == 2:
stmt = '%s AND A.post_id <= %s' % (stmt, range[1])
else:
stmt = '%s A.post_id = %s' % (stmt, range[0])
if self.cursor.execute(stmt) == 0:
return None
result = self.cursor.fetchall()
hdrs = []
for row in result:
if header.upper() == 'SUBJECT':
hdrs.append('%s %s' % (row[0], row[4]))
elif header.upper() == 'FROM':
hdrs.append('%s %s <%s>' % (row[0], row[2], row[3]))
elif header.upper() == 'DATE':
hdrs.append('%s %s' % (row[0], strutil.get_formatted_time(time.localtime(result[5]))))
elif header.upper() == 'MESSAGE-ID':
hdrs.append('%s <%s@%s>' % (row[0], row[0], group_name))
elif (header.upper() == 'REFERENCES') and (row[1] != 0):
hdrs.append('%s <%s@%s>' % (row[0], row[1], group_name))
elif header.upper() == 'BYTES':
hdrs.append('%s %s' % (row[0], len(row[6])))
elif header.upper() == 'LINES':
hdrs.append('%s %s' % (row[0], len(row[6].split('\n'))))
elif header.upper() == 'XREF':
hdrs.append('%s %s %s:%s' % (row[0], settings.nntp_hostname, group_name, row[0]))
if len(hdrs) == 0:
return ""
else:
return "\r\n".join(hdrs)
def do_POST(self, group_name, lines, ip_address, username=''):
forum_id = self.get_forum(group_name)
prefix = settings.phpbb_table_prefix
nuke_prefix = settings.nuke_table_prefix
# patch by Andreas Wegmann <Andreas.Wegmann@VSA.de> to fix the handling of unusual encodings of messages
lines = mime_decode_header(re.sub(q_quote_multiline, "=?\\1?Q?\\2\\3?=", lines))
body = self.get_message_body(lines)
author, email = from_regexp.search(lines, 0).groups()
subject = subject_regexp.search(lines, 0).groups()[0].strip()
# get the authentication information now
if username != '':
stmt = """
SELECT
user_id
FROM
%susers
WHERE
username='%s'""" % (nuke_prefix, username)
num_rows = self.cursor.execute(stmt)
if num_rows == 0:
poster_id = -1
else:
poster_id = self.cursor.fetchone()[0]
post_username = ''
else:
poster_id = -1
post_username = author
if lines.find('References') != -1:
# get the 'modifystamp' value from the parent (if any)
references = references_regexp.search(lines, 0).groups()
parent_id, void = references[-1].strip().split('@')
stmt = """
SELECT
topic_id
FROM
%sposts
WHERE
post_id=%s
GROUP BY
post_id""" % (prefix, parent_id)
num_rows = self.cursor.execute(stmt)
if num_rows == 0:
return None
thread_id = self.cursor.fetchone()[0]
else:
# create a new topic
stmt = """
INSERT INTO
%stopics
(
forum_id,
topic_title,
topic_poster,
topic_time,
topic_status,
topic_vote,
topic_type
) VALUES (
%s,
'%s',
%s,
UNIX_TIMESTAMP(),
0,
0,
0
)""" % (prefix, forum_id, self.quote_string(subject), poster_id)
self.cursor.execute(stmt)
thread_id = self.conn.insert_id()
stmt = """
INSERT INTO
%sposts
(
topic_id,
forum_id,
poster_id,
post_time,
poster_ip,
post_username,
enable_bbcode,
enable_html,
enable_smilies,
enable_sig
) VALUES (
%s,
%s,
%s,
UNIX_TIMESTAMP(),
'%s',
'%s',
1,
0,
1,
0
)""" % (prefix, thread_id, forum_id, poster_id, self.encode_ip(ip_address), post_username)
self.cursor.execute(stmt)
new_id = self.conn.insert_id()
if not new_id:
return None
else:
# insert into the '*posts_text' table
stmt = """
INSERT INTO
%sposts_text
(
post_id,
bbcode_uid,
post_subject,
post_text
) VALUES (
%s,
'%s',
'%s',
'%s'
)""" % (prefix, new_id, self.make_bbcode_uid(), self.quote_string(subject), self.quote_string(body))
if not self.cursor.execute(stmt):
# delete from 'topics' and 'posts' tables before returning...
stmt = """
DELETE FROM
%stopics
WHERE
topic_id=%s""" % (prefix, thread_id)
self.cursor.execute(stmt)
stmt = """
DELETE FROM
%sposts
WHERE
post_id=%s""" % (prefix, new_id)
self.cursor.execute(stmt)
return None
else:
if lines.find('References') != -1:
# update the total number of posts in the forum
stmt = """
UPDATE
%sforums
SET
forum_posts=forum_posts+1,
forum_last_post_id=%s
WHERE
forum_id=%s
""" % (settings.phpbb_table_prefix, new_id, forum_id)
self.cursor.execute(stmt)
else:
# update the total number of topics and posts in the forum
stmt = """
UPDATE
%sforums
SET
forum_topics=forum_topics+1,
forum_posts=forum_posts+1,
forum_last_post_id=%s
WHERE
forum_id=%s
""" % (settings.phpbb_table_prefix, new_id, forum_id)
self.cursor.execute(stmt)
# update the user's post count, if this is indeed a real user
if poster_id != -1:
stmt = """
UPDATE
%susers
SET
user_posts=user_posts+1
WHERE
user_id=%s""" % (nuke_prefix, poster_id)
self.cursor.execute(stmt)
# setup last post on the topic thread (Patricio Anguita <pda@ing.puc.cl>)
stmt = """
UPDATE
%stopics
SET
topic_replies=topic_replies+1,
topic_last_post_id=%s
WHERE
topic_id=%s""" % (prefix, new_id, thread_id)
self.cursor.execute(stmt)
# if this is the first post on the thread.. (Patricio Anguita <pda@ing.puc.cl>)
if lines.find('References') == -1:
stmt = """
UPDATE
%stopics
SET
topic_first_post_id=%s
WHERE
topic_id=%s AND
topic_first_post_id=0""" % (prefix, new_id, thread_id)
self.cursor.execute(stmt)
return 1
|