Merge pull request #9552 from annando/zero-user

Avoid problems with uid=0
This commit is contained in:
Hypolite Petovan 2020-11-19 16:23:28 -05:00 committed by GitHub
commit 10a4802d81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -342,7 +342,7 @@ function ping_init(App $a)
array_walk($notifications, function (&$notification) { array_walk($notifications, function (&$notification) {
if (empty($notification['photo'])) { if (empty($notification['photo'])) {
$contact = Contact::getByURL($notification['url'], false, ['micro', 'id', 'avatar']); $contact = Contact::getByURL($notification['url'], false, ['micro', 'id', 'avatar']);
$notification['photo'] = Contact::getMicro($contact, $notif['photo']); $notification['photo'] = Contact::getMicro($contact, $notification['photo']);
} }
$notification['timestamp'] = DateTimeFormat::local($notification['date']); $notification['timestamp'] = DateTimeFormat::local($notification['date']);

View File

@ -166,7 +166,7 @@ class Profile
} }
} }
$profile = User::getOwnerDataById($user['uid'], false); $profile = !empty($user['uid']) ? User::getOwnerDataById($user['uid'], false) : [];
if (empty($profile) && empty($profiledata)) { if (empty($profile) && empty($profiledata)) {
Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG); Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG);

View File

@ -264,7 +264,7 @@ class User
*/ */
public static function getById($uid, array $fields = []) public static function getById($uid, array $fields = [])
{ {
return DBA::selectFirst('user', $fields, ['uid' => $uid]); return !empty($uid) ? DBA::selectFirst('user', $fields, ['uid' => $uid]) : [];
} }
/** /**

View File

@ -55,7 +55,7 @@ class FKOAuth1 extends OAuthServer
$a = DI::app(); $a = DI::app();
$record = DBA::selectFirst('user', [], ['uid' => $uid, 'blocked' => 0, 'account_expired' => 0, 'account_removed' => 0, 'verified' => 1]); $record = DBA::selectFirst('user', [], ['uid' => $uid, 'blocked' => 0, 'account_expired' => 0, 'account_removed' => 0, 'verified' => 1]);
if (!DBA::isResult($record)) { if (!DBA::isResult($record) || empty($uid)) {
Logger::info('FKOAuth1::loginUser failure', ['server' => $_SERVER]); Logger::info('FKOAuth1::loginUser failure', ['server' => $_SERVER]);
header('HTTP/1.0 401 Unauthorized'); header('HTTP/1.0 401 Unauthorized');
die('This api requires login'); die('This api requires login');