Merge pull request #491 from qligier/pr-log-login

Log connection attempts
This commit is contained in:
Tobias Reich 2016-03-19 16:06:38 +01:00
commit 44a7d3046c

View File

@ -70,14 +70,15 @@ final class Session {
// Call plugins // Call plugins
Plugins::get()->activate(__METHOD__, 0, func_get_args()); Plugins::get()->activate(__METHOD__, 0, func_get_args());
$username = crypt($username, Settings::get()['username']); $username_crypt = crypt($username, Settings::get()['username']);
$password = crypt($password, Settings::get()['password']); $password = crypt($password, Settings::get()['password']);
// Check login with crypted hash // Check login with crypted hash
if (Settings::get()['username']===$username&& if (Settings::get()['username']===$username_crypt&&
Settings::get()['password']===$password) { Settings::get()['password']===$password) {
$_SESSION['login'] = true; $_SESSION['login'] = true;
$_SESSION['identifier'] = Settings::get()['identifier']; $_SESSION['identifier'] = Settings::get()['identifier'];
Log::notice(Database::get(), __METHOD__, __LINE__, 'User ['.$username.'] has logged in from ['.$_SERVER['REMOTE_ADDR'].']');
return true; return true;
} }
@ -87,6 +88,7 @@ final class Session {
// Call plugins // Call plugins
Plugins::get()->activate(__METHOD__, 1, func_get_args()); Plugins::get()->activate(__METHOD__, 1, func_get_args());
Log::error(Database::get(), __METHOD__, __LINE__, 'User ['.$username.'] has tried to log in from ['.$_SERVER['REMOTE_ADDR'].']');
return false; return false;
} }