summaryrefslogtreecommitdiff
path: root/plugins/phpbb3/BridgePhpBB3.php
diff options
context:
space:
mode:
authorChristoph Burschka2012-11-01 00:01:08 +0100
committerChristoph Burschka2012-11-01 00:01:08 +0100
commit1a1ec38c95a25143bea1e3da38c65a60437d7883 (patch)
tree4784357112e6fce315bef1fc21848df7a1b50154 /plugins/phpbb3/BridgePhpBB3.php
parentHuge overhaul to deal with the global variables more cleanly. Avoid globals w... (diff)
downloadejabberd-auth-php-1a1ec38c95a25143bea1e3da38c65a60437d7883.tar.gz
Huge overhaul to deal with the global variables more cleanly. Avoid globals wherever possible, to avoid collisions with CMS systems.
Diffstat (limited to 'plugins/phpbb3/BridgePhpBB3.php')
-rw-r--r--plugins/phpbb3/BridgePhpBB3.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/plugins/phpbb3/BridgePhpBB3.php b/plugins/phpbb3/BridgePhpBB3.php
new file mode 100644
index 0000000..bc7d8c8
--- /dev/null
+++ b/plugins/phpbb3/BridgePhpBB3.php
@@ -0,0 +1,36 @@
+<?php
+
+class BridgePhpBB3 extends EjabberdAuthBridge {
+ var $auth;
+ var $db;
+
+ function __construct($auth, $db) {
+ $this->auth = $auth;
+ $this->db = $db;
+ }
+
+ function isuser($username, $server) {
+ $username_clean = utf8_clean_string($username);
+ $row = $this->db->sql_fetchrow($this->db->sql_query('SELECT username FROM ' . USERS_TABLE . ' WHERE username_clean = ' . "'" . $this->db->sql_escape($username_clean) . "'" . ';'));
+ return !empty($row);
+ }
+
+ function auth($username, $server, $password) {
+ $result = $this->auth->login($username, $password);
+ return $result['status'] == LOGIN_SUCCESS;
+ }
+
+ // The following functions are disabled. This script will not change the phpBB user database.
+
+ function setpass($username, $server, $password) {
+ return FALSE;
+ }
+
+ function tryregister($username, $server, $password) {
+ return FALSE;
+ }
+
+ function removeuser($username, $server) {
+ return FALSE;
+ }
+}