]> git.mxchange.org Git - friendica.git/blobdiff - mod/like.php
Enforce systen.register_policy value type
[friendica.git] / mod / like.php
old mode 100755 (executable)
new mode 100644 (file)
index 8d383b9..957fe5f
@@ -1,32 +1,36 @@
 <?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;
 
-function like_content(&$a) {
-       if(! local_user() && ! remote_user()) {
+require_once 'include/security.php';
+require_once 'include/items.php';
+
+function like_content(App $a) {
+       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);
-       if (!$r) return;
+       $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'] : '');
 
-       like_content_return($a->get_baseurl(), $return_path);
+       like_content_return(System::baseUrl(), $return_path);
        killme(); // NOTREACHED
-//     return; // NOTREACHED
 }
 
 
@@ -34,15 +38,16 @@ function like_content(&$a) {
 // then redirect back to the calling page. If not, just quietly end
 
 function like_content_return($baseurl, $return_path) {
-
-       if($return_path) {
+       if ($return_path) {
                $rand = '_=' . time();
-               if(strpos($return_path, '?')) $rand = "&$rand";
-               else $rand = "?$rand";
+               if (strpos($return_path, '?')) {
+                       $rand = "&$rand";
+               } else {
+                       $rand = "?$rand";
+               }
 
                goaway($baseurl . "/" . $return_path . $rand);
        }
 
        killme();
 }
-