2013-11-09 17:24:03 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl;
|
2014-04-12 12:14:37 +02:00
|
|
|
|
2014-05-09 10:48:51 +02:00
|
|
|
use ManiaControl\Admin\AuthenticationManager;
|
|
|
|
use ManiaControl\Players\Player;
|
2014-05-13 17:59:37 +02:00
|
|
|
use Maniaplanet\DedicatedServer\Xmlrpc\UnknownPlayerException;
|
2013-11-09 17:24:03 +01:00
|
|
|
|
|
|
|
/**
|
2014-04-12 12:14:37 +02:00
|
|
|
* Chat Utility Class
|
2013-11-09 17:24:03 +01:00
|
|
|
*
|
2014-05-02 17:40:47 +02:00
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
|
|
|
* @copyright 2014 ManiaControl Team
|
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
|
|
|
class Chat {
|
2014-04-12 12:14:37 +02:00
|
|
|
/*
|
2013-12-03 18:03:16 +01:00
|
|
|
* Constants
|
|
|
|
*/
|
2014-01-16 18:08:32 +01:00
|
|
|
const SETTING_PREFIX = 'Messages Prefix';
|
2013-12-03 18:03:16 +01:00
|
|
|
const SETTING_FORMAT_INFORMATION = 'Information Format';
|
2014-01-16 18:08:32 +01:00
|
|
|
const SETTING_FORMAT_SUCCESS = 'Success Format';
|
|
|
|
const SETTING_FORMAT_ERROR = 'Error Format';
|
|
|
|
const SETTING_FORMAT_USAGEINFO = 'UsageInfo Format';
|
|
|
|
|
2014-04-12 12:14:37 +02:00
|
|
|
/*
|
2014-08-02 22:31:46 +02:00
|
|
|
* Private properties
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2014-08-02 22:31:46 +02:00
|
|
|
/** @var ManiaControl $maniaControl */
|
2013-11-10 13:46:44 +01:00
|
|
|
private $maniaControl = null;
|
2013-11-09 17:24:03 +01:00
|
|
|
|
2013-11-10 13:46:44 +01:00
|
|
|
/**
|
|
|
|
* Construct chat utility
|
|
|
|
*
|
2014-01-16 18:08:32 +01:00
|
|
|
* @param ManiaControl $maniaControl
|
2013-11-10 13:46:44 +01:00
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2014-01-16 18:08:32 +01:00
|
|
|
|
2014-08-03 01:34:18 +02:00
|
|
|
// Settings
|
2014-08-11 19:24:21 +02:00
|
|
|
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_PREFIX, '» ');
|
|
|
|
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_FORMAT_INFORMATION, '$fff');
|
|
|
|
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_FORMAT_SUCCESS, '$0f0');
|
|
|
|
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_FORMAT_ERROR, '$f30');
|
|
|
|
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_FORMAT_USAGEINFO, '$f80');
|
2013-11-10 13:46:44 +01:00
|
|
|
}
|
2013-11-09 17:24:03 +01:00
|
|
|
|
|
|
|
/**
|
2014-05-02 17:40:47 +02:00
|
|
|
* Send an information message to the given login
|
2013-11-10 13:46:44 +01:00
|
|
|
*
|
2014-05-02 17:40:47 +02:00
|
|
|
* @param string $message
|
|
|
|
* @param string $login
|
2014-01-16 18:08:32 +01:00
|
|
|
* @param string|bool $prefix
|
2014-05-02 17:40:47 +02:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2014-05-02 17:40:47 +02:00
|
|
|
public function sendInformation($message, $login = null, $prefix = true) {
|
2014-08-11 19:24:21 +02:00
|
|
|
$format = $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_FORMAT_INFORMATION);
|
2014-05-02 18:21:38 +02:00
|
|
|
return $this->sendChat($format . $message, $login, $prefix);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2014-05-02 17:40:47 +02:00
|
|
|
|
2013-11-09 17:24:03 +01:00
|
|
|
/**
|
|
|
|
* Send a chat message to the given login
|
|
|
|
*
|
2014-01-16 18:08:32 +01:00
|
|
|
* @param string $message
|
|
|
|
* @param string $login
|
|
|
|
* @param string|bool $prefix
|
2013-11-10 13:46:44 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-12-03 18:03:16 +01:00
|
|
|
public function sendChat($message, $login = null, $prefix = true) {
|
2014-08-03 01:34:18 +02:00
|
|
|
if (!$this->maniaControl->getClient()) {
|
2013-11-10 13:46:44 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2014-04-28 12:31:33 +02:00
|
|
|
|
2014-08-11 19:51:46 +02:00
|
|
|
$prefix = $this->buildPrefix($prefix, $login);
|
|
|
|
$chatMessage = '$<$z$ff0' . $prefix . $message . '$>';
|
|
|
|
|
|
|
|
if ($login) {
|
2014-05-20 14:59:53 +02:00
|
|
|
if (!is_array($login)) {
|
|
|
|
$login = Player::parseLogin($login);
|
|
|
|
}
|
2014-05-02 17:40:47 +02:00
|
|
|
try {
|
2014-08-11 19:51:46 +02:00
|
|
|
return $this->maniaControl->getClient()->chatSendServerMessage($chatMessage, $login);
|
2014-05-13 17:59:37 +02:00
|
|
|
} catch (UnknownPlayerException $e) {
|
2014-08-11 19:51:46 +02:00
|
|
|
return false;
|
2014-03-02 11:25:47 +01:00
|
|
|
}
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2014-08-11 19:51:46 +02:00
|
|
|
|
|
|
|
return $this->maniaControl->getClient()->chatSendServerMessage($chatMessage);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-08-11 19:51:46 +02:00
|
|
|
* Build the chat message prefix
|
2013-11-09 17:24:03 +01:00
|
|
|
*
|
2014-08-11 19:51:46 +02:00
|
|
|
* @param string|bool $prefixParam
|
|
|
|
* @param string|array $login
|
2014-05-02 17:40:47 +02:00
|
|
|
* @return string
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2014-08-11 19:51:46 +02:00
|
|
|
private function buildPrefix($prefixParam, $login = null) {
|
|
|
|
if (is_string($prefixParam)) {
|
|
|
|
return $prefixParam;
|
2014-05-02 17:40:47 +02:00
|
|
|
}
|
2014-08-11 19:51:46 +02:00
|
|
|
if ($prefixParam === true) {
|
|
|
|
$prefix = $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_PREFIX);
|
|
|
|
if ($login) {
|
|
|
|
// Private - Doubled default prefix
|
|
|
|
$prefix .= $prefix;
|
|
|
|
// TODO: validate whether to use specific private & public prefixes instead of just doubling a default one
|
|
|
|
}
|
|
|
|
return $prefix;
|
2014-05-02 17:40:47 +02:00
|
|
|
}
|
|
|
|
return '';
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
2014-05-13 17:59:37 +02:00
|
|
|
/**
|
2014-05-20 14:59:53 +02:00
|
|
|
* Send an Error Message to all Connected Admins
|
2014-05-13 17:59:37 +02:00
|
|
|
*
|
2014-05-20 14:59:53 +02:00
|
|
|
* @param string $message
|
|
|
|
* @param int $minLevel
|
|
|
|
* @param bool $prefix
|
2014-05-13 17:59:37 +02:00
|
|
|
*/
|
|
|
|
public function sendErrorToAdmins($message, $minLevel = AuthenticationManager::AUTH_LEVEL_MODERATOR, $prefix = true) {
|
2014-08-11 19:24:21 +02:00
|
|
|
$format = $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_FORMAT_ERROR);
|
2014-05-20 14:59:53 +02:00
|
|
|
$this->sendMessageToAdmins($format . $message, $minLevel, $prefix);
|
2014-05-13 17:59:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-25 15:16:41 +02:00
|
|
|
* Send a Message to all connected Admins
|
2014-05-13 17:59:37 +02:00
|
|
|
*
|
2014-05-20 14:59:53 +02:00
|
|
|
* @param string $message
|
|
|
|
* @param int $minLevel
|
|
|
|
* @param bool|string $prefix
|
2014-07-25 15:16:41 +02:00
|
|
|
* @return bool
|
2014-05-13 17:59:37 +02:00
|
|
|
*/
|
|
|
|
public function sendMessageToAdmins($message, $minLevel = AuthenticationManager::AUTH_LEVEL_MODERATOR, $prefix = true) {
|
2014-08-11 19:24:21 +02:00
|
|
|
$admins = $this->maniaControl->getAuthenticationManager()->getConnectedAdmins($minLevel);
|
2014-07-25 15:16:41 +02:00
|
|
|
return $this->sendChat($message, $admins, $prefix);
|
2014-05-13 17:59:37 +02:00
|
|
|
}
|
|
|
|
|
2013-11-09 17:24:03 +01:00
|
|
|
/**
|
|
|
|
* Send a success message to the given login
|
|
|
|
*
|
2014-01-16 18:08:32 +01:00
|
|
|
* @param string $message
|
|
|
|
* @param string $login
|
2014-05-20 14:59:53 +02:00
|
|
|
* @param bool|string $prefix
|
2013-11-10 13:46:44 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-12-03 18:03:16 +01:00
|
|
|
public function sendSuccess($message, $login = null, $prefix = true) {
|
2014-08-11 19:24:21 +02:00
|
|
|
$format = $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_FORMAT_SUCCESS);
|
2014-05-02 18:21:38 +02:00
|
|
|
return $this->sendChat($format . $message, $login, $prefix);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
2014-08-23 12:59:08 +02:00
|
|
|
/**
|
|
|
|
* Sends a Information Message to all connected Admins
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param int $minLevel
|
|
|
|
* @param bool|string $prefix
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function sendInformationToAdmins($message, $minLevel = AuthenticationManager::AUTH_LEVEL_MODERATOR, $prefix = true) {
|
|
|
|
$format = $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_FORMAT_INFORMATION);
|
|
|
|
return $this->sendMessageToAdmins($format . $message, $minLevel, $prefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-25 15:16:41 +02:00
|
|
|
/**
|
|
|
|
* Sends a Success Message to all connected Admins
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param int $minLevel
|
|
|
|
* @param bool|string $prefix
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function sendSuccessToAdmins($message, $minLevel = AuthenticationManager::AUTH_LEVEL_MODERATOR, $prefix = true) {
|
2014-08-11 19:24:21 +02:00
|
|
|
$format = $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_FORMAT_SUCCESS);
|
2014-07-25 15:16:41 +02:00
|
|
|
return $this->sendMessageToAdmins($format . $message, $minLevel, $prefix);
|
|
|
|
}
|
|
|
|
|
2014-05-02 17:40:47 +02:00
|
|
|
/**
|
|
|
|
* Send the Exception Information to the Chat
|
|
|
|
*
|
|
|
|
* @param \Exception $exception
|
|
|
|
* @param string $login
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function sendException(\Exception $exception, $login = null) {
|
|
|
|
$message = "Exception occurred: '{$exception->getMessage()}' ({$exception->getCode()})";
|
|
|
|
return $this->sendError($message, $login);
|
|
|
|
}
|
|
|
|
|
2013-11-09 17:24:03 +01:00
|
|
|
/**
|
2014-04-14 13:17:00 +02:00
|
|
|
* Send an Error Message to the Chat
|
2013-11-09 17:24:03 +01:00
|
|
|
*
|
2014-01-16 18:08:32 +01:00
|
|
|
* @param string $message
|
|
|
|
* @param string $login
|
|
|
|
* @param string|bool $prefix
|
2013-11-10 13:46:44 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-12-03 18:03:16 +01:00
|
|
|
public function sendError($message, $login = null, $prefix = true) {
|
2014-08-11 19:24:21 +02:00
|
|
|
$format = $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_FORMAT_ERROR);
|
2014-05-02 18:21:38 +02:00
|
|
|
return $this->sendChat($format . $message, $login, $prefix);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-13 01:43:12 +01:00
|
|
|
|
2014-05-20 14:59:53 +02:00
|
|
|
/**
|
|
|
|
* Send a Exception Message to all Connected Admins
|
|
|
|
*
|
|
|
|
* @param \Exception $exception
|
|
|
|
* @param int $minLevel
|
|
|
|
* @param bool|string $prefix
|
|
|
|
*/
|
2014-08-25 15:33:22 +02:00
|
|
|
public function sendExceptionToAdmins(\Exception $exception, $minLevel = AuthenticationManager::AUTH_LEVEL_MODERATOR, $prefix = true) {
|
2014-08-11 19:24:21 +02:00
|
|
|
$format = $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_FORMAT_ERROR);
|
2014-05-20 14:59:53 +02:00
|
|
|
$message = $format . "Exception: '{$exception->getMessage()}' ({$exception->getCode()})";
|
|
|
|
$this->sendMessageToAdmins($message, $minLevel, $prefix);
|
|
|
|
}
|
|
|
|
|
2013-11-13 01:43:12 +01:00
|
|
|
/**
|
|
|
|
* Send an usage info message to the given login
|
|
|
|
*
|
2014-01-16 18:08:32 +01:00
|
|
|
* @param string $message
|
|
|
|
* @param string $login
|
|
|
|
* @param string|bool $prefix
|
2013-11-13 01:43:12 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function sendUsageInfo($message, $login = null, $prefix = false) {
|
2014-08-11 19:24:21 +02:00
|
|
|
$format = $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_FORMAT_USAGEINFO);
|
2014-05-02 18:21:38 +02:00
|
|
|
return $this->sendChat($format . $message, $login, $prefix);
|
2013-11-13 01:43:12 +01:00
|
|
|
}
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|