1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/lib/system/chat/command/commands/InfoCommand.class.php

101 lines
2.9 KiB
PHP
Raw Normal View History

2012-03-23 22:27:15 +00:00
<?php
namespace wcf\system\chat\command\commands;
2012-04-15 11:30:08 +00:00
use \wcf\data\user\User;
2012-03-23 22:27:15 +00:00
use \wcf\system\WCF;
2012-03-24 21:03:04 +00:00
use \wcf\util\ChatUtil;
2012-03-23 22:27:15 +00:00
use \wcf\util\StringUtil;
/**
* Shows information about the specified user.
*
* @author Tim Düsterhus
* @copyright 2010-2012 Tim Düsterhus
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package be.bastelstu.wcf.chat
* @subpackage system.chat.command.commands
2012-03-23 22:27:15 +00:00
*/
2012-09-07 20:23:27 +00:00
class InfoCommand extends \wcf\system\chat\command\AbstractCommand {
2012-03-23 22:27:15 +00:00
public $enableHTML = 1;
2012-05-19 21:03:26 +00:00
public $lines = array();
public $user = null;
2012-03-23 22:27:15 +00:00
public function __construct(\wcf\system\chat\command\CommandHandler $commandHandler) {
2012-03-23 22:27:15 +00:00
parent::__construct($commandHandler);
2012-05-19 21:03:26 +00:00
$this->user = User::getUserByUsername(rtrim($commandHandler->getParameters(), ','));
if (!$this->user->userID) throw new \wcf\system\chat\command\UserNotFoundException(rtrim($commandHandler->getParameters(), ','));
2012-04-15 12:09:51 +00:00
// Username + link to profile
2012-05-19 21:03:26 +00:00
$color = ChatUtil::readUserData('color', $this->user);
2012-04-15 12:09:51 +00:00
$profile = \wcf\system\request\LinkHandler::getInstance()->getLink('User', array(
2012-11-20 15:01:32 +00:00
'object' => $this->user
2012-04-15 12:09:51 +00:00
));
2012-11-20 15:01:32 +00:00
$this->lines[WCF::getLanguage()->get('wcf.user.username')] = '<span class="userLink" data-user-id="'.$this->user->userID.'" />';
2012-03-24 21:03:04 +00:00
2012-04-15 12:09:51 +00:00
// Away-Status
2012-05-19 21:03:26 +00:00
if (ChatUtil::readUserData('away', $this->user) !== null) {
$this->lines[WCF::getLanguage()->get('wcf.chat.away')] = ChatUtil::readUserData('away', $this->user);
2012-03-24 21:03:04 +00:00
}
2012-04-15 12:09:51 +00:00
// Room
2012-05-19 21:03:26 +00:00
$room = new \wcf\data\chat\room\ChatRoom(ChatUtil::readUserData('roomID', $this->user));
2012-03-24 21:03:04 +00:00
if ($room->roomID && $room->canEnter()) {
$this->lines[WCF::getLanguage()->get('wcf.chat.room')] = $room->getTitle();
}
2012-04-15 12:09:51 +00:00
// IP-Address
2012-05-19 21:03:26 +00:00
$session = $this->fetchSession();
2012-04-15 11:30:08 +00:00
if ($session) {
// TODO: Check permission
2012-04-30 19:14:25 +00:00
$this->lines[WCF::getLanguage()->get('wcf.user.ipAddress')] = $session->ipAddress;
2012-04-15 11:30:08 +00:00
}
2012-03-24 21:29:07 +00:00
$this->didInit();
2012-03-23 22:27:15 +00:00
}
2012-04-30 19:23:57 +00:00
/**
2012-08-15 16:04:09 +00:00
* Fetches the sessiondatabase object for the specified user.
2012-04-30 19:23:57 +00:00
*
* @return \wcf\data\session\Session
*/
2012-05-19 21:03:26 +00:00
public function fetchSession() {
2012-04-15 11:30:08 +00:00
$sql = "SELECT
*
FROM
wcf".WCF_N."_session
WHERE
userID = ?";
$stmt = WCF::getDB()->prepareStatement($sql);
2012-05-19 21:03:26 +00:00
$stmt->execute(array($this->user->userID));
2012-04-15 11:30:08 +00:00
$row = $stmt->fetchArray();
if (!$row) return false;
return new \wcf\data\session\Session(null, $row);
}
2012-03-23 22:27:15 +00:00
/**
* @see \wcf\system\chat\command\ICommand::getType()
2012-03-23 22:27:15 +00:00
*/
public function getType() {
return \wcf\data\chat\message\ChatMessage::TYPE_INFORMATION;
}
/**
* @see \wcf\system\chat\command\ICommand::getMessage()
2012-03-23 22:27:15 +00:00
*/
public function getMessage() {
$lines = array();
foreach ($this->lines as $key => $val) {
$lines[] = '<strong>'.$key.':</strong> '.$val;
}
return '<ul><li>'.implode('</li><li>', $lines).'</li></ul>';
}
/**
* @see \wcf\system\chat\command\ICommand::getReceiver()
2012-03-23 22:27:15 +00:00
*/
public function getReceiver() {
return \wcf\system\WCF::getUser()->userID;
}
}