1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/app/models/sessionx/SessionxDAO.php
2015-08-19 11:28:28 +02:00

335 lines
8.2 KiB
PHP

<?php
namespace modl;
class SessionxDAO extends SQL {
function init(Sessionx $s) {
$this->_sql = '
update sessionx
set username = :username,
password = :password,
hash = :hash,
resource = :resource,
rid = :rid,
sid = :sid,
id = :id,
port = :port,
host = :host,
domain = :domain,
config = :config,
active = :active,
start = :start,
timestamp = :timestamp,
mechanism = :mechanism
where session = :session';
$this->prepare(
'Sessionx',
array(
'session' => $s->session,
'username' => $s->username,
'password' => $s->password,
'hash' => $s->hash,
'resource' => $s->resource,
'rid' => $s->rid,
'sid' => $s->sid,
'id' => $s->id,
'port' => $s->port,
'host' => $s->host,
'domain' => $s->domain,
'config' => $s->config,
'active' => $s->active,
'start' => $s->start,
'timestamp' => $s->timestamp,
'mechanism' => $s->mechanism
)
);
$this->run('Sessionx');
if(!$this->_effective) {
$this->_sql = '
insert into sessionx
(session,
username,
password,
hash,
resource,
rid,
sid,
id,
port,
host,
domain,
config,
active,
start,
timestamp,
mechanism)
values
(:session,
:username,
:password,
:hash,
:resource,
:rid,
:sid,
:id,
:port,
:host,
:domain,
:config,
:active,
:start,
:timestamp,
:mechanism)';
$this->prepare(
'Sessionx',
array(
'session' => $s->session,
'username' => $s->username,
'password' => $s->password,
'hash' => $s->hash,
'resource' => $s->resource,
'rid' => $s->rid,
'sid' => $s->sid,
'id' => $s->id,
'port' => $s->port,
'host' => $s->host,
'domain' => $s->domain,
'config' => $s->config,
'active' => $s->active,
'start' => $s->start,
'timestamp' => $s->timestamp,
'mechanism' => $s->mechanism
)
);
$this->run('Sessionx');
}
}
function update($session, $key, $value) {
$this->_sql = '
update sessionx
set
'.$key.' = :'.$key.',
timestamp = :timestamp
where
session = :session';
$this->prepare(
'Sessionx',
array(
'session' => $session,
$key => $value,
'timestamp' => date(DATE_ISO8601)
)
);
$this->run('Sessionx');
}
function get($session) {
$this->_sql = '
select * from sessionx
where
session = :session';
$this->prepare(
'Sessionx',
array(
'session' => $session
)
);
return $this->run('Sessionx', 'item');
}
function getHash($hash) {
$this->_sql = '
select * from sessionx
where
hash = :hash';
$this->prepare(
'Sessionx',
array(
'hash' => $hash
)
);
return $this->run('Sessionx', 'item');
}
function getId($session) {
$this->_sql = '
select id from sessionx
where
session = :session';
$this->prepare(
'Sessionx',
array(
'session' => $session
)
);
$value = $this->run(null, 'array');
$value = $value[0]['id'];
$this->_sql = '
update sessionx
set
id = :id,
timestamp = :timestamp
where
session = :session';
$this->prepare(
'Sessionx',
array(
'session' => $session,
'id' => $value+1,
'timestamp' => date(DATE_ISO8601)
)
);
$this->run();
return $value;
}
function getRid($session) {
$this->_sql = '
select rid from sessionx
where
session = :session';
$this->prepare(
'Sessionx',
array(
'session' => $session
)
);
$value = $this->run(null, 'array');
$value = $value[0]['rid'];
$this->_sql = '
update sessionx
set
rid = :rid,
timestamp = :timestamp
where
session = :session';
$this->prepare(
'Sessionx',
array(
'session' => $session,
'rid' => $value+1,
'timestamp' => date(DATE_ISO8601)
)
);
$this->run();
return $value;
}
function delete($session) {
$this->_sql = '
delete from sessionx
where
session = :session';
$this->prepare(
'Sessionx',
array(
'session' => $session
)
);
return $this->run('Sessionx');
}
/*function clean() {
$this->_sql = '
delete from sessionx
where timestamp < :timestamp';
$this->prepare(
'Sessionx',
array(
'timestamp' => date(DATE_ISO8601, time() - 3600)
)
);
$this->run('Sessionx');
}*/
function clear() {
$this->_sql = '
truncate table sessionx';
$this->prepare(
'Sessionx',
array(
)
);
$this->run('Sessionx');
}
function getAll() {
$this->_sql = '
select * from sessionx';
$this->prepare(
'Sessionx',
array()
);
return $this->run('Sessionx');
}
function getConnected() {
$this->_sql = '
select count(*) from sessionx';
$this->prepare(
'Sessionx',
array(
)
);
$results = $this->run(null, 'array');
$results = array_values($results[0]);
return (int)$results[0];
}
function checkConnected($username, $host)
{
$this->_sql = '
select count(*) from sessionx
where
username = :username
and host = :host';
$this->prepare(
'Sessionx',
array(
'username' => $username,
'host' => $host
)
);
$results = $this->run(null, 'array');
$results = array_values($results[0]);
return (int)$results[0];
}
}