friendica/src/Module/Item/Activity.php

92 lines
2.7 KiB
PHP
Raw Normal View History

2019-05-04 21:20:39 +02:00
<?php
2020-02-09 15:45:36 +01:00
/**
2021-03-29 08:40:20 +02:00
* @copyright Copyright (C) 2010-2021, the Friendica project
2020-02-09 15:45:36 +01:00
*
* @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 21:20:39 +02:00
namespace Friendica\Module\Item;
2019-05-04 21:20:39 +02:00
use Friendica\BaseModule;
use Friendica\Core\Logger;
use Friendica\Core\Protocol;
use Friendica\Core\System;
use Friendica\DI;
2019-05-04 21:20:39 +02:00
use Friendica\Model\Item;
2019-09-28 20:09:11 +02:00
use Friendica\Core\Session;
use Friendica\Model\Post;
2019-05-04 21:20:39 +02:00
use Friendica\Network\HTTPException;
use Friendica\Protocol\Diaspora;
2019-05-04 21:20:39 +02:00
/**
* Performs an activity (like, dislike, announce, attendyes, attendno, attendmaybe)
* and optionally redirects to a return path
2019-05-04 21:20:39 +02:00
*/
class Activity extends BaseModule
2019-05-04 21:20:39 +02:00
{
protected function rawContent(array $request = [])
2019-05-04 21:20:39 +02:00
{
2019-09-28 20:09:11 +02:00
if (!Session::isAuthenticated()) {
2019-05-04 21:20:39 +02:00
throw new HTTPException\ForbiddenException();
}
if (empty($this->parameters['id']) || empty($this->parameters['verb'])) {
throw new HTTPException\BadRequestException();
2019-05-04 21:20:39 +02:00
}
$verb = $this->parameters['verb'];
$itemId = $this->parameters['id'];
Logger::info('Blubb-1', ['id' => $itemId, 'verb' => $verb]);
2020-11-07 09:22:59 +01:00
if (in_array($verb, ['announce', 'unannounce'])) {
$item = Post::selectFirst(['network', 'uri-id', 'uid'], ['id' => $itemId]);
Logger::info('Blubb-2', ['id' => $itemId, 'item' => $item]);
if ($item['network'] == Protocol::DIASPORA) {
Logger::info('Blubb-3', ['id' => $itemId]);
$id = Diaspora::performReshare($item['uri-id'], $item['uid']);
Logger::info('Blubb-ende', ['id' => $id]);
}
}
Logger::info('Blubb-activity', ['id' => $itemId]);
2020-08-09 20:42:25 +02:00
if (!Item::performActivity($itemId, $verb, local_user())) {
2019-05-04 21:20:39 +02:00
throw new HTTPException\BadRequestException();
}
// See if we've been passed a return path to redirect to
$return_path = $_REQUEST['return'] ?? '';
if (!empty($return_path)) {
2019-05-04 21:20:39 +02:00
$rand = '_=' . time();
if (strpos($return_path, '?')) {
2019-05-04 21:20:39 +02:00
$rand = "&$rand";
} else {
$rand = "?$rand";
}
DI::baseUrl()->redirect($return_path . $rand);
2019-05-04 21:20:39 +02:00
}
$return = [
'status' => 'ok',
'item_id' => $itemId,
'verb' => $verb,
'state' => 1,
];
System::jsonExit($return);
2019-05-04 21:20:39 +02:00
}
}