User moved to class
This commit is contained in:
parent
cf7fba1d78
commit
4d98a4e81c
2 changed files with 51 additions and 37 deletions
|
@ -2,16 +2,8 @@
|
|||
|
||||
class Post
|
||||
{
|
||||
private static function is_logged_in(){
|
||||
if(!Config::get_safe("force_login", false)){
|
||||
return true;
|
||||
}
|
||||
|
||||
return !empty($_SESSION["logged_in"]) && $_SESSION["logged_in"] == md5(Config::get("nick").Config::get_safe("pass", ""));
|
||||
}
|
||||
|
||||
private static function login_protected(){
|
||||
if(!self::is_logged_in()){
|
||||
if(!User::is_logged_in()){
|
||||
throw new Exception("You need to be logged in to perform this action.");
|
||||
}
|
||||
}
|
||||
|
@ -238,7 +230,7 @@ class Post
|
|||
"SELECT `id`, `text`, `feeling`, `persons`, `location`, `pirvacy`, `content_type`, `content`, DATE_FORMAT(`posts`.`datetime`,'%d %b %Y %H:%i') AS `datetime` ".
|
||||
"FROM `posts` ".
|
||||
"WHERE ".
|
||||
(!self::is_logged_in() ? "`pirvacy` = 'public' AND " : "").
|
||||
(!User::is_logged_in() ? "`pirvacy` = 'public' AND " : "").
|
||||
($until ? "`posts`.`datetime` < DATE_ADD('{$until}', INTERVAL +1 MONTH) AND " : "").
|
||||
($id ? "`id` = {$id} AND " : "").
|
||||
"`status` = 1 ".
|
||||
|
@ -248,37 +240,14 @@ class Post
|
|||
}
|
||||
|
||||
public static function login($r){
|
||||
if(!Config::get_safe("force_login", false)){
|
||||
return true;
|
||||
}
|
||||
|
||||
if(self::is_logged_in()){
|
||||
throw new Exception("You are already logged in.");
|
||||
}
|
||||
|
||||
if(Config::get("nick") == $r["nick"] && Config::get_safe("pass", "") == $r["pass"]){
|
||||
$_SESSION["logged_in"] = md5($r["nick"].$r["pass"]);
|
||||
return true;
|
||||
}
|
||||
|
||||
Log::put("login_fails", $r["nick"]);
|
||||
throw new Exception("The nick or password is incorrect.");
|
||||
return User::login($r["nick"], $r["pass"]);
|
||||
}
|
||||
|
||||
public static function logout($r){
|
||||
if(!Config::get_safe("force_login", false)){
|
||||
throw new Exception("You can't log out. There is no account.");
|
||||
}
|
||||
|
||||
if(!self::is_logged_in()){
|
||||
throw new Exception("You are not even logged in.");
|
||||
}
|
||||
|
||||
$_SESSION["logged_in"] = false;
|
||||
return true;
|
||||
public static function logout(){
|
||||
return User::logout();
|
||||
}
|
||||
|
||||
public static function handshake($r){
|
||||
return ["logged_in" => self::is_logged_in()];
|
||||
return ["logged_in" => User::is_logged_in()];
|
||||
}
|
||||
}
|
45
lib/user.class.php
Normal file
45
lib/user.class.php
Normal file
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
|
||||
class user
|
||||
{
|
||||
const SESSION_NAME = "logged_in";
|
||||
|
||||
public static function is_logged_in(){
|
||||
if(!Config::get_safe("force_login", false)){
|
||||
return true;
|
||||
}
|
||||
|
||||
return !empty($_SESSION[User::SESSION_NAME]) && $_SESSION[User::SESSION_NAME] == md5(Config::get("nick").Config::get_safe("pass", ""));
|
||||
}
|
||||
|
||||
public static function login($nick, $pass){
|
||||
if(!Config::get_safe("force_login", false)){
|
||||
return true;
|
||||
}
|
||||
|
||||
if(self::is_logged_in()){
|
||||
throw new Exception("You are already logged in.");
|
||||
}
|
||||
|
||||
if(Config::get("nick") == $nick && Config::get_safe("pass", "") == $pass){
|
||||
$_SESSION[User::SESSION_NAME] = md5($nick.$pass);
|
||||
return true;
|
||||
}
|
||||
|
||||
Log::put("login_fails", $nick);
|
||||
throw new Exception("The nick or password is incorrect.");
|
||||
}
|
||||
|
||||
public static function logout(){
|
||||
if(!Config::get_safe("force_login", false)){
|
||||
throw new Exception("You can't log out. There is no account.");
|
||||
}
|
||||
|
||||
if(!self::is_logged_in()){
|
||||
throw new Exception("You are not even logged in.");
|
||||
}
|
||||
|
||||
$_SESSION[User::SESSION_NAME] = false;
|
||||
return true;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue