Refactor "Authentication" class with four main methods:

- withSession() - for auto authentication with Session/Cookie variables
- withOpenId() - for authentication with an OpenID account
- withPassword() - for authentication with Password
- setForUser() - for setting the user auth context of the current session

Refactor "Session" class - contains now "native" Session Management methods
This commit is contained in:
Philipp Holzer 2019-12-03 22:29:36 +01:00
parent 271b2d4b1c
commit c62774f6d2
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 5 additions and 1 deletions

View File

@ -27,8 +27,10 @@
*/
use Friendica\App;
use Friendica\BaseObject;
use Friendica\Content\Text\BBCode;
use Friendica\Content\Text\HTML;
use Friendica\Core\Authentication;
use Friendica\Core\Hook;
use Friendica\Core\L10n;
use Friendica\Core\Logger;
@ -473,7 +475,9 @@ function windowsphonepush_login(App $a)
die('This api requires login');
}
Session::setAuthenticatedForUser($a, $record);
/** @var Authentication $authentication */
$authentication = BaseObject::getClass(Authentication::class);
$authentication->setForUser($a, $record);
$_SESSION["allow_api"] = true;
Hook::callAll('logged_in', $a->user);
}