2019-05-18 22:17:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
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;
|
|
|
|
use Friendica\Model\GContact;
|
|
|
|
|
|
|
|
/**
|
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
|
|
|
|
{
|
2019-11-05 22:48:54 +01:00
|
|
|
public static function content(array $parameters = [])
|
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
|
|
|
|
|
|
|
$contactUrl = GContact::getRandomUrl();
|
|
|
|
|
|
|
|
if ($contactUrl) {
|
|
|
|
$link = Contact::magicLink($contactUrl);
|
|
|
|
$a->redirect($link);
|
|
|
|
}
|
|
|
|
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('profile');
|
2019-05-18 22:17:57 +02:00
|
|
|
}
|
|
|
|
}
|