2019-05-18 22:17:57 +02:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-18 22:17:57 +02:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2019-12-15 22:34:11 +01:00
|
|
|
use Friendica\DI;
|
2019-05-18 22:17:57 +02:00
|
|
|
use Friendica\Model\Contact;
|
|
|
|
|
|
|
|
/**
|
2019-05-19 03:12:22 +02:00
|
|
|
* Redirects to a random Friendica profile this node knows about
|
2019-05-18 22:17:57 +02:00
|
|
|
*/
|
|
|
|
class RandomProfile extends BaseModule
|
|
|
|
{
|
2021-11-20 15:38:03 +01:00
|
|
|
protected function content(array $request = []): string
|
2019-05-18 22:17:57 +02:00
|
|
|
{
|
2019-12-15 22:34:11 +01:00
|
|
|
$a = DI::app();
|
2019-05-18 22:17:57 +02:00
|
|
|
|
2021-02-17 19:59:19 +01:00
|
|
|
$contact = Contact::getRandomContact();
|
2019-05-18 22:17:57 +02:00
|
|
|
|
2021-02-17 19:59:19 +01:00
|
|
|
if (!empty($contact)) {
|
|
|
|
$link = Contact::magicLinkByContact($contact);
|
2019-05-18 22:17:57 +02:00
|
|
|
$a->redirect($link);
|
|
|
|
}
|
|
|
|
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('profile');
|
2021-11-14 23:13:47 +01:00
|
|
|
|
|
|
|
return '';
|
2019-05-18 22:17:57 +02:00
|
|
|
}
|
|
|
|
}
|