close(403, JText::translate('JINVALID_TOKEN')); } // fetch request data $contextId = $app->input->getUint('id_context', 0); $context = $app->input->get('context', ''); try { /** @var VBOChatMediator */ $chat = VBOFactory::getChatMediator(); /** @var VBOChatContext */ $context = $chat->createContext($context, $contextId); if (!$chat->getUser()->can('chat.render', $context)) { // not authorized throw new RuntimeException(JText::translate('JERROR_ALERTNOAUTHOR'), 403); } // render the chat $html = $chat->render($context, [ 'assets' => false, ]); } catch (Exception $error) { VBOHttpDocument::getInstance($app)->close($error->getCode() ?: 500, $error->getMessage()); } // output the result content VBOHttpDocument::getInstance($app)->json(['html' => $html]); } /** * Task used to periodically search for new messages under a given context. * * @return void */ public function sync_messages() { $app = JFactory::getApplication(); if (!JSession::checkToken()) { VBOHttpDocument::getInstance($app)->close(403, JText::translate('JINVALID_TOKEN')); } // fetch request data $contextId = $app->input->getUint('id_context', 0); $context = $app->input->get('context', ''); $threshold = $app->input->getUint('threshold', 0); try { /** @var VBOChatMediator */ $chat = VBOFactory::getChatMediator(); /** @var VBOChatContext */ $context = $chat->createContext($context, $contextId); if (!$chat->getUser()->can('chat.sync', $context)) { // not authorized throw new RuntimeException(JText::translate('JERROR_ALERTNOAUTHOR'), 403); } // obtain all the messages under the created context with an ID higher than the specified threshold $messages = $chat->getMessages( (new VBOChatSearch) ->withContext($context) ->message($threshold, '>') ); // maintain the user logged in $chat->getUser()->keepAlive($context); // obtain the public context metadata $metadata = $context->getMetadata($public = true); } catch (Exception $error) { VBOHttpDocument::getInstance($app)->close($error->getCode() ?: 500, $error->getMessage()); } // output the result content VBOHttpDocument::getInstance($app)->json([ 'messages' => $messages, 'metadata' => $metadata, ]); } /** * Task used to scan the pagination of a specified chat. * * @return void */ public function load_older_messages() { $app = JFactory::getApplication(); if (!JSession::checkToken()) { VBOHttpDocument::getInstance($app)->close(403, JText::translate('JINVALID_TOKEN')); } // fetch request data $contextId = $app->input->getUint('id_context', 0); $context = $app->input->get('context', ''); $start = $app->input->getUint('start', 0); $limit = $app->input->getUint('limit', 20); $datetime = $app->input->getString('datetime', null); try { /** @var VBOChatMediator */ $chat = VBOFactory::getChatMediator(); /** @var VBOChatContext */ $context = $chat->createContext($context, $contextId); if (!$chat->getUser()->can('chat.load', $context)) { // not authorized throw new RuntimeException(JText::translate('JERROR_ALERTNOAUTHOR'), 403); } // obtain all the messages under the created context with a creation date equal or lower than the specified threshold $messages = $chat->getMessages( (new VBOChatSearch) ->start($start) ->limit($limit) ->withContext($context) ->date($datetime, '<=') ); } catch (Exception $error) { VBOHttpDocument::getInstance($app)->close($error->getCode() ?: 500, $error->getMessage()); } // output the result content VBOHttpDocument::getInstance($app)->json($messages); } /** * Task used to send a chat message under a given context. * * @return void */ public function send() { $app = JFactory::getApplication(); if (!JSession::checkToken()) { VBOHttpDocument::getInstance($app)->close(403, JText::translate('JINVALID_TOKEN')); } // fetch request data $contextId = $app->input->getUint('id_context', 0); $context = $app->input->get('context', ''); $message = $app->input->getString('message', ''); $createdon = $app->input->getString('createdon', ''); $attachments = $app->input->get('attachments', [], 'array'); try { /** @var VBOChatMediator */ $chat = VBOFactory::getChatMediator(); /** @var VBOChatContext */ $context = $chat->createContext($context, $contextId); if (!$chat->getUser()->can('chat.send', $context)) { // not authorized throw new RuntimeException(JText::translate('JERROR_ALERTNOAUTHOR'), 403); } foreach ($attachments as &$attachment) { // create attachment from JSON $attachment = new VBOChatAttachment($attachment); } /** @var VBOChatMessage */ $message = $chat->createMessage([ 'context' => $context->getAlias(), 'id_context' => $context->getID(), 'message' => $message, 'attachments' => $attachments, 'createdon' => $createdon, ]); // deliver the message $chat->send($message); } catch (Exception $error) { VBOHttpDocument::getInstance($app)->close($error->getCode() ?: 500, $error->getMessage()); } // output the result content VBOHttpDocument::getInstance($app)->json($message); } /** * AJAX end-point used to upload attachments before sending the message. * Files are uploaded onto the attachments folder of the front-end and a * JSON encoded objects array is returned with the details of each file. * * @return void */ public function upload_attachments() { $app = JFactory::getApplication(); if (!JSession::checkToken()) { VBOHttpDocument::getInstance($app)->close(403, JText::translate('JINVALID_TOKEN')); } // fetch request data $contextId = $app->input->getUint('id_context', 0); $context = $app->input->get('context', ''); $files = $app->input->files->get('attachments', [], 'raw'); if (isset($files['name'])) { // we have a single associative array, we need to push it within a list, // because the upload iterates the $files array $files = [$files]; } $attachments = []; try { /** @var VBOChatMediator */ $chat = VBOFactory::getChatMediator(); /** @var VBOChatContext */ $context = $chat->createContext($context, $contextId); if (!$chat->getUser()->can('chat.attachment.add', $context)) { // not authorized throw new RuntimeException(JText::translate('JERROR_ALERTNOAUTHOR'), 403); } foreach ($files as $file) { /** @var VBOChatAttachment */ $attachment = $chat->uploadAttachment($file); // register attachment within the list $attachments[] = $attachment; } } catch (Exception $error) { // iterate all uploaded attachments and unlink them foreach ($attachments as $attachment) { $chat->removeAttachment($attachment); } VBOHttpDocument::getInstance($app)->close($error->getCode() ?: 500, $error->getMessage()); } // output the result content VBOHttpDocument::getInstance($app)->json($attachments); } /** * AJAX end-point used to remove the selected attachment. * * @return void */ public function remove_attachment() { $app = JFactory::getApplication(); if (!JSession::checkToken()) { VBOHttpDocument::getInstance($app)->close(403, JText::translate('JINVALID_TOKEN')); } // fetch request data $contextId = $app->input->getUint('id_context', 0); $context = $app->input->get('context', ''); $file = $app->input->get('attachment', [], 'array'); try { /** @var VBOChatMediator */ $chat = VBOFactory::getChatMediator(); /** @var VBOChatContext */ $context = $chat->createContext($context, $contextId); if (!$chat->getUser()->can('chat.attachment.remove', $context)) { // not authorized throw new RuntimeException(JText::translate('JERROR_ALERTNOAUTHOR'), 403); } // create attachment $attachment = new VBOChatAttachment($file); // attempt to remove the attachment if (!$chat->removeAttachment($attachment)) { throw new RuntimeException('Unable to remove the attachment: ' . $attachment->getName(), 403); } } catch (Exception $error) { VBOHttpDocument::getInstance($app)->close($error->getCode() ?: 500, $error->getMessage()); } $app->close(); } /** * Task used to read the unread messages of a specified chat. * * @return void */ public function read_messages() { $app = JFactory::getApplication(); if (!JSession::checkToken()) { VBOHttpDocument::getInstance($app)->close(403, JText::translate('JINVALID_TOKEN')); } // fetch request data $contextId = $app->input->getUint('id_context', 0); $context = $app->input->get('context', ''); $datetime = $app->input->getString('datetime', null); try { /** @var VBOChatMediator */ $chat = VBOFactory::getChatMediator(); /** @var VBOChatContext */ $context = $chat->createContext($context, $contextId); if (!$chat->getUser()->can('chat.read', $context)) { // not authorized throw new RuntimeException(JText::translate('JERROR_ALERTNOAUTHOR'), 403); } // obtain a list holding the ID of all the read messages $messages = $chat->readMessages($context, $datetime); } catch (Exception $error) { VBOHttpDocument::getInstance($app)->close($error->getCode() ?: 500, $error->getMessage()); } // output the result content VBOHttpDocument::getInstance($app)->json($messages); } /** * Starts a new chat session as guest. * In case the user already started a session from this browser, the existing * session will be returned instead. * * @return void * * @since 1.8.8 */ public function start_session() { $app = JFactory::getApplication(); try { if (!JSession::checkToken()) { throw new Exception(JText::translate('JINVALID_TOKEN'), 403); } $sessionModel = new VBOChatSessionModel; // get session from cookie $session = $sessionModel->getFromCookie(); $sessionId = $session->id ?? null; // check whether a session was already started for this user if (!$sessionId) { $data = []; $data['name'] = $app->input->getString('name'); $data['email'] = $app->input->getString('email'); // start a new session $sessionId = $sessionModel->save($data); } // validate session ID one more time if (!$sessionId) { throw new RuntimeException('Failed starting a new session', 400); } } catch (Exception $error) { VBOHttpDocument::getInstance($app)->close($error->getCode() ?: 500, $error->getMessage()); } // send session ID to the caller VBOHttpDocument::getInstance($app)->json(['id' => $sessionId]); } /** * Ends an existing session as guest. * It is possible to immediately start a new session after closing the existing one. * * @return void * * @since 1.8.8 */ public function end_session() { $app = JFactory::getApplication(); try { if (!JSession::checkToken()) { throw new Exception(JText::translate('JINVALID_TOKEN'), 403); } $sessionModel = new VBOChatSessionModel; // load existing session first $session = $sessionModel->getFromCookie(); if (!$session) { throw new Exception('Session not started yet.', 400); } if ($session->metadata['banned'] ?? false) { throw new Exception('You cannot close and start a new session because you have been banned.', 403); } /** @var VBOChatMediator */ $chat = VBOFactory::getChatMediator(); // make sure the user is allowed to end the session if (!$chat->getUser()->can('chat.session.end', new VBOChatContextSession($session->id))) { // not authorized throw new RuntimeException(JText::translate('JERROR_ALERTNOAUTHOR'), 403); } // close session $sessionModel->endSession(); $sessionId = 0; // check if we should restart a new one if ($app->input->getBool('restart')) { // start a new session $sessionId = $sessionModel->save([ 'name' => $session->name, 'email' => $session->email, ]); } } catch (Exception $error) { VBOHttpDocument::getInstance($app)->close($error->getCode() ?: 500, $error->getMessage()); } // send session ID to the caller VBOHttpDocument::getInstance($app)->json(['id' => $sessionId]); } }