Merge pull request #7090 from nupplaphil/task/mod_like

Move mod/like to src/Module/Like
This commit is contained in:
Hypolite Petovan 2019-05-04 22:02:48 -04:00 committed by GitHub
commit 0046e62077
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 52 additions and 48 deletions

51
src/Module/Like.php Normal file
View file

@ -0,0 +1,51 @@
<?php
namespace Friendica\Module;
use Friendica\BaseModule;
use Friendica\Model\Item;
use Friendica\Network\HTTPException;
use Friendica\Util\Strings;
/**
* Performs a like and optionally redirects to a return path
*/
class Like extends BaseModule
{
public static function rawContent()
{
if (!local_user() && !remote_user()) {
throw new HTTPException\ForbiddenException();
}
$verb = Strings::escapeTags(trim($_GET['verb']));
if (!$verb) {
$verb = 'like';
}
$app = self::getApp();
// @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
$returnPath = defaults($_REQUEST, 'return', '');
if (!empty($returnPath)) {
$rand = '_=' . time();
if (strpos($returnPath, '?')) {
$rand = "&$rand";
} else {
$rand = "?$rand";
}
$app->internalRedirect($returnPath . $rand);
}
}
}