mirror of
https://github.com/friendica/friendica
synced 2025-04-26 11:10:11 +00:00
Move mod/probe to src/Module/Probe
This commit is contained in:
parent
7a13582c67
commit
48bba87abe
10 changed files with 81 additions and 52 deletions
|
@ -1,39 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Module;
|
||||
|
||||
use Friendica\BaseModule;
|
||||
use Friendica\Core\L10n;
|
||||
use Friendica\Core\Renderer;
|
||||
use Friendica\Network\Probe;
|
||||
|
||||
/**
|
||||
* Web based module to perform webfinger probing
|
||||
*/
|
||||
class WebFinger extends BaseModule
|
||||
{
|
||||
public static function content()
|
||||
{
|
||||
if (!local_user()) {
|
||||
$e = new \Friendica\Network\HTTPException\ForbiddenException(L10n::t("Only logged in users are permitted to perform a probing."));
|
||||
$e->httpdesc = L10n::t("Public access denied.");
|
||||
throw $e;
|
||||
}
|
||||
|
||||
$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