2011-12-26 16:01:24 +00:00
|
|
|
<?php
|
|
|
|
namespace wcf\page;
|
|
|
|
use \wcf\data\chat;
|
|
|
|
use \wcf\system\WCF;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads new messages.
|
|
|
|
*
|
|
|
|
* @author Tim Düsterhus
|
2012-01-28 16:50:33 +00:00
|
|
|
* @copyright 2010-2012 Tim Düsterhus
|
2011-12-26 16:01:24 +00:00
|
|
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
|
|
|
* @package timwolla.wcf.chat
|
|
|
|
* @subpackage page
|
|
|
|
*/
|
|
|
|
class ChatMessagePage extends AbstractPage {
|
|
|
|
public $messages = array();
|
|
|
|
public $neededModules = array('CHAT_ACTIVE');
|
|
|
|
//public $neededPermissions = array('user.chat.canEnter');
|
|
|
|
public $room = null;
|
|
|
|
public $roomID = 0;
|
2012-01-12 19:04:28 +00:00
|
|
|
public $users = array();
|
2011-12-26 16:01:24 +00:00
|
|
|
public $useTemplate = false;
|
|
|
|
|
|
|
|
/**
|
2012-01-14 11:50:57 +00:00
|
|
|
* @see \wcf\page\Page::readData()
|
2011-12-26 16:01:24 +00:00
|
|
|
*/
|
|
|
|
public function readData() {
|
|
|
|
parent::readData();
|
|
|
|
|
2012-01-14 11:50:57 +00:00
|
|
|
$this->readRoom();
|
|
|
|
$this->readMessages();
|
|
|
|
$this->readUsers();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function readMessages() {
|
2011-12-26 16:01:24 +00:00
|
|
|
$this->messages = chat\message\ChatMessageList::getMessagesSince($this->room, \wcf\util\ChatUtil::readUserData('lastSeen'));
|
2012-01-14 11:50:57 +00:00
|
|
|
|
|
|
|
// update last seen message
|
|
|
|
$sql = "SELECT
|
|
|
|
max(messageID) as messageID
|
|
|
|
FROM
|
|
|
|
wcf".WCF_N."_chat_message";
|
|
|
|
$stmt = WCF::getDB()->prepareStatement($sql);
|
2011-12-26 18:00:32 +00:00
|
|
|
$stmt->execute();
|
|
|
|
$row = $stmt->fetchArray();
|
|
|
|
\wcf\util\ChatUtil::writeUserData(array('lastSeen' => $row['messageID']));
|
2012-01-14 11:50:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function readRoom() {
|
|
|
|
$this->roomID = \wcf\util\ChatUtil::readUserData('roomID');
|
2012-01-12 19:04:28 +00:00
|
|
|
|
2012-01-14 11:50:57 +00:00
|
|
|
$this->room = chat\room\ChatRoom::getCache()->search($this->roomID);
|
|
|
|
if (!$this->room) throw new \wcf\system\exception\IllegalLinkException();
|
|
|
|
if (!$this->room->canEnter()) throw new \wcf\system\exception\PermissionDeniedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function readUsers() {
|
|
|
|
$packageID = \wcf\system\package\PackageDependencyHandler::getPackageID('timwolla.wcf.chat');
|
|
|
|
|
|
|
|
$sql = "SELECT
|
|
|
|
userID
|
|
|
|
FROM
|
|
|
|
wcf".WCF_N."_user_storage
|
|
|
|
WHERE
|
|
|
|
field = 'roomID'
|
|
|
|
AND packageID = ".intval($packageID)."
|
|
|
|
AND fieldValue = ".intval($this->roomID);
|
2012-01-12 19:04:28 +00:00
|
|
|
$stmt = WCF::getDB()->prepareStatement($sql);
|
|
|
|
$stmt->execute();
|
|
|
|
while ($row = $stmt->fetchArray()) $userIDs[] = $row['userID'];
|
|
|
|
|
2012-01-14 11:50:57 +00:00
|
|
|
$sql = "SELECT
|
|
|
|
*
|
|
|
|
FROM
|
|
|
|
wcf".WCF_N."_user
|
|
|
|
WHERE
|
|
|
|
userID IN (".rtrim(str_repeat('?,', count($userIDs)), ',').")
|
|
|
|
ORDER BY
|
|
|
|
username ASC";
|
2012-01-12 19:04:28 +00:00
|
|
|
$stmt = WCF::getDB()->prepareStatement($sql);
|
|
|
|
$stmt->execute($userIDs);
|
|
|
|
$this->users = $stmt->fetchObjects('\wcf\data\user\User');
|
2011-12-26 16:01:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see \wcf\page\IPage::show()
|
|
|
|
*/
|
|
|
|
public function show() {
|
|
|
|
// guests are not supported
|
|
|
|
if (!WCF::getUser()->userID) {
|
|
|
|
throw new \wcf\system\exception\PermissionDeniedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
parent::show();
|
|
|
|
|
|
|
|
@header('Content-type: application/json');
|
2011-12-27 11:44:36 +00:00
|
|
|
$json = array('users' => array(), 'messages' => array());
|
|
|
|
|
2011-12-26 16:01:24 +00:00
|
|
|
foreach ($this->messages as $message) {
|
2011-12-27 11:44:36 +00:00
|
|
|
$json['messages'][] = $message->jsonify(true);
|
2011-12-26 16:01:24 +00:00
|
|
|
}
|
2012-01-12 19:04:28 +00:00
|
|
|
foreach ($this->users as $user) {
|
|
|
|
$json['users'][] = array(
|
|
|
|
'userID' => $user->userID,
|
|
|
|
'username' => $user->username
|
|
|
|
);
|
|
|
|
}
|
2012-01-14 11:50:57 +00:00
|
|
|
|
2011-12-27 11:44:36 +00:00
|
|
|
echo \wcf\util\JSON::encode($json);
|
2011-12-26 16:01:24 +00:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|