Avoid problems with uid=0

This commit is contained in:
Michael 2020-11-19 17:19:14 +00:00
parent fa5acb3b21
commit bd0e2dc0a8
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) {
if (empty($notification['photo'])) {
$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']);

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)) {
Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG);

View File

@ -264,7 +264,7 @@ class User
*/
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();
$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]);
header('HTTP/1.0 401 Unauthorized');
die('This api requires login');