1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-10-31 14:10:08 +00:00
Tims-Chat/file/lib/page/ChatPage.class.php

260 lines
6.4 KiB
PHP
Raw Normal View History

2011-11-26 14:17:17 +00:00
<?php
namespace wcf\page;
2011-11-26 16:37:46 +00:00
use \wcf\data\chat;
use \wcf\system\cache\CacheHandler;
use \wcf\system\WCF;
2011-11-26 14:17:17 +00:00
/**
* Shows the chat-interface
*
* @author Tim Düsterhus
2012-01-28 16:50:33 +00:00
* @copyright 2010-2012 Tim Düsterhus
2011-11-26 14:17:17 +00:00
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package be.bastelstu.wcf.chat
2011-11-26 14:17:17 +00:00
* @subpackage page
*/
class ChatPage extends AbstractPage {
2012-06-04 18:30:08 +00:00
/**
* The version of this installation of Tims Chat 3.
*
* @var string
*/
public $chatVersion = '';
2012-06-04 19:10:03 +00:00
2012-08-08 14:51:24 +00:00
/**
* @see wcf\page\AbstractPage::$loginRequired
*/
public $loginRequired = true;
/**
* @see \wcf\page\AbstractPage::$neededModules
*/
2011-12-10 15:56:36 +00:00
public $neededModules = array('CHAT_ACTIVE');
/**
* @see \wcf\page\AbstractPage::$neededPermissions
*/
public $neededPermissions = array();
2012-06-04 18:30:08 +00:00
/**
* The last X messages for the current room.
*
* @var array<\wcf\data\chat\message\ChatMessage>
*/
public $newestMessages = array();
2012-06-04 18:30:08 +00:00
/**
* The current room.
*
* @var \wcf\data\chat\room\ChatRoom
*/
2011-11-26 16:37:46 +00:00
public $room = null;
2012-06-04 18:30:08 +00:00
/**
* The given roomID.
*
* @var integer
*/
2011-11-26 16:37:46 +00:00
public $roomID = 0;
2012-06-04 18:30:08 +00:00
/**
* List of accessible rooms.
*
* @var \wcf\data\chat\room\ChatRoomList
*/
2011-11-26 16:37:46 +00:00
public $rooms = array();
2012-06-04 18:30:08 +00:00
/**
* List of smilies in the default category.
*
* @var array<\wcf\data\smiley\Smiley>
* @see \wcf\data\smiley\SmileyCache
*/
public $defaultSmilies = array();
/**
* List of all smiley categories.
*
* @var array<\wcf\data\smiley\SmileyCategory>
* @see \wcf\data\smiley\SmileyCache
*/
public $smileyCategories = array();
2012-06-04 18:30:08 +00:00
/**
* Values read from the UserStorage of the current user.
*
* @var array
*/
public $userData = array();
2011-11-26 14:29:28 +00:00
/**
* @see \wcf\page\IPage::assignVariables()
*/
public function assignVariables() {
parent::assignVariables();
WCF::getTPL()->assign(array(
'chatVersion' => $this->chatVersion,
'newestMessages' => $this->newestMessages,
'room' => $this->room,
'roomID' => $this->roomID,
2011-11-27 12:07:53 +00:00
'rooms' => $this->rooms,
'defaultSmilies' => $this->defaultSmilies,
'smileyCategories' => $this->smileyCategories
));
}
2011-11-27 16:22:07 +00:00
/**
* Reads chat-version. Used to avoid caching of JS-File when Tims Chat is updated.
*/
public function readChatVersion() {
CacheHandler::getInstance()->addResource(
'packages',
WCF_DIR.'cache/cache.packages.php',
'wcf\system\cache\builder\PackageCacheBuilder'
);
$packages = CacheHandler::getInstance()->get('packages');
foreach ($packages as $package) {
if ($package->package != \wcf\util\ChatUtil::PACKAGE_IDENTIFIER) continue;
$this->chatVersion = $package->packageVersion;
2011-11-27 16:22:07 +00:00
return;
}
}
/**
* @see \wcf\page\IPage::readData()
*/
public function readData() {
parent::readData();
$this->readRoom();
$this->userData['color'] = \wcf\util\ChatUtil::readUserData('color');
2012-04-15 19:37:20 +00:00
\wcf\util\ChatUtil::writeUserData(array(
'roomID' => $this->room->roomID,
'away' => null,
'lastActivity' => TIME_NOW
));
2011-12-10 17:05:21 +00:00
if (CHAT_DISPLAY_JOIN_LEAVE) {
2011-12-13 21:35:11 +00:00
$messageAction = new chat\message\ChatMessageAction(array(), 'create', array(
'data' => array(
'roomID' => $this->room->roomID,
'sender' => WCF::getUser()->userID,
'username' => WCF::getUser()->username,
'time' => TIME_NOW,
'type' => chat\message\ChatMessage::TYPE_JOIN,
2012-08-28 19:53:21 +00:00
'message' => serialize(array('ipAddress' => \wcf\util\UserUtil::convertIPv6To4(\wcf\util\UserUtil::getIpAddress()))),
2011-12-13 21:35:11 +00:00
'color1' => $this->userData['color'][1],
'color2' => $this->userData['color'][2]
)
2011-12-10 17:05:21 +00:00
));
2011-12-13 21:35:11 +00:00
$messageAction->executeAction();
2012-06-04 18:30:08 +00:00
$messageAction->getReturnValues();
2011-12-10 17:05:21 +00:00
}
2011-11-27 12:07:53 +00:00
$this->newestMessages = chat\message\ChatMessageList::getNewestMessages($this->room, CHAT_LASTMESSAGES);
try {
\wcf\util\ChatUtil::writeUserData(array('lastSeen' => end($this->newestMessages)->messageID));
}
catch (\wcf\system\exception\SystemException $e) {
\wcf\util\ChatUtil::writeUserData(array('lastSeen' => 0));
}
$smileyCategories = \wcf\data\smiley\SmileyCache::getInstance()->getCategories();
foreach($smileyCategories as $category) {
if(!$category->disabled) $this->smileyCategories[] = $category;
}
$this->defaultSmilies = \wcf\data\smiley\SmileyCache::getInstance()->getCategorySmilies();
$this->readChatVersion();
}
/**
* @see \wcf\page\IPage::readParameters()
*/
public function readParameters() {
parent::readParameters();
2012-02-18 16:21:57 +00:00
switch ($this->action) {
case 'Message':
$page = new ChatMessagePage();
$page->__run();
2012-02-18 16:21:57 +00:00
exit;
case 'Log':
exit;
case 'RefreshRoomList':
$page = new ChatRefreshRoomListPage();
$page->__run();
2012-02-18 16:21:57 +00:00
exit;
case 'Send':
$form = new \wcf\form\ChatForm();
$form->__run();
2012-02-18 16:21:57 +00:00
exit;
case 'Leave':
$action = new \wcf\action\ChatLeaveAction();
$action->__run();
2012-02-18 16:21:57 +00:00
exit;
case 'Copyright':
$page = new ChatCopyrightPage();
$page->__run();
2012-02-18 16:21:57 +00:00
exit;
}
2011-12-03 16:37:20 +00:00
if (isset($_REQUEST['id'])) $this->roomID = (int) $_REQUEST['id'];
if (isset($_REQUEST['ajax'])) $this->useTemplate = false;
}
2011-11-27 16:22:07 +00:00
/**
* Reads room data.
2011-11-27 16:22:07 +00:00
*/
public function readRoom() {
$this->rooms = chat\room\ChatRoom::getCache();
if ($this->roomID === 0) {
// no room given
try {
// redirect to first chat-room
$this->rooms->seek(0);
\wcf\util\HeaderUtil::redirect(\wcf\system\request\LinkHandler::getInstance()->getLink('Chat', array(
2011-12-19 15:14:27 +00:00
'object' => $this->rooms->current()
)));
exit;
}
catch (\OutOfBoundsException $e) {
// no valid room found
throw new \wcf\system\exception\IllegalLinkException();
}
}
$this->room = $this->rooms->search($this->roomID);
if (!$this->room) throw new \wcf\system\exception\IllegalLinkException();
2011-12-26 13:14:03 +00:00
if (!$this->room->canEnter()) throw new \wcf\system\exception\PermissionDeniedException();
}
/**
* @see \wcf\page\IPage::show()
2011-11-26 14:29:28 +00:00
*/
public function show() {
\wcf\system\menu\page\PageMenu::getInstance()->setActiveMenuItem('wcf.header.menu.chat');
// remove index breadcrumb
WCF::getBreadcrumbs()->remove(0);
2011-11-26 14:29:28 +00:00
parent::show();
// break if not using ajax
if ($this->useTemplate) exit;
2011-12-03 16:37:20 +00:00
@header('Content-type: application/json');
$messages = array();
foreach ($this->newestMessages as $message) $messages[] = $message->jsonify(true);
2011-12-03 16:37:20 +00:00
echo \wcf\util\JSON::encode(array(
2011-12-10 20:55:34 +00:00
'title' => $this->room->getTitle(),
'topic' => WCF::getLanguage()->get($this->room->topic),
'messages' => $messages
2011-12-03 16:37:20 +00:00
));
exit;
2011-11-26 14:29:28 +00:00
}
2011-11-26 14:17:17 +00:00
}