friendica/mod/like.php

50 lines
978 B
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;
use Friendica\Util\Strings;
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
}
$verb = Strings::escapeTags(trim($_GET['verb']));
2010-09-17 12:10:19 +02:00
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) ? Strings::escapeTags(trim($a->argv[1])) : 0);
2010-09-17 12:10:19 +02:00
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 = defaults($_REQUEST, 'return', '');
like_content_return($a, $return_path);
2018-12-26 06:40:12 +01:00
exit();
}
// 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(App $a, $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";
}
$a->internalRedirect($return_path . $rand);
}
}