]> git.mxchange.org Git - friendica.git/blobdiff - mod/like.php
Catch HTTPExceptions in App::runFrontend()
[friendica.git] / mod / like.php
index 3c7e70cea63294dba2d420b0426aa516e9d8d44a..7ce7b1a1b912b9b1341db081e20aa6c67f766216 100644 (file)
@@ -2,11 +2,8 @@
 
 use Friendica\App;
 use Friendica\Core\System;
-
-require_once 'include/security.php';
-require_once 'include/bbcode.php';
-require_once 'include/items.php';
-require_once 'include/like.php';
+use Friendica\Model\Item;
+use Friendica\Util\Strings;
 
 function like_content(App $a) {
        if (!local_user() && !remote_user()) {
@@ -14,23 +11,23 @@ function like_content(App $a) {
        }
 
 
-       $verb = notags(trim($_GET['verb']));
+       $verb = Strings::escapeTags(trim($_GET['verb']));
 
        if (!$verb) {
                $verb = 'like';
        }
 
-       $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
+       $item_id = (($a->argc > 1) ? Strings::escapeTags(trim($a->argv[1])) : 0);
 
-       $r = do_like($item_id, $verb);
+       $r = Item::performLike($item_id, $verb);
        if (!$r) {
                return;
        }
 
        // See if we've been passed a return path to redirect to
-       $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
+       $return_path = defaults($_REQUEST, 'return', '');
 
-       like_content_return(System::baseUrl(), $return_path);
+       like_content_return($a, $return_path);
        killme(); // NOTREACHED
 }
 
@@ -38,7 +35,7 @@ function like_content(App $a) {
 // Decide how to return. If we were called with a 'return' argument,
 // then redirect back to the calling page. If not, just quietly end
 
-function like_content_return($baseurl, $return_path) {
+function like_content_return(App $a, $return_path) {
        if ($return_path) {
                $rand = '_=' . time();
                if (strpos($return_path, '?')) {
@@ -47,7 +44,7 @@ function like_content_return($baseurl, $return_path) {
                        $rand = "?$rand";
                }
 
-               goaway($baseurl . "/" . $return_path . $rand);
+               $a->internalRedirect($return_path . $rand);
        }
 
        killme();