blob: d9c3afc5e70ef758c8ebbf1174a8b7e13745ea77 (
plain)
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
|
<?php
/**
* Implements EjabberdAuthBridge.
*/
class BridgeSession extends EjabberdAuthBridge {
function __construct($pdo, $config) {
$this->db = $pdo;
$this->timeout = $config['timeout'];
$this->table = $config['mysql']['tablename'];
$this->_isuser = $this->db->prepare(sprintf('SELECT COUNT(*) FROM `%s` WHERE `username` = :user AND `created` >= :limit;', $this->table));
$this->_auth = $this->db->prepare(sprintf('DELETE FROM `%s` WHERE `username` = :user AND `secret` = :secret AND `created` >= :limit;', $this->table));
$this->_prune = $this->db->prepare(sprintf('DELETE COUNT(*) FROM `%s` WHERE `created` < :limit;', $this->table));
}
function prune() {
$this->_prune->execute([':limit' => time() - $this->timeout]);
}
function isuser($username, $server) {
$this->prune();
$this->_isuser->execute([':user' => $username, ':limit' => time() - $this->timeout]);
return $this->_isuser->fetch()[0] > 0;
}
function auth($username, $server, $password) {
$this->prune();
$this->_auth->execute([':user' => $username, ':secret' => $password, ':limit' => time() - $this->timeout]);
return $this->_auth->rowCount() > 0;
}
}
|