friendica/mod/like.php

53 lines
1.0 KiB
PHP
Raw Normal View History

2010-09-17 12:10:19 +02:00
<?php
use Friendica\App;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
2018-02-01 20:17:08 +01:00
use Friendica\Model\Item;
2017-12-21 23:54:58 +01:00
require_once 'include/items.php';
2010-09-17 12:10:19 +02:00
function like_content(App $a) {
2017-12-21 23:54:58 +01:00
if (!local_user() && !remote_user()) {
return false;
2010-09-17 12:10:19 +02:00
}
2010-09-17 12:10:19 +02:00
$verb = notags(trim($_GET['verb']));
2017-12-21 23:54:58 +01:00
if (!$verb) {
2010-09-17 12:10:19 +02:00
$verb = 'like';
2017-12-21 23:54:58 +01:00
}
2010-09-17 12:10:19 +02:00
$item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
2018-02-01 20:17:08 +01:00
$r = Item::performLike($item_id, $verb);
2017-12-21 23:54:58 +01:00
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(System::baseUrl(), $return_path);
killme(); // 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) {
2017-12-21 23:54:58 +01:00
if ($return_path) {
$rand = '_=' . time();
2017-12-21 23:54:58 +01:00
if (strpos($return_path, '?')) {
$rand = "&$rand";
} else {
$rand = "?$rand";
}
goaway($baseurl . "/" . $return_path . $rand);
}
killme();
}