2019-05-18 16:17:57 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Model\Contact;
|
|
|
|
use Friendica\Model\GContact;
|
|
|
|
|
|
|
|
/**
|
2019-05-18 21:12:22 -04:00
|
|
|
* Redirects to a random Friendica profile this node knows about
|
2019-05-18 16:17:57 -04:00
|
|
|
*/
|
|
|
|
class RandomProfile extends BaseModule
|
|
|
|
{
|
|
|
|
public static function content()
|
|
|
|
{
|
|
|
|
$a = self::getApp();
|
|
|
|
|
|
|
|
$contactUrl = GContact::getRandomUrl();
|
|
|
|
|
|
|
|
if ($contactUrl) {
|
|
|
|
$link = Contact::magicLink($contactUrl);
|
|
|
|
$a->redirect($link);
|
|
|
|
}
|
|
|
|
|
|
|
|
$a->internalRedirect('profile');
|
|
|
|
}
|
|
|
|
}
|