From 23a2d3251d88061bce9ff02ca426b1e175767d4b Mon Sep 17 00:00:00 2001 From: uckelman Date: Sun, 21 Mar 2010 22:18:26 +0000 Subject: Added class encapsulating bridge DB. git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6628 67b53d14-2c14-4ace-a08f-0dab2b34000c --- src/Bridge.php | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/Bridge.php (limited to 'src/Bridge.php') diff --git a/src/Bridge.php b/src/Bridge.php new file mode 100644 index 0000000..ab627d7 --- /dev/null +++ b/src/Bridge.php @@ -0,0 +1,63 @@ +db = $db ? $db : + new PDO('mysql:host=' . DB_HOST . ';dbname=' . DB, DB_USER, DB_PASS); + } + + public function getPostId($messageId) { + $sql = 'SELECT post_id FROM posts' . + 'WHERE message_id = "' . $this->db->quote($message_id) . '"'; + + $result = $this->db->query($sql); + if (!$result) { + trigger_error("Unknown message id: $message_id", E_USER_ERROR); + } + + // FIXME: what to do if more than one row is returned? + $row = $result->fetch(PDO::FETCH_ASSOC); + $result->closeCursor(); + + return $row['post_id']; + } + + public function registerMessage($msg, $parentId) { + $sql = 'INSERT INTO posts' . + '(post_id, message_id, parent_message_id, references)' . + 'VALUES(' . $msg->getPostId() . ', ' + '"' . $this->db->quote($msg->getMessageId()) . '", ' + '"' . $this->db->quote() . '", ' + '"' . $this->db->quote($msg->getReferences()) . '")'; + + $count = $this->db->exec($sql); + + if ($count != 1) { + trigger_error( + 'Failed to register message: ' . $msg->getMessageId(), E_USER_ERROR + ); + } + } + + public function getDefaultForumId($list) { + $sql = 'SELECT forum_id FROM bridge' . + 'WHERE list_name = "' . $this->db->quote($list) . '"'; + + $result = $this->db->query($sql); + if (!$result) { + trigger_error("Unknown list name: $list", E_USER_ERROR); + } + + // FIXME: what to do if more than one row is returned? + $row = $result->fetch(PDO::FETCH_ASSOC); + $result->closeCursor(); + + return $row['forum_id']; + } +} + +?> -- cgit v1.2.3