29 lines
512 B
PHP
29 lines
512 B
PHP
<?php
|
|
|
|
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 = [])
|
|
{
|
|
$a = DI::app();
|
|
|
|
$contactUrl = GContact::getRandomUrl();
|
|
|
|
if ($contactUrl) {
|
|
$link = Contact::magicLink($contactUrl);
|
|
$a->redirect($link);
|
|
}
|
|
|
|
DI::baseUrl()->redirect('profile');
|
|
}
|
|
}
|