2019-05-04 15:20:39 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-04 15:20:39 -04:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2020-10-11 15:58:28 -04:00
|
|
|
use Friendica\Content\Text\BBCode;
|
|
|
|
use Friendica\Core\Protocol;
|
2020-05-27 08:30:26 -04:00
|
|
|
use Friendica\Core\System;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-05-04 15:20:39 -04:00
|
|
|
use Friendica\Model\Item;
|
2019-09-28 14:09:11 -04:00
|
|
|
use Friendica\Core\Session;
|
2020-10-11 15:58:28 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-05-04 15:20:39 -04: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 16:48:54 -05:00
|
|
|
public static function rawContent(array $parameters = [])
|
2019-05-04 15:20:39 -04:00
|
|
|
{
|
2019-09-28 14:09:11 -04:00
|
|
|
if (!Session::isAuthenticated()) {
|
2019-05-04 15:20:39 -04:00
|
|
|
throw new HTTPException\ForbiddenException();
|
|
|
|
}
|
|
|
|
|
|
|
|
$verb = Strings::escapeTags(trim($_GET['verb']));
|
|
|
|
|
|
|
|
if (!$verb) {
|
|
|
|
$verb = 'like';
|
|
|
|
}
|
|
|
|
|
2019-12-15 16:34:11 -05:00
|
|
|
$app = DI::app();
|
2019-05-04 15:20:39 -04:00
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
$itemId = (($app->argc > 1) ? Strings::escapeTags(trim($app->argv[1])) : 0);
|
|
|
|
|
2020-10-11 15:58:28 -04:00
|
|
|
if (in_array($verb, [ 'announce', 'unannounce'])) {
|
|
|
|
$item = Item::selectFirst(['network'], ['id' => $itemId]);
|
|
|
|
if ($item['network'] == Protocol::DIASPORA) {
|
|
|
|
self::performDiasporaReshare($itemId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-09 14:42:25 -04:00
|
|
|
if (!Item::performActivity($itemId, $verb, local_user())) {
|
2019-05-04 15:20:39 -04:00
|
|
|
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 09:20:32 -04:00
|
|
|
$returnPath = $_REQUEST['return'] ?? '';
|
2019-05-04 15:20:39 -04:00
|
|
|
|
|
|
|
if (!empty($returnPath)) {
|
|
|
|
$rand = '_=' . time();
|
|
|
|
if (strpos($returnPath, '?')) {
|
|
|
|
$rand = "&$rand";
|
|
|
|
} else {
|
|
|
|
$rand = "?$rand";
|
|
|
|
}
|
|
|
|
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($returnPath . $rand);
|
2019-05-04 15:20:39 -04:00
|
|
|
}
|
2020-05-27 08:30:26 -04:00
|
|
|
|
|
|
|
System::jsonExit(['status' => 'OK']);
|
2019-05-04 15:20:39 -04:00
|
|
|
}
|
2020-10-11 15:58:28 -04:00
|
|
|
|
|
|
|
private static function performDiasporaReshare(int $itemId)
|
|
|
|
{
|
|
|
|
$fields = ['uri-id', 'body', 'title', 'attach', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink'];
|
|
|
|
$item = Item::selectFirst($fields, ['id' => $itemId, 'private' => [Item::PUBLIC, Item::UNLISTED]]);
|
|
|
|
if (!DBA::isResult($item) || ($item['body'] == '')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strpos($item['body'], '[/share]') !== false) {
|
|
|
|
$pos = strpos($item['body'], '[share');
|
|
|
|
$post = substr($item['body'], $pos);
|
|
|
|
} else {
|
|
|
|
$post = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid']);
|
|
|
|
|
|
|
|
if (!empty($item['title'])) {
|
|
|
|
$post .= '[h3]' . $item['title'] . "[/h3]\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$post .= $item['body'];
|
|
|
|
$post .= '[/share]';
|
|
|
|
}
|
|
|
|
$_REQUEST['body'] = $post;
|
|
|
|
$_REQUEST['attach'] = $item['attach'];
|
|
|
|
$_REQUEST['profile_uid'] = local_user();
|
|
|
|
|
|
|
|
require_once 'mod/item.php';
|
|
|
|
item_post(DI::app());
|
|
|
|
}
|
2019-05-04 15:20:39 -04:00
|
|
|
}
|