]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/RandomProfile.php
Merge pull request #11360 from annando/announce-notification
[friendica.git] / src / Module / RandomProfile.php
index 111d92dc40d638ec3fcc1433f8932a4c9392301b..17c8fab7a4909ecfff0c7f86a4e7b8da9d466f0f 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -24,24 +24,25 @@ namespace Friendica\Module;
 use Friendica\BaseModule;
 use Friendica\DI;
 use Friendica\Model\Contact;
-use Friendica\Model\GContact;
 
 /**
  * Redirects to a random Friendica profile this node knows about
  */
 class RandomProfile extends BaseModule
 {
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
                $a = DI::app();
 
-               $contactUrl = GContact::getRandomUrl();
+               $contact = Contact::getRandomContact();
 
-               if ($contactUrl) {
-                       $link = Contact::magicLink($contactUrl);
+               if (!empty($contact)) {
+                       $link = Contact::magicLinkByContact($contact);
                        $a->redirect($link);
                }
 
                DI::baseUrl()->redirect('profile');
+
+               return '';
        }
 }