]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/RandomProfile.php
Merge pull request #11003 from annando/fix-api
[friendica.git] / src / Module / RandomProfile.php
index 3ecaa54b7607bc51f32099997380cd47defc64bc..38cd684294e54e3db4a394649d210dc4ad2a8be8 100644 (file)
@@ -1,27 +1,48 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 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()
+       public function content(): string
        {
-               $a = self::getApp();
+               $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);
                }
 
-               $a->internalRedirect('profile');
+               DI::baseUrl()->redirect('profile');
+
+               return '';
        }
 }