2019-05-04 19:20:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2019-05-04 19:20:39 +00:00
|
|
|
use Friendica\Model\Item;
|
2019-09-28 18:09:11 +00:00
|
|
|
use Friendica\Core\Session;
|
2019-05-04 19:20:39 +00:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
use Friendica\Util\Strings;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs a like and optionally redirects to a return path
|
|
|
|
*/
|
|
|
|
class Like extends BaseModule
|
|
|
|
{
|
2019-11-05 21:48:54 +00:00
|
|
|
public static function rawContent(array $parameters = [])
|
2019-05-04 19:20:39 +00:00
|
|
|
{
|
2019-09-28 18:09:11 +00:00
|
|
|
if (!Session::isAuthenticated()) {
|
2019-05-04 19:20:39 +00:00
|
|
|
throw new HTTPException\ForbiddenException();
|
|
|
|
}
|
|
|
|
|
|
|
|
$verb = Strings::escapeTags(trim($_GET['verb']));
|
|
|
|
|
|
|
|
if (!$verb) {
|
|
|
|
$verb = 'like';
|
|
|
|
}
|
|
|
|
|
2019-12-15 21:34:11 +00:00
|
|
|
$app = DI::app();
|
2019-05-04 19:20:39 +00:00
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
$itemId = (($app->argc > 1) ? Strings::escapeTags(trim($app->argv[1])) : 0);
|
|
|
|
|
|
|
|
if (!Item::performLike($itemId, $verb)) {
|
|
|
|
throw new HTTPException\BadRequestException();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decide how to return. If we were called with a 'return' argument,
|
|
|
|
// then redirect back to the calling page. If not, just quietly end
|
2019-10-15 13:20:32 +00:00
|
|
|
$returnPath = $_REQUEST['return'] ?? '';
|
2019-05-04 19:20:39 +00:00
|
|
|
|
|
|
|
if (!empty($returnPath)) {
|
|
|
|
$rand = '_=' . time();
|
|
|
|
if (strpos($returnPath, '?')) {
|
|
|
|
$rand = "&$rand";
|
|
|
|
} else {
|
|
|
|
$rand = "?$rand";
|
|
|
|
}
|
|
|
|
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($returnPath . $rand);
|
2019-05-04 19:20:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|