Improved profile summary for notifications

This commit is contained in:
Michael 2023-06-03 15:27:14 +00:00
parent 2fc7c9f064
commit 921e070b22

View file

@ -398,45 +398,23 @@ class UserNotification
*/ */
private static function getProfileForUser(int $uid): array private static function getProfileForUser(int $uid): array
{ {
$notification_data = ['uid' => $uid, 'profiles' => []]; $owner = User::getOwnerDataById($uid);
Hook::callAll('check_item_notification', $notification_data);
$profiles = $notification_data['profiles'];
$user = DBA::selectFirst('user', ['nickname'], ['uid' => $uid]);
if (!DBA::isResult($user)) {
return [];
}
$owner = DBA::selectFirst('contact', ['url', 'alias'], ['self' => true, 'uid' => $uid]);
if (!DBA::isResult($owner)) { if (!DBA::isResult($owner)) {
return []; return [];
} }
// This is our regular URL format $profiles = [$owner['nurl']];
$profiles[] = $owner['url'];
// Now the alias $notification_data = ['uid' => $uid, 'profiles' => []];
$profiles[] = $owner['alias']; Hook::callAll('check_item_notification', $notification_data);
// Notifications from Diaspora often have a URL in the Diaspora format // Normalize the connector profiles
$profiles[] = DI::baseUrl() . '/u/' . $user['nickname']; foreach ($notification_data['profiles'] as $profile) {
// Validate and add profile links
foreach ($profiles as $key => $profile) {
// Check for invalid profile urls (without scheme, host or path) and remove them
if (empty(parse_url($profile, PHP_URL_SCHEME)) || empty(parse_url($profile, PHP_URL_HOST)) || empty(parse_url($profile, PHP_URL_PATH))) { if (empty(parse_url($profile, PHP_URL_SCHEME)) || empty(parse_url($profile, PHP_URL_HOST)) || empty(parse_url($profile, PHP_URL_PATH))) {
unset($profiles[$key]); $profiles[] = $profile;
continue; } else {
$profiles[] = Strings::normaliseLink($profile);
} }
// Add the normalized form
$profile = Strings::normaliseLink($profile);
$profiles[] = $profile;
// Add the SSL form
$profile = str_replace('http://', 'https://', $profile);
$profiles[] = $profile;
} }
return array_unique($profiles); return array_unique($profiles);