lychee/php/modules/Session.php

112 lines
2.2 KiB
PHP
Raw Normal View History

2014-04-04 19:10:32 +00:00
<?php
###
# @name Session Module
# @author Tobias Reich
# @copyright 2014 by Tobias Reich
###
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
2014-04-04 19:27:10 +00:00
class Session extends Module {
2014-04-04 19:10:32 +00:00
2014-04-04 19:27:10 +00:00
private $settings = null;
2014-04-04 19:10:32 +00:00
public function __construct($plugins, $settings) {
# Init vars
$this->plugins = $plugins;
$this->settings = $settings;
return true;
}
2014-04-05 16:30:24 +00:00
public function init($database, $public, $version) {
2014-04-04 19:10:32 +00:00
if (!isset($this->settings, $public, $version)) return false;
2014-04-04 19:12:49 +00:00
# Call plugins
$this->plugins(__METHOD__, 0, func_get_args());
2014-04-04 19:10:32 +00:00
# Update
2014-04-05 16:30:24 +00:00
if (!isset($this->settings['version'])||$this->settings['version']!==$version)
if (!Database::update($database, @$this->settings['version'])) exit('Error: Updating the database failed!');
2014-04-04 19:10:32 +00:00
# Return settings
$return['config'] = $this->settings;
unset($return['config']['password']);
# No login
if ($this->settings['username']===''&&$this->settings['password']==='') $return['config']['login'] = false;
else $return['config']['login'] = true;
if ($public===false) {
# Logged in
$return['loggedIn'] = true;
} else {
# Unset unused vars
unset($return['config']['username']);
unset($return['config']['thumbQuality']);
unset($return['config']['sorting']);
unset($return['config']['dropboxKey']);
unset($return['config']['login']);
# Logged out
$return['loggedIn'] = false;
}
2014-04-04 19:12:49 +00:00
# Call plugins
$this->plugins(__METHOD__, 1, func_get_args());
2014-04-04 19:10:32 +00:00
return $return;
}
public function login($username, $password) {
if (!isset($this->settings, $username, $password)) return false;
2014-04-04 19:12:49 +00:00
# Call plugins
$this->plugins(__METHOD__, 0, func_get_args());
2014-04-04 19:10:32 +00:00
# Check login
if ($username===$this->settings['username']&&$password===$this->settings['password']) {
$_SESSION['login'] = true;
return true;
}
# No login
if ($this->settings['username']===''&&$this->settings['password']==='') {
$_SESSION['login'] = true;
return true;
}
2014-04-04 19:12:49 +00:00
# Call plugins
$this->plugins(__METHOD__, 1, func_get_args());
2014-04-04 19:10:32 +00:00
return false;
}
public function logout() {
2014-04-04 19:12:49 +00:00
# Call plugins
$this->plugins(__METHOD__, 0, func_get_args());
2014-04-04 19:10:32 +00:00
session_destroy();
2014-04-04 19:12:49 +00:00
# Call plugins
$this->plugins(__METHOD__, 1, func_get_args());
2014-04-04 19:10:32 +00:00
return true;
}
}
?>