e32b4ed670
more missing use
79 lines
2.1 KiB
PHP
79 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* @file src/Protocol/OAuth1.php
|
|
*/
|
|
namespace Friendica\Network;
|
|
|
|
use Friendica\App;
|
|
use Friendica\Core\PConfig;
|
|
use Friendica\Core\System;
|
|
use Friendica\Database\DBM;
|
|
use Friendica\Network\FKOAuthDataStore;
|
|
use dba;
|
|
use OAuthServer;
|
|
use OAuthSignatureMethod_PLAINTEXT;
|
|
use OAuthSignatureMethod_HMAC_SHA1;
|
|
|
|
require_once "library/OAuth1.php";
|
|
require_once "include/plugin.php";
|
|
|
|
/**
|
|
* @brief OAuth protocol
|
|
*/
|
|
class FKOAuth1 extends OAuthServer
|
|
{
|
|
/**
|
|
* @brief Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct(new FKOAuthDataStore());
|
|
$this->add_signature_method(new OAuthSignatureMethod_PLAINTEXT());
|
|
$this->add_signature_method(new OAuthSignatureMethod_HMAC_SHA1());
|
|
}
|
|
|
|
/**
|
|
* @param string $uid user id
|
|
* @return void
|
|
*/
|
|
public function loginUser($uid)
|
|
{
|
|
logger("FKOAuth1::loginUser $uid");
|
|
$a = get_app();
|
|
$record = dba::select('user', array(), array('uid' => $uid, 'blocked' => 0, 'account_expired' => 0, 'account_removed' => 0, 'verified' => 1), array('limit' => 1));
|
|
|
|
if (!DBM::is_result($record)) {
|
|
logger('FKOAuth1::loginUser failure: ' . print_r($_SERVER, true), LOGGER_DEBUG);
|
|
header('HTTP/1.0 401 Unauthorized');
|
|
die('This api requires login');
|
|
}
|
|
$_SESSION['uid'] = $record['uid'];
|
|
$_SESSION['theme'] = $record['theme'];
|
|
$_SESSION['mobile-theme'] = PConfig::get($record['uid'], 'system', 'mobile_theme');
|
|
$_SESSION['authenticated'] = 1;
|
|
$_SESSION['page_flags'] = $record['page-flags'];
|
|
$_SESSION['my_url'] = System::baseUrl() . '/profile/' . $record['nickname'];
|
|
$_SESSION['addr'] = $_SERVER['REMOTE_ADDR'];
|
|
$_SESSION["allow_api"] = true;
|
|
|
|
$a->user = $record;
|
|
|
|
if (strlen($a->user['timezone'])) {
|
|
date_default_timezone_set($a->user['timezone']);
|
|
$a->timezone = $a->user['timezone'];
|
|
}
|
|
|
|
$r = dba::select('contact', array(), array('uid' => $_SESSION['uid'], 'self' => 1), array('limit' => 1));
|
|
|
|
if (DBM::is_result($r)) {
|
|
$a->contact = $r;
|
|
$a->cid = $r['id'];
|
|
$_SESSION['cid'] = $a->cid;
|
|
}
|
|
|
|
dba::update('user', ['login_date' => datetime_convert()], ['uid' => $_SESSION['uid']]);
|
|
|
|
call_hooks('logged_in', $a->user);
|
|
}
|
|
}
|