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

208 lines
5.0 KiB
PHP
Raw Normal View History

2011-11-26 14:17:17 +00:00
<?php
2013-01-19 19:36:40 +00:00
namespace chat\page;
use \chat\data;
use \wcf\system\exception;
use \wcf\system\WCF;
2011-11-26 14:17:17 +00:00
/**
* Shows the chat-interface
*
* @author Tim Düsterhus
2013-01-19 19:36:40 +00:00
* @copyright 2010-2013 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>
2013-01-19 19:36:40 +00:00
* @package be.bastelstu.chat
2011-11-26 14:17:17 +00:00
* @subpackage page
*/
2013-01-19 19:36:40 +00:00
class ChatPage extends \wcf\page\AbstractPage {
2012-08-08 14:51:24 +00:00
/**
* @see wcf\page\AbstractPage::$loginRequired
*/
public $loginRequired = true;
/**
* @see \wcf\page\AbstractPage::$neededModules
*/
public $neededModules = array('MODULE_CHAT');
/**
* @see \wcf\page\AbstractPage::$neededPermissions
*/
public $neededPermissions = array();
2012-06-04 18:30:08 +00:00
/**
* The current room.
*
2013-01-19 19:36:40 +00:00
* @var \chat\data\room\Room
2012-06-04 18:30:08 +00:00
*/
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.
*
2013-01-19 19:36:40 +00:00
* @var \chat\data\room\RoomList
2012-06-04 18:30:08 +00:00
*/
2011-11-26 16:37:46 +00:00
public $rooms = array();
2012-06-04 18:30:08 +00:00
2013-06-01 12:37:18 +00:00
/**
* List of installed commands.
*
* @var array<string>
*/
public $commands = 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
2013-05-10 15:51:48 +00:00
/**
* @see wcf\page\AbstractPage::$enableTracking
*/
public $enableTracking = true;
2011-11-26 14:29:28 +00:00
/**
* @see \wcf\page\IPage::assignVariables()
*/
public function assignVariables() {
parent::assignVariables();
WCF::getTPL()->assign(array(
'room' => $this->room,
'roomID' => $this->roomID,
2011-11-27 12:07:53 +00:00
'rooms' => $this->rooms,
2013-06-01 12:37:18 +00:00
'commands' => $this->commands,
'messageTypes' => (new \ReflectionClass('\chat\data\message\Message'))->getConstants(),
'defaultSmilies' => $this->defaultSmilies,
'smileyCategories' => $this->smileyCategories,
2013-01-19 19:36:40 +00:00
'sidebarCollapsed' => \wcf\system\user\collapsible\content\UserCollapsibleContentHandler::getInstance()->isCollapsed('com.woltlab.wcf.collapsibleSidebar', 'be.bastelstu.chat.ChatPage'),
'sidebarName' => 'be.bastelstu.chat.ChatPage'
));
}
/**
* @see \wcf\page\IPage::readData()
*/
public function readData() {
parent::readData();
$this->readRoom();
2013-06-01 12:37:18 +00:00
$this->readCommands();
2013-04-28 14:54:56 +00:00
// get default smilies
if (MODULE_SMILEY) {
$this->smileyCategories = \wcf\data\smiley\SmileyCache::getInstance()->getCategories();
foreach ($this->smileyCategories as $index => $category) {
$category->loadSmilies();
// remove empty categories
if (!count($category) || $category->isDisabled) {
unset($this->smileyCategories[$index]);
}
}
$firstCategory = reset($this->smileyCategories);
if ($firstCategory) {
$this->defaultSmilies = \wcf\data\smiley\SmileyCache::getInstance()->getCategorySmilies($firstCategory->categoryID ?: null);
}
}
}
/**
* @see \wcf\page\IPage::readParameters()
*/
public function readParameters() {
parent::readParameters();
2011-12-03 16:37:20 +00:00
if (isset($_REQUEST['id'])) $this->roomID = (int) $_REQUEST['id'];
}
2013-06-01 12:37:18 +00:00
/**
* Reads installed commands.
*/
public function readCommands() {
$regex = new \wcf\system\Regex('Command.class.php$');
2013-06-01 15:20:43 +00:00
$directory = \wcf\util\DirectoryUtil::getInstance(CHAT_DIR.'lib/system/command/commands/', false);
2013-06-01 12:37:18 +00:00
$files = $directory->getFiles(SORT_ASC, $regex);
foreach ($files as $file) {
$command = $regex->replace(basename($file), '');
if ($command == 'Plain') continue;
$this->commands[] = \wcf\util\StringUtil::toLowerCase($command);
}
2013-06-17 21:48:59 +00:00
$this->commands = array_merge($this->commands, array_keys(\chat\system\command\CommandHandler::getAliasMap()));
sort($this->commands);
2013-06-01 12:37:18 +00:00
}
2011-11-27 16:22:07 +00:00
/**
* Reads room data.
2011-11-27 16:22:07 +00:00
*/
public function readRoom() {
2013-05-24 00:21:49 +00:00
$this->rooms = data\room\RoomCache::getInstance()->getRooms();
if ($this->roomID === 0) {
// no room given
2012-09-07 20:37:25 +00:00
$room = reset($this->rooms);
if ($room === null) {
// no valid room found
throw new exception\IllegalLinkException();
}
2012-09-07 20:37:25 +00:00
// redirect to first chat-room
\wcf\util\HeaderUtil::redirect(\wcf\system\request\LinkHandler::getInstance()->getLink('Chat', array(
'object' => $room
)));
exit;
}
if (!isset($this->rooms[$this->roomID])) throw new exception\IllegalLinkException();
2012-09-07 20:37:25 +00:00
$this->room = $this->rooms[$this->roomID];
if (!$this->room->canEnter()) throw new exception\PermissionDeniedException();
}
/**
* @see \wcf\page\IPage::show()
2011-11-26 14:29:28 +00:00
*/
public function show() {
2013-01-19 19:36:40 +00:00
\wcf\system\menu\page\PageMenu::getInstance()->setActiveMenuItem('chat.header.menu.chat');
// remove index breadcrumb
WCF::getBreadcrumbs()->remove(0);
2011-11-26 14:29:28 +00:00
parent::show();
}
2013-05-10 15:51:48 +00:00
/**
* @see wcf\page\ITrackablePage::getObjectType()
*/
public function getObjectType() {
return 'be.bastelstu.chat.room';
}
/**
* @see wcf\page\ITrackablePage::getObjectID()
*/
public function getObjectID() {
2013-05-23 20:40:47 +00:00
if ($this->room === null) return 0;
2013-05-10 15:51:48 +00:00
return $this->room->roomID;
}
2011-11-26 14:17:17 +00:00
}