2018-10-17 08:19:58 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file /src/Core/Authentication.php
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Core;
|
|
|
|
|
|
|
|
use Friendica\BaseObject;
|
2018-10-21 01:53:47 -04:00
|
|
|
use Friendica\Core\Addon;
|
2018-10-17 08:19:58 -04:00
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Core\L10n;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-10-17 08:19:58 -04:00
|
|
|
use Friendica\Core\PConfig;
|
2018-10-21 01:53:47 -04:00
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-10-17 08:19:58 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle Authentification, Session and Cookies
|
2018-10-21 01:53:47 -04:00
|
|
|
*/
|
2018-10-17 08:19:58 -04:00
|
|
|
class Authentication extends BaseObject
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @brief Calculate the hash that is needed for the "Friendica" cookie
|
|
|
|
*
|
|
|
|
* @param array $user Record from "user" table
|
|
|
|
*
|
|
|
|
* @return string Hashed data
|
|
|
|
*/
|
2018-10-17 15:30:41 -04:00
|
|
|
public static function getCookieHashForUser($user)
|
2018-10-17 08:19:58 -04:00
|
|
|
{
|
|
|
|
return(hash("sha256", Config::get("system", "site_prvkey") .
|
|
|
|
$user["prvkey"] .
|
|
|
|
$user["password"]));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set the "Friendica" cookie
|
|
|
|
*
|
|
|
|
* @param int $time
|
|
|
|
* @param array $user Record from "user" table
|
|
|
|
*/
|
2018-10-17 15:30:41 -04:00
|
|
|
public static function setCookie($time, $user = [])
|
2018-10-17 08:19:58 -04:00
|
|
|
{
|
|
|
|
if ($time != 0) {
|
|
|
|
$time = $time + time();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($user) {
|
|
|
|
$value = json_encode(["uid" => $user["uid"],
|
2018-10-17 15:30:41 -04:00
|
|
|
"hash" => self::getCookieHashForUser($user),
|
2018-10-17 08:19:58 -04:00
|
|
|
"ip" => defaults($_SERVER, 'REMOTE_ADDR', '0.0.0.0')]);
|
|
|
|
} else {
|
|
|
|
$value = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
setcookie("Friendica", $value, $time, "/", "", (Config::get('system', 'ssl_policy') == SSL_POLICY_FULL), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Sets the provided user's authenticated session
|
|
|
|
*
|
|
|
|
* @todo Should be moved to Friendica\Core\Session once it's created
|
|
|
|
*
|
|
|
|
* @param type $user_record
|
|
|
|
* @param type $login_initial
|
|
|
|
* @param type $interactive
|
|
|
|
* @param type $login_refresh
|
|
|
|
*/
|
2018-10-17 15:30:41 -04:00
|
|
|
public static function setAuthenticatedSessionForUser($user_record, $login_initial = false, $interactive = false, $login_refresh = false)
|
2018-10-17 08:19:58 -04:00
|
|
|
{
|
|
|
|
$a = self::getApp();
|
|
|
|
|
|
|
|
$_SESSION['uid'] = $user_record['uid'];
|
|
|
|
$_SESSION['theme'] = $user_record['theme'];
|
|
|
|
$_SESSION['mobile-theme'] = PConfig::get($user_record['uid'], 'system', 'mobile_theme');
|
|
|
|
$_SESSION['authenticated'] = 1;
|
|
|
|
$_SESSION['page_flags'] = $user_record['page-flags'];
|
|
|
|
$_SESSION['my_url'] = $a->getbaseUrl() . '/profile/' . $user_record['nickname'];
|
|
|
|
$_SESSION['my_address'] = $user_record['nickname'] . '@' . substr($a->getbaseUrl(), strpos($a->getbaseUrl(), '://') + 3);
|
|
|
|
$_SESSION['addr'] = defaults($_SERVER, 'REMOTE_ADDR', '0.0.0.0');
|
|
|
|
|
|
|
|
$a->user = $user_record;
|
|
|
|
|
|
|
|
if ($interactive) {
|
2018-10-21 01:53:47 -04:00
|
|
|
if ($a->user['login_date'] <= DBA::NULL_DATETIME) {
|
2018-10-19 17:55:11 -04:00
|
|
|
$_SESSION['return_path'] = 'profile_photo/new';
|
2018-10-17 08:19:58 -04:00
|
|
|
$a->module = 'profile_photo';
|
|
|
|
info(L10n::t("Welcome ") . $a->user['username'] . EOL);
|
|
|
|
info(L10n::t('Please upload a profile photo.') . EOL);
|
|
|
|
} else {
|
|
|
|
info(L10n::t("Welcome back ") . $a->user['username'] . EOL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$member_since = strtotime($a->user['register_date']);
|
|
|
|
if (time() < ($member_since + ( 60 * 60 * 24 * 14))) {
|
|
|
|
$_SESSION['new_member'] = true;
|
|
|
|
} else {
|
|
|
|
$_SESSION['new_member'] = false;
|
|
|
|
}
|
|
|
|
if (strlen($a->user['timezone'])) {
|
|
|
|
date_default_timezone_set($a->user['timezone']);
|
|
|
|
$a->timezone = $a->user['timezone'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$master_record = $a->user;
|
|
|
|
|
|
|
|
if ((x($_SESSION, 'submanage')) && intval($_SESSION['submanage'])) {
|
|
|
|
$user = DBA::selectFirst('user', [], ['uid' => $_SESSION['submanage']]);
|
|
|
|
if (DBA::isResult($user)) {
|
|
|
|
$master_record = $user;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($master_record['parent-uid'] == 0) {
|
|
|
|
// First add our own entry
|
|
|
|
$a->identities = [['uid' => $master_record['uid'],
|
|
|
|
'username' => $master_record['username'],
|
|
|
|
'nickname' => $master_record['nickname']]];
|
|
|
|
|
|
|
|
// Then add all the children
|
|
|
|
$r = DBA::select('user', ['uid', 'username', 'nickname'],
|
|
|
|
['parent-uid' => $master_record['uid'], 'account_removed' => false]);
|
|
|
|
if (DBA::isResult($r)) {
|
|
|
|
$a->identities = array_merge($a->identities, DBA::toArray($r));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Just ensure that the array is always defined
|
|
|
|
$a->identities = [];
|
|
|
|
|
|
|
|
// First entry is our parent
|
|
|
|
$r = DBA::select('user', ['uid', 'username', 'nickname'],
|
|
|
|
['uid' => $master_record['parent-uid'], 'account_removed' => false]);
|
|
|
|
if (DBA::isResult($r)) {
|
|
|
|
$a->identities = DBA::toArray($r);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Then add all siblings
|
|
|
|
$r = DBA::select('user', ['uid', 'username', 'nickname'],
|
|
|
|
['parent-uid' => $master_record['parent-uid'], 'account_removed' => false]);
|
|
|
|
if (DBA::isResult($r)) {
|
|
|
|
$a->identities = array_merge($a->identities, DBA::toArray($r));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$r = DBA::p("SELECT `user`.`uid`, `user`.`username`, `user`.`nickname`
|
|
|
|
FROM `manage`
|
|
|
|
INNER JOIN `user` ON `manage`.`mid` = `user`.`uid`
|
|
|
|
WHERE `user`.`account_removed` = 0 AND `manage`.`uid` = ?",
|
|
|
|
$master_record['uid']
|
|
|
|
);
|
|
|
|
if (DBA::isResult($r)) {
|
|
|
|
$a->identities = array_merge($a->identities, DBA::toArray($r));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($login_initial) {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('auth_identities: ' . print_r($a->identities, true), Logger::DEBUG);
|
2018-10-17 08:19:58 -04:00
|
|
|
}
|
|
|
|
if ($login_refresh) {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('auth_identities refresh: ' . print_r($a->identities, true), Logger::DEBUG);
|
2018-10-17 08:19:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$contact = DBA::selectFirst('contact', [], ['uid' => $_SESSION['uid'], 'self' => true]);
|
|
|
|
if (DBA::isResult($contact)) {
|
|
|
|
$a->contact = $contact;
|
|
|
|
$a->cid = $contact['id'];
|
|
|
|
$_SESSION['cid'] = $a->cid;
|
|
|
|
}
|
|
|
|
|
|
|
|
header('X-Account-Management-Status: active; name="' . $a->user['username'] . '"; id="' . $a->user['nickname'] . '"');
|
|
|
|
|
|
|
|
if ($login_initial || $login_refresh) {
|
|
|
|
DBA::update('user', ['login_date' => DateTimeFormat::utcNow()], ['uid' => $_SESSION['uid']]);
|
|
|
|
|
|
|
|
// Set the login date for all identities of the user
|
|
|
|
DBA::update('user', ['login_date' => DateTimeFormat::utcNow()],
|
|
|
|
['parent-uid' => $master_record['uid'], 'account_removed' => false]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($login_initial) {
|
|
|
|
/*
|
|
|
|
* If the user specified to remember the authentication, then set a cookie
|
|
|
|
* that expires after one week (the default is when the browser is closed).
|
|
|
|
* The cookie will be renewed automatically.
|
|
|
|
* The week ensures that sessions will expire after some inactivity.
|
|
|
|
*/
|
|
|
|
if (!empty($_SESSION['remember'])) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log('Injecting cookie for remembered user ' . $a->user['nickname']);
|
2018-10-17 15:30:41 -04:00
|
|
|
self::setCookie(604800, $user_record);
|
2018-10-17 08:19:58 -04:00
|
|
|
unset($_SESSION['remember']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($login_initial) {
|
|
|
|
Addon::callHooks('logged_in', $a->user);
|
|
|
|
|
2018-10-19 17:55:11 -04:00
|
|
|
if (($a->module !== 'home') && isset($_SESSION['return_path'])) {
|
|
|
|
$a->internalRedirect($_SESSION['return_path']);
|
2018-10-17 08:19:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Kills the "Friendica" cookie and all session data
|
|
|
|
*/
|
2018-10-17 15:30:41 -04:00
|
|
|
public static function deleteSession()
|
2018-10-17 08:19:58 -04:00
|
|
|
{
|
2018-10-17 15:30:41 -04:00
|
|
|
self::setCookie(-3600); // make sure cookie is deleted on browser close, as a security measure
|
2018-10-17 08:19:58 -04:00
|
|
|
session_unset();
|
|
|
|
session_destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|