]> git.mxchange.org Git - friendica.git/blobdiff - mod/like.php
Using Locks for Updating and writing last success to config
[friendica.git] / mod / like.php
index 7932fc149c7664b7484a314cdaf44a32c5160edd..296e563bf466127fa77e86838f9d0de39497459f 100644 (file)
@@ -1,25 +1,26 @@
 <?php
 
-require_once('include/security.php');
-require_once('include/bbcode.php');
-require_once('include/items.php');
-require_once('include/like.php');
+use Friendica\App;
+use Friendica\Core\System;
+use Friendica\Model\Item;
+
+require_once 'include/items.php';
 
 function like_content(App $a) {
-       if (! local_user() && ! remote_user()) {
+       if (!local_user() && !remote_user()) {
                return false;
        }
 
 
        $verb = notags(trim($_GET['verb']));
 
-       if (! $verb) {
+       if (!$verb) {
                $verb = 'like';
        }
 
        $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
 
-       $r = do_like($item_id, $verb);
+       $r = Item::performLike($item_id, $verb);
        if (!$r) {
                return;
        }
@@ -27,17 +28,15 @@ function like_content(App $a) {
        // See if we've been passed a return path to redirect to
        $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
 
-       like_content_return(App::get_baseurl(), $return_path);
+       like_content_return($a, $return_path);
        killme(); // NOTREACHED
-//     return; // NOTREACHED
 }
 
 
 // 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, '?')) {
@@ -46,9 +45,8 @@ function like_content_return($baseurl, $return_path) {
                        $rand = "?$rand";
                }
 
-               goaway($baseurl . "/" . $return_path . $rand);
+               $a->internalRedirect($return_path . $rand);
        }
 
        killme();
 }
-