summaryrefslogtreecommitdiff
path: root/src/Bridge.php
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-04-30 16:41:26 +0000
committeruckelman <uckelman@nomic.net>2010-04-30 16:41:26 +0000
commit07ad87efa0f7f5ff0e503efb16c26314ffb1d31f (patch)
treeb96636855e9fba5dfa55af67cb78764b15dd4855 /src/Bridge.php
parent03c94fad7650f4075ee2d289f8b985cd8f8daef7 (diff)
Refactored message registration.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6783 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src/Bridge.php')
-rw-r--r--src/Bridge.php36
1 files changed, 17 insertions, 19 deletions
diff --git a/src/Bridge.php b/src/Bridge.php
index 7f8996c..719e91c 100644
--- a/src/Bridge.php
+++ b/src/Bridge.php
@@ -88,43 +88,41 @@ class Bridge {
return $this->db->lastInsertId();
}
- public function registerMessage($postId, $messageId, $inReplyTo) {
+ public function registerByEditId($editId, $messageId, $inReplyTo) {
throw_if_null($messageId);
- $sql = 'INSERT IGNORE INTO posts ' .
- '(post_id, message_id, in_reply_to) ' .
- 'VALUES (' . ($postId === null ? 'NULL' : $postId) . ', '
- . $this->db->quote($messageId) . ', '
- . $this->quote($inReplyTo) . ')';
+ $sql = 'UPDATE posts SET ' .
+ 'message_id = ' . $this->db->quote($messageId) . ', ' .
+ 'in_reply_to = ' . $this->quote($inReplyTo) . ') ' .
+ 'WHERE edit_id = ' . $editId;
$count = $this->db->exec($sql);
return $count == 1;
}
- public function unregisterMessage($messageId) {
+ public function registerByMessageId($messageId, $inReplyTo) {
throw_if_null($messageId);
- $sql = 'DELETE FROM posts WHERE message_id = ' .
- $this->db->quote($messageId);
+ $sql = 'INSERT IGNORE INTO posts ' .
+ '(message_id, in_reply_to) ' .
+ 'VALUES (' .
+ $this->db->quote($messageId) . ', ' .
+ $this->quote($inReplyTo) .
+ ')'
$count = $this->db->exec($sql);
-
- if ($count != 1) {
- throw new Exception('Failed to delete message id: ' . $messageId);
- }
+ return $count == 1 ? $this->db->lastInsertId() : false;
}
- public function unregisterPost($postId) {
- throw_if_null($postId);
+ public function unregisterMessage($editId) {
+ throw_if_null($messageId);
-# FIXME: this might need adjusting now that there can be more than one
-# message id per post id.
- $sql = 'DELETE FROM posts WHERE post_id = ' . $postId;
+ $sql = 'DELETE FROM posts WHERE edit_id = ' . $editId;
$count = $this->db->exec($sql);
if ($count != 1) {
- throw new Exception('Failed to delete post id: ' . $postId);
+ throw new Exception('Failed to delete edit id: ' . $editId);
}
}