* @copyright 2017 * @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 . * */ namespace OCA\Circles\Controller; use OCA\Circles\AppInfo\Application; use OCA\Circles\Service\ConfigService; use OCA\Circles\Service\EventWrapperService; use OCA\Circles\Service\FederatedEventService; use OCA\Circles\Service\RemoteDownstreamService; use OCA\Circles\Service\RemoteUpstreamService; use OCA\Circles\Tools\Traits\TAsync; use OCA\Circles\Tools\Traits\TStringTools; use OCP\AppFramework\Controller; use OCP\AppFramework\Http; use OCP\AppFramework\Http\DataResponse; use OCP\IRequest; /** * Class EventWrapperController * * @package OCA\Circles\Controller */ class EventWrapperController extends Controller { use TStringTools; use TAsync; /** @var EventWrapperService */ private $eventWrapperService; /** @var FederatedEventService */ private $federatedEventService; /** @var RemoteUpstreamService */ private $remoteUpstreamService; /** @var RemoteDownstreamService */ private $remoteDownstreamService; /** @var ConfigService */ private $configService; /** * EventWrapperController constructor. * * @param string $appName * @param IRequest $request * @param EventWrapperService $eventWrapperService * @param FederatedEventService $federatedEventService * @param RemoteUpstreamService $remoteUpstreamService * @param RemoteDownstreamService $remoteDownstreamService * @param ConfigService $configService */ public function __construct( string $appName, IRequest $request, EventWrapperService $eventWrapperService, FederatedEventService $federatedEventService, RemoteUpstreamService $remoteUpstreamService, RemoteDownstreamService $remoteDownstreamService, ConfigService $configService ) { parent::__construct($appName, $request); $this->eventWrapperService = $eventWrapperService; $this->federatedEventService = $federatedEventService; $this->remoteUpstreamService = $remoteUpstreamService; $this->remoteDownstreamService = $remoteDownstreamService; $this->configService = $configService; $this->setup('app', Application::APP_ID); $this->setupInt(self::$SETUP_TIME_LIMIT, 900); } /** * Called locally. * * Async process and broadcast the event to every instances of GS * This should be initiated by the instance that owns the Circles. * * @PublicPage * @NoCSRFRequired * * @param string $token * * @return DataResponse */ public function asyncBroadcast(string $token): DataResponse { $wrappers = $this->remoteUpstreamService->getEventsByToken($token); if (empty($wrappers) && $token !== 'test-dummy-token') { return new DataResponse([], Http::STATUS_OK); } // closing socket, keep current process running. $this->async(); foreach ($wrappers as $wrapper) { $this->eventWrapperService->manageWrapper($wrapper); } $this->eventWrapperService->confirmStatus($token); // so circles:check can check async is fine if ($token === 'test-dummy-token') { sleep(4); } // exit() or useless log will be generated exit(); } // /** // * Status Event. This is an event to check status of items between instances. // * // * @PublicPage // * @NoCSRFRequired // * // * @return DataResponse // */ // public function status(): DataResponse { // $data = file_get_contents('php://input'); // // try { // $event = new GSEvent(); // $event->importFromJson($data); // $this->gsDownstreamService->statusEvent($event); // // return $this->success(['success' => $event]); // } catch (Exception $e) { // return $this->fail(['data' => $data, 'error' => $e->getMessage()]); // } // } }