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/CommandHandler.class.php

74 lines
1.6 KiB
PHP
Raw Normal View History

<?php
namespace wcf\system\chat\command;
use \wcf\util\StringUtil;
/**
* Handles commands
*
* @author Tim Düsterhus
2012-01-30 16:48:13 +00:00
* @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
*/
2012-02-04 11:32:56 +00:00
final class CommandHandler {
const COMMAND_CHAR = '/';
2012-02-04 11:32:56 +00:00
private $text = '';
/**
* Initialises the CommandHandler
*
* @param string $text
*/
public function __construct($text) {
$this->text = $text;
}
/**
* Checks whether the given text is a command.
*/
public function isCommand($text = null) {
if ($text === null) $text = $this->text;
return StringUtil::substring($text, 0, StringUtil::length(static::COMMAND_CHAR)) == static::COMMAND_CHAR;
}
2012-02-04 11:32:56 +00:00
/**
* Returns the whole message.
*
* @return string
*/
public function getText() {
return $this->text;
}
2011-12-27 13:32:28 +00:00
/**
* Returns the parameter-string.
*
* @return string
*/
public function getParameters() {
$parts = explode(' ', StringUtil::substring($this->text, StringUtil::length(static::COMMAND_CHAR)), 2);
2012-02-04 11:32:56 +00:00
if (!isset($parts[1])) return '';
2011-12-27 13:32:28 +00:00
return $parts[1];
}
/**
* Loads the command.
*/
public function loadCommand() {
$parts = explode(' ', StringUtil::substring($this->text, StringUtil::length(static::COMMAND_CHAR)), 2);
if ($this->isCommand($parts[0])) {
2012-02-04 11:32:56 +00:00
return new commands\Plain($this);
}
$class = '\wcf\system\chat\command\commands\\'.ucfirst(strtolower($parts[0]));
if (!class_exists($class)) {
throw new NotFoundException();
}
return new $class($this);
}
}