X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FLike.php;h=2c5f02b1f62906b9d6a832e5fe76ba1f1f4b95e5;hb=0f5d6a009f310748b4078c401ee0a39c7b45c54f;hp=f57cbadfd357516abe30977c63f3d6faf4a74484;hpb=14d8c12130672bae9ff2e86dd9d7cf669b743939;p=friendica.git diff --git a/src/Module/Like.php b/src/Module/Like.php index f57cbadfd3..2c5f02b1f6 100644 --- a/src/Module/Like.php +++ b/src/Module/Like.php @@ -3,7 +3,9 @@ namespace Friendica\Module; use Friendica\BaseModule; +use Friendica\DI; use Friendica\Model\Item; +use Friendica\Core\Session; use Friendica\Network\HTTPException; use Friendica\Util\Strings; @@ -12,9 +14,9 @@ use Friendica\Util\Strings; */ class Like extends BaseModule { - public static function rawContent() + public static function rawContent(array $parameters = []) { - if (!local_user() && !remote_user()) { + if (!Session::isAuthenticated()) { throw new HTTPException\ForbiddenException(); } @@ -24,7 +26,7 @@ class Like extends BaseModule $verb = 'like'; } - $app = self::getApp(); + $app = DI::app(); // @TODO: Replace with parameter from router $itemId = (($app->argc > 1) ? Strings::escapeTags(trim($app->argv[1])) : 0); @@ -35,7 +37,7 @@ class Like extends BaseModule // Decide how to return. If we were called with a 'return' argument, // then redirect back to the calling page. If not, just quietly end - $returnPath = defaults($_REQUEST, 'return', ''); + $returnPath = $_REQUEST['return'] ?? ''; if (!empty($returnPath)) { $rand = '_=' . time(); @@ -45,7 +47,7 @@ class Like extends BaseModule $rand = "?$rand"; } - $app->internalRedirect($returnPath . $rand); + DI::baseUrl()->redirect($returnPath . $rand); } } }