mirror of
https://github.com/friendica/friendica
synced 2025-04-26 11:10:11 +00:00
Last refactoring :-) / refactor due feedback
This commit is contained in:
parent
0345c50e2d
commit
2ae4b9f7e9
7 changed files with 243 additions and 234 deletions
48
src/Module/WebFinger.php
Normal file
48
src/Module/WebFinger.php
Normal file
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Module;
|
||||
|
||||
use Friendica\BaseModule;
|
||||
use Friendica\Core\L10n;
|
||||
use Friendica\Core\Renderer;
|
||||
use Friendica\Core\System;
|
||||
use Friendica\Network\Probe;
|
||||
|
||||
/**
|
||||
* Web based module to perform webfinger probing
|
||||
*/
|
||||
class WebFinger extends BaseModule
|
||||
{
|
||||
public static function init()
|
||||
{
|
||||
if (!local_user()) {
|
||||
System::httpExit(
|
||||
403,
|
||||
[
|
||||
"title" => L10n::t("Public access denied."),
|
||||
"description" => L10n::t("Only logged in users are permitted to perform a probing.")
|
||||
]
|
||||
);
|
||||
exit();
|
||||
}
|
||||
}
|
||||
|
||||
public static function content()
|
||||
{
|
||||
$app = self::getApp();
|
||||
|
||||
$addr = defaults($_GET, 'addr', '');
|
||||
$res = '';
|
||||
|
||||
if (!empty($addr)) {
|
||||
$res = Probe::lrdd($addr);
|
||||
$res = print_r($res, true);
|
||||
}
|
||||
|
||||
$tpl = Renderer::getMarkupTemplate('webfinger.tpl');
|
||||
return Renderer::replaceMacros($tpl, [
|
||||
'$addr' => $addr,
|
||||
'$res' => $res,
|
||||
]);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue