2010-09-17 06:10:19 -04:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2017-08-26 02:04:21 -04:00
|
|
|
use Friendica\Core\System;
|
2018-02-01 14:17:08 -05:00
|
|
|
use Friendica\Model\Item;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2017-12-21 17:54:58 -05:00
|
|
|
require_once 'include/security.php';
|
|
|
|
require_once 'include/items.php';
|
2010-09-17 06:10:19 -04:00
|
|
|
|
2017-01-09 07:14:25 -05:00
|
|
|
function like_content(App $a) {
|
2017-12-21 17:54:58 -05:00
|
|
|
if (!local_user() && !remote_user()) {
|
2015-12-27 07:52:46 -05:00
|
|
|
return false;
|
2010-09-17 06:10:19 -04:00
|
|
|
}
|
|
|
|
|
2015-12-27 07:52:46 -05:00
|
|
|
|
2010-09-17 06:10:19 -04:00
|
|
|
$verb = notags(trim($_GET['verb']));
|
|
|
|
|
2017-12-21 17:54:58 -05:00
|
|
|
if (!$verb) {
|
2010-09-17 06:10:19 -04:00
|
|
|
$verb = 'like';
|
2017-12-21 17:54:58 -05:00
|
|
|
}
|
2010-09-17 06:10:19 -04:00
|
|
|
|
|
|
|
$item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
|
|
|
|
|
2018-02-01 14:17:08 -05:00
|
|
|
$r = Item::performLike($item_id, $verb);
|
2017-12-21 17:54:58 -05:00
|
|
|
if (!$r) {
|
|
|
|
return;
|
|
|
|
}
|
2012-06-03 01:56:42 -04:00
|
|
|
|
2013-01-26 14:52:21 -05:00
|
|
|
// See if we've been passed a return path to redirect to
|
|
|
|
$return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
|
|
|
|
|
2017-08-26 03:32:10 -04:00
|
|
|
like_content_return(System::baseUrl(), $return_path);
|
2013-01-26 14:52:21 -05:00
|
|
|
killme(); // NOTREACHED
|
2012-06-09 20:39:21 -04:00
|
|
|
}
|
2016-02-07 09:11:34 -05:00
|
|
|
|
2012-06-09 20:39:21 -04:00
|
|
|
|
2013-01-26 14:52:21 -05:00
|
|
|
// Decide how to return. If we were called with a 'return' argument,
|
|
|
|
// then redirect back to the calling page. If not, just quietly end
|
2016-02-07 09:11:34 -05:00
|
|
|
|
2013-01-26 14:52:21 -05:00
|
|
|
function like_content_return($baseurl, $return_path) {
|
2017-12-21 17:54:58 -05:00
|
|
|
if ($return_path) {
|
2013-01-26 14:52:21 -05:00
|
|
|
$rand = '_=' . time();
|
2017-12-21 17:54:58 -05:00
|
|
|
if (strpos($return_path, '?')) {
|
|
|
|
$rand = "&$rand";
|
|
|
|
} else {
|
|
|
|
$rand = "?$rand";
|
|
|
|
}
|
2013-01-26 14:52:21 -05:00
|
|
|
|
|
|
|
goaway($baseurl . "/" . $return_path . $rand);
|
|
|
|
}
|
|
|
|
|
|
|
|
killme();
|
|
|
|
}
|