TrackManiaControl/core/Players/PlayerActions.php

524 lines
18 KiB
PHP
Raw Normal View History

2013-12-23 20:57:50 +01:00
<?php
namespace ManiaControl\Players;
2013-12-24 12:49:53 +01:00
use FML\Controls\Frame;
use FML\Controls\Labels\Label_Text;
use FML\Controls\Quad;
use FML\Controls\Quads\Quad_Icons64x64_1;
use FML\ManiaLink;
2013-12-23 21:47:39 +01:00
use ManiaControl\Admin\AuthenticationManager;
use ManiaControl\Logger;
2013-12-23 20:57:50 +01:00
use ManiaControl\ManiaControl;
2013-12-24 12:49:53 +01:00
use ManiaControl\Manialinks\ManialinkManager;
use Maniaplanet\DedicatedServer\Xmlrpc\AlreadyInListException;
2014-04-28 20:58:21 +02:00
use Maniaplanet\DedicatedServer\Xmlrpc\FaultException;
2014-08-10 00:09:46 +02:00
use Maniaplanet\DedicatedServer\Xmlrpc\GameModeException;
use Maniaplanet\DedicatedServer\Xmlrpc\NotInListException;
use Maniaplanet\DedicatedServer\Xmlrpc\PlayerStateException;
2014-07-19 23:39:25 +02:00
use Maniaplanet\DedicatedServer\Xmlrpc\ServerOptionsException;
use Maniaplanet\DedicatedServer\Xmlrpc\UnknownPlayerException;
2013-12-23 20:57:50 +01:00
2013-12-24 13:09:39 +01:00
/**
* Player Actions Class
2013-12-24 13:09:39 +01:00
*
2014-05-02 17:50:30 +02:00
* @author ManiaControl Team <mail@maniacontrol.com>
* @copyright 2014 ManiaControl Team
2014-04-13 12:25:39 +02:00
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
2013-12-24 13:09:39 +01:00
*/
class PlayerActions {
/*
2013-12-23 20:57:50 +01:00
* Constants
*/
const TEAM_BLUE = 0;
const TEAM_RED = 1;
const SPECTATOR_USER_SELECTABLE = 0;
const SPECTATOR_SPECTATOR = 1;
const SPECTATOR_PLAYER = 2;
2013-12-23 20:57:50 +01:00
const SPECTATOR_BUT_KEEP_SELECTABLE = 3;
/*
2014-01-09 19:08:29 +01:00
* Permission Setting Constants
*/
const SETTING_PERMISSION_FORCE_PLAYER_PLAY = 'Force Player to Play';
const SETTING_PERMISSION_FORCE_PLAYER_TEAM = 'Force Player to Team';
const SETTING_PERMISSION_FORCE_PLAYER_SPEC = 'Force Player to Spec';
2014-01-09 19:15:06 +01:00
const SETTING_PERMISSION_MUTE_PLAYER = 'Mute Player';
const SETTING_PERMISSION_WARN_PLAYER = 'Warn Player';
const SETTING_PERMISSION_KICK_PLAYER = 'Kick Player';
const SETTING_PERMISSION_BAN_PLAYER = 'Ban Player';
2014-01-09 19:08:29 +01:00
/*
* Private properties
2013-12-23 20:57:50 +01:00
*/
/** @var ManiaControl $maniaControl */
2013-12-23 20:57:50 +01:00
private $maniaControl = null;
2013-12-31 16:01:22 +01:00
/**
* Construct a new PlayerActions instance
2013-12-31 16:01:22 +01:00
*
* @param ManiaControl $maniaControl
*/
2013-12-23 20:57:50 +01:00
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
2014-01-09 19:08:29 +01:00
// Permissions
2014-08-13 11:05:52 +02:00
$this->maniaControl->getAuthenticationManager()->definePermissionLevel(self::SETTING_PERMISSION_BAN_PLAYER, AuthenticationManager::AUTH_LEVEL_ADMIN);
$this->maniaControl->getAuthenticationManager()->definePermissionLevel(self::SETTING_PERMISSION_KICK_PLAYER, AuthenticationManager::AUTH_LEVEL_MODERATOR);
$this->maniaControl->getAuthenticationManager()->definePermissionLevel(self::SETTING_PERMISSION_WARN_PLAYER, AuthenticationManager::AUTH_LEVEL_MODERATOR);
$this->maniaControl->getAuthenticationManager()->definePermissionLevel(self::SETTING_PERMISSION_MUTE_PLAYER, AuthenticationManager::AUTH_LEVEL_MODERATOR);
$this->maniaControl->getAuthenticationManager()->definePermissionLevel(self::SETTING_PERMISSION_FORCE_PLAYER_PLAY, AuthenticationManager::AUTH_LEVEL_MODERATOR);
$this->maniaControl->getAuthenticationManager()->definePermissionLevel(self::SETTING_PERMISSION_FORCE_PLAYER_TEAM, AuthenticationManager::AUTH_LEVEL_MODERATOR);
$this->maniaControl->getAuthenticationManager()->definePermissionLevel(self::SETTING_PERMISSION_FORCE_PLAYER_SPEC, AuthenticationManager::AUTH_LEVEL_MODERATOR);
2013-12-23 20:57:50 +01:00
}
/**
2013-12-31 16:01:22 +01:00
* Force a Player to a certain Team
*
* @param string $adminLogin
* @param string $targetLogin
* @param int $teamId
2013-12-23 20:57:50 +01:00
*/
2013-12-31 16:01:22 +01:00
public function forcePlayerToTeam($adminLogin, $targetLogin, $teamId) {
2014-08-13 11:05:52 +02:00
$admin = $this->maniaControl->getPlayerManager()->getPlayer($adminLogin);
if (!$this->maniaControl->getAuthenticationManager()->checkPermission($admin, self::SETTING_PERMISSION_FORCE_PLAYER_TEAM)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getAuthenticationManager()->sendNotAllowed($admin);
2014-01-06 18:09:47 +01:00
return;
}
2014-08-13 11:05:52 +02:00
$target = $this->maniaControl->getPlayerManager()->getPlayer($targetLogin);
2014-02-27 13:25:11 +01:00
if (!$target || !$admin) {
return;
2014-01-09 19:08:29 +01:00
}
2014-06-22 19:23:54 +02:00
if ($target->isSpectator) {
try {
if (!$this->forcePlayerToPlay($adminLogin, $targetLogin, true, false)) {
return;
}
} catch (FaultException $exception) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendException($exception, $admin);
2014-06-22 19:23:54 +02:00
}
2013-12-23 21:47:39 +01:00
}
2014-03-13 18:25:29 +01:00
try {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getClient()->forcePlayerTeam($target->login, $teamId);
} catch (ServerOptionsException $exception) {
2014-04-19 23:47:46 +02:00
$this->forcePlayerToPlay($adminLogin, $targetLogin);
return;
2014-08-10 00:09:46 +02:00
} catch (GameModeException $exception) {
$this->maniaControl->getChat()->sendException($exception, $admin);
return;
2014-03-13 18:25:29 +01:00
}
2013-12-31 16:01:22 +01:00
$chatMessage = false;
2014-08-13 11:05:52 +02:00
$title = $this->maniaControl->getAuthenticationManager()->getAuthLevelName($admin->authLevel);
if ($teamId === self::TEAM_BLUE) {
2014-08-05 02:17:41 +02:00
$chatMessage = $title . ' ' . $admin->getEscapedNickname() . ' forced ' . $target->getEscapedNickname() . ' into the Blue-Team!';
} else if ($teamId === self::TEAM_RED) {
2014-08-05 02:17:41 +02:00
$chatMessage = $title . ' ' . $admin->getEscapedNickname() . ' forced ' . $target->getEscapedNickname() . ' into the Red-Team!';
2013-12-24 12:49:53 +01:00
}
2014-02-27 13:25:11 +01:00
if (!$chatMessage) {
return;
2014-01-09 19:08:29 +01:00
}
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendInformation($chatMessage);
Logger::logInfo($chatMessage, true);
2013-12-23 20:57:50 +01:00
}
2014-05-02 17:50:30 +02:00
/**
* Force a Player to Play
*
* @param string $adminLogin
* @param string $targetLogin
* @param bool $userIsAbleToSelect
* @param bool $displayAnnouncement
* @return bool
2014-05-02 17:50:30 +02:00
*/
public function forcePlayerToPlay($adminLogin, $targetLogin, $userIsAbleToSelect = true, $displayAnnouncement = true) {
2014-08-13 11:05:52 +02:00
$admin = $this->maniaControl->getPlayerManager()->getPlayer($adminLogin);
if (!$this->maniaControl->getAuthenticationManager()->checkPermission($admin, self::SETTING_PERMISSION_FORCE_PLAYER_PLAY)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getAuthenticationManager()->sendNotAllowed($admin);
return false;
2014-05-02 17:50:30 +02:00
}
2014-08-13 11:05:52 +02:00
$target = $this->maniaControl->getPlayerManager()->getPlayer($targetLogin);
2014-05-02 17:50:30 +02:00
if (!$target) {
return false;
2014-05-02 17:50:30 +02:00
}
try {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getClient()->forceSpectator($target->login, self::SPECTATOR_PLAYER);
} catch (ServerOptionsException $exception) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendException($exception, $admin);
return false;
2014-05-02 17:50:30 +02:00
}
if ($userIsAbleToSelect) {
try {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getClient()->forceSpectator($target->login, self::SPECTATOR_USER_SELECTABLE);
} catch (ServerOptionsException $exception) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendException($exception, $admin);
return false;
2014-05-02 17:50:30 +02:00
}
}
// Announce force
if ($displayAnnouncement) {
2014-08-05 02:17:41 +02:00
$chatMessage = $admin->getEscapedNickname() . ' forced ' . $target->getEscapedNickname() . ' to Play!';
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendInformation($chatMessage);
2014-05-02 17:50:30 +02:00
}
return true;
2014-05-02 17:50:30 +02:00
}
2013-12-23 20:57:50 +01:00
/**
2013-12-31 16:01:22 +01:00
* Force a Player to Spectator
*
* @param string $adminLogin
* @param string $targetLogin
* @param int $spectatorState
* @param bool $releaseSlot
2013-12-23 20:57:50 +01:00
*/
2014-08-25 15:33:22 +02:00
public function forcePlayerToSpectator($adminLogin, $targetLogin, $spectatorState = self::SPECTATOR_BUT_KEEP_SELECTABLE, $releaseSlot = true) {
2014-08-13 11:05:52 +02:00
$admin = $this->maniaControl->getPlayerManager()->getPlayer($adminLogin);
if (!$this->maniaControl->getAuthenticationManager()->checkPermission($admin, self::SETTING_PERMISSION_FORCE_PLAYER_SPEC)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getAuthenticationManager()->sendNotAllowed($admin);
return;
}
2014-08-13 11:05:52 +02:00
$target = $this->maniaControl->getPlayerManager()->getPlayer($targetLogin);
2014-03-01 19:54:44 +01:00
if (!$admin || !$target || $target->isSpectator) {
2013-12-23 21:47:39 +01:00
return;
}
2014-04-13 12:25:39 +02:00
try {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getClient()->forceSpectator($target->login, $spectatorState);
2014-07-19 23:39:25 +02:00
} catch (ServerOptionsException $exception) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendException($exception, $admin->login);
return;
2014-04-13 12:25:39 +02:00
}
2014-08-13 11:05:52 +02:00
$title = $this->maniaControl->getAuthenticationManager()->getAuthLevelName($admin->authLevel);
2014-08-05 02:17:41 +02:00
$chatMessage = $title . ' ' . $admin->getEscapedNickname() . ' forced ' . $target->getEscapedNickname() . ' to Spectator!';
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendInformation($chatMessage);
Logger::logInfo($chatMessage, true);
2014-02-27 13:25:11 +01:00
if ($releaseSlot) {
// Free player slot
2014-01-16 21:51:25 +01:00
try {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getClient()->spectatorReleasePlayerSlot($target->login);
} catch (PlayerStateException $e) {
2014-07-19 23:39:25 +02:00
} catch (UnknownPlayerException $e) {
2014-01-16 21:51:25 +01:00
}
}
2013-12-23 20:57:50 +01:00
}
2014-01-02 16:37:52 +01:00
/**
* UnMute a Player
2014-01-02 16:37:52 +01:00
*
* @param string $adminLogin
* @param string $targetLogin
*/
public function unMutePlayer($adminLogin, $targetLogin) {
2014-08-13 11:05:52 +02:00
$admin = $this->maniaControl->getPlayerManager()->getPlayer($adminLogin);
if (!$this->maniaControl->getAuthenticationManager()->checkPermission($admin, self::SETTING_PERMISSION_MUTE_PLAYER)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getAuthenticationManager()->sendNotAllowed($admin);
return;
}
2014-08-13 11:05:52 +02:00
$target = $this->maniaControl->getPlayerManager()->getPlayer($targetLogin);
2014-02-27 13:25:11 +01:00
if (!$target) {
2014-01-02 16:37:52 +01:00
return;
}
2014-05-02 17:50:30 +02:00
try {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getClient()->unIgnore($targetLogin);
} catch (NotInListException $e) {
2014-08-14 19:08:23 +02:00
$this->maniaControl->getChat()->sendError('Player is not ignored!', $adminLogin);
2014-04-24 10:38:50 +02:00
return;
}
2014-02-27 13:24:55 +01:00
2014-08-13 11:05:52 +02:00
$title = $this->maniaControl->getAuthenticationManager()->getAuthLevelName($admin->authLevel);
2014-08-05 02:17:41 +02:00
$chatMessage = $title . ' ' . $admin->getEscapedNickname() . ' un-muted ' . $target->getEscapedNickname() . '!';
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendInformation($chatMessage);
Logger::logInfo($chatMessage, true);
2014-01-02 16:37:52 +01:00
}
/**
* Mute a Player
2014-01-02 16:37:52 +01:00
*
* @param string $adminLogin
* @param string $targetLogin
*/
public function mutePlayer($adminLogin, $targetLogin) {
2014-08-13 11:05:52 +02:00
$admin = $this->maniaControl->getPlayerManager()->getPlayer($adminLogin);
if (!$this->maniaControl->getAuthenticationManager()->checkPermission($admin, self::SETTING_PERMISSION_MUTE_PLAYER)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getAuthenticationManager()->sendNotAllowed($admin);
return;
}
2014-08-13 11:05:52 +02:00
$target = $this->maniaControl->getPlayerManager()->getPlayer($targetLogin);
2014-02-27 13:25:11 +01:00
if (!$target) {
2014-02-27 13:24:55 +01:00
return;
}
2014-05-02 17:50:30 +02:00
try {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getClient()->ignore($targetLogin);
} catch (AlreadyInListException $e) {
2014-08-14 19:08:23 +02:00
$this->maniaControl->getChat()->sendError("Player already ignored!", $adminLogin);
2014-04-24 10:38:50 +02:00
return;
2014-04-24 10:33:47 +02:00
}
2014-08-13 11:05:52 +02:00
$title = $this->maniaControl->getAuthenticationManager()->getAuthLevelName($admin->authLevel);
2014-08-05 02:17:41 +02:00
$chatMessage = $title . ' ' . $admin->getEscapedNickname() . ' muted ' . $target->getEscapedNickname() . '!';
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendInformation($chatMessage);
Logger::logInfo($chatMessage, true);
2014-01-02 16:37:52 +01:00
}
2013-12-23 21:47:39 +01:00
/**
* Warn a Player
2013-12-31 16:01:22 +01:00
*
* @param string $adminLogin
* @param string $targetLogin
2013-12-23 21:47:39 +01:00
*/
2013-12-31 16:01:22 +01:00
public function warnPlayer($adminLogin, $targetLogin) {
2014-08-13 11:05:52 +02:00
$admin = $this->maniaControl->getPlayerManager()->getPlayer($adminLogin);
if (!$this->maniaControl->getAuthenticationManager()->checkPermission($admin, self::SETTING_PERMISSION_WARN_PLAYER)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getAuthenticationManager()->sendNotAllowed($admin);
return;
}
2014-02-27 13:24:55 +01:00
2014-08-13 11:05:52 +02:00
$target = $this->maniaControl->getPlayerManager()->getPlayer($targetLogin);
2014-02-27 13:24:55 +01:00
2014-02-27 13:25:11 +01:00
if (!$target) {
return;
2014-01-09 19:08:29 +01:00
}
// Display warning message
2013-12-24 12:49:53 +01:00
$message = '$s$f00This is an administrative warning.{br}{br}$gWhatever you wrote or you have done is against {br} our server\'s policy.
{br}Not respecting other players, or{br}using offensive language might result in a{br}$f00kick, or ban $ff0the next time.
{br}{br}$gThe server administrators.';
$message = preg_split('/{br}/', $message);
// Build Manialink
$width = 80;
$height = 50;
2014-08-13 11:05:52 +02:00
$quadStyle = $this->maniaControl->getManialinkManager()->getStyleManager()->getDefaultMainWindowStyle();
$quadSubstyle = $this->maniaControl->getManialinkManager()->getStyleManager()->getDefaultMainWindowSubStyle();
2013-12-24 12:49:53 +01:00
$maniaLink = new ManiaLink(ManialinkManager::MAIN_MLID);
$frame = new Frame();
2013-12-24 12:49:53 +01:00
$maniaLink->add($frame);
$frame->setPosition(0, 10);
// Background
2013-12-24 12:49:53 +01:00
$backgroundQuad = new Quad();
$frame->add($backgroundQuad);
2013-12-31 16:01:22 +01:00
$backgroundQuad->setSize($width, $height);
2013-12-24 12:49:53 +01:00
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
// Close Quad (X)
2013-12-24 12:49:53 +01:00
$closeQuad = new Quad_Icons64x64_1();
$frame->add($closeQuad);
$closeQuad->setPosition($width * 0.473, $height * 0.457, 3);
$closeQuad->setSize(6, 6);
$closeQuad->setSubStyle($closeQuad::SUBSTYLE_QuitRace);
2013-12-24 12:49:53 +01:00
$closeQuad->setAction(ManialinkManager::ACTION_CLOSEWIDGET);
// Headline
2013-12-24 12:49:53 +01:00
$label = new Label_Text();
$frame->add($label);
$label->setY($height / 2 - 5);
$label->setStyle($label::STYLE_TextCardMedium);
2013-12-24 12:49:53 +01:00
$label->setTextSize(4);
$label->setText('Administrative Warning');
$label->setTextColor('f00');
$posY = $height / 2 - 15;
2014-05-02 17:50:30 +02:00
foreach ($message as $line) {
// Message lines
2013-12-24 12:49:53 +01:00
$label = new Label_Text();
$frame->add($label);
$label->setY($posY);
$label->setStyle($label::STYLE_TextCardMedium);
2013-12-24 12:49:53 +01:00
$label->setText($line);
$label->setTextColor('ff0');
2014-01-10 15:58:27 +01:00
$label->setTextSize(1.3);
$posY -= 4;
2013-12-24 12:49:53 +01:00
}
2013-12-31 16:01:22 +01:00
// Display manialink
2014-08-13 11:05:52 +02:00
$this->maniaControl->getManialinkManager()->displayWidget($maniaLink, $target);
// Announce warning
2014-08-13 11:05:52 +02:00
$title = $this->maniaControl->getAuthenticationManager()->getAuthLevelName($admin->authLevel);
2014-08-05 02:17:41 +02:00
$chatMessage = $title . ' ' . $admin->getEscapedNickname() . ' warned ' . $target->getEscapedNickname() . '!';
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendInformation($chatMessage);
Logger::log($chatMessage, true);
2013-12-23 20:57:50 +01:00
}
2013-12-23 21:47:39 +01:00
/**
* Kick a Player
2013-12-31 16:01:22 +01:00
*
* @param string $adminLogin
* @param string $targetLogin
2013-12-23 21:47:39 +01:00
* @param string $message
*/
2013-12-31 16:01:22 +01:00
public function kickPlayer($adminLogin, $targetLogin, $message = '') {
2014-08-13 11:05:52 +02:00
$admin = $this->maniaControl->getPlayerManager()->getPlayer($adminLogin);
if (!$this->maniaControl->getAuthenticationManager()->checkPermission($admin, self::SETTING_PERMISSION_KICK_PLAYER)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getAuthenticationManager()->sendNotAllowed($admin);
return;
}
2014-08-13 11:05:52 +02:00
$target = $this->maniaControl->getPlayerManager()->getPlayer($targetLogin);
2014-02-27 13:25:11 +01:00
if (!$target) {
return;
2014-01-09 19:08:29 +01:00
}
2014-01-20 20:51:03 +01:00
try {
2014-02-27 13:25:11 +01:00
if ($target->isFakePlayer()) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getClient()->disconnectFakePlayer($target->login);
2014-01-20 20:51:03 +01:00
} else {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getClient()->kick($target->login, $message);
2014-01-20 20:51:03 +01:00
}
} catch (UnknownPlayerException $e) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendException($e, $admin);
2013-12-23 21:47:39 +01:00
return;
}
// Announce kick
2014-08-13 11:05:52 +02:00
$title = $this->maniaControl->getAuthenticationManager()->getAuthLevelName($admin->authLevel);
2014-07-20 00:00:31 +02:00
$chatMessage = $title . ' ' . $admin->getEscapedNickname() . ' kicked ' . $target->getEscapedNickname() . '!';
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendInformation($chatMessage);
Logger::logInfo($chatMessage, true);
2013-12-23 20:57:50 +01:00
}
2013-12-23 21:47:39 +01:00
/**
* Ban a Player
2013-12-31 16:01:22 +01:00
*
* @param string $adminLogin
* @param string $targetLogin
2013-12-23 21:47:39 +01:00
* @param string $message
*/
2013-12-31 16:01:22 +01:00
public function banPlayer($adminLogin, $targetLogin, $message = '') {
2014-08-13 11:05:52 +02:00
$admin = $this->maniaControl->getPlayerManager()->getPlayer($adminLogin);
if (!$this->maniaControl->getAuthenticationManager()->checkPermission($admin, self::SETTING_PERMISSION_BAN_PLAYER)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getAuthenticationManager()->sendNotAllowed($admin);
return;
}
2014-08-13 11:05:52 +02:00
$target = $this->maniaControl->getPlayerManager()->getPlayer($targetLogin);
2014-02-27 13:25:11 +01:00
if (!$target) {
return;
2014-01-09 19:08:29 +01:00
}
2014-02-27 13:25:11 +01:00
if ($target->isFakePlayer()) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendError('It is not possible to Ban a bot', $admin);
2014-01-16 19:49:36 +01:00
return;
}
2014-08-13 11:05:52 +02:00
$this->maniaControl->getClient()->ban($target->login, $message);
// Announce ban
2014-08-13 11:05:52 +02:00
$title = $this->maniaControl->getAuthenticationManager()->getAuthLevelName($admin->authLevel);
2014-08-05 02:17:41 +02:00
$chatMessage = $title . ' ' . $admin->getEscapedNickname() . ' banned ' . $target->getEscapedNickname() . '!';
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendInformation($chatMessage);
Logger::logInfo($chatMessage, true);
2013-12-23 20:57:50 +01:00
}
2013-12-26 11:25:10 +01:00
/**
2013-12-31 16:01:22 +01:00
* Grands the Player an Authorization Level
*
* @param string $adminLogin
* @param string $targetLogin
* @param int $authLevel
2013-12-26 11:25:10 +01:00
*/
2013-12-31 16:01:22 +01:00
public function grandAuthLevel($adminLogin, $targetLogin, $authLevel) {
2014-08-13 11:05:52 +02:00
$admin = $this->maniaControl->getPlayerManager()->getPlayer($adminLogin);
$target = $this->maniaControl->getPlayerManager()->getPlayer($targetLogin);
2014-02-27 13:25:11 +01:00
if (!$admin || !$target) {
return;
2014-01-09 19:08:29 +01:00
}
2014-08-13 11:05:52 +02:00
$authLevelName = $this->maniaControl->getAuthenticationManager()->getAuthLevelName($authLevel);
if (!$this->maniaControl->getAuthenticationManager()->checkRight($admin, $authLevel + 1)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendError("You don't have the permission to add a {$authLevelName}!", $admin);
return;
}
2014-08-13 11:05:52 +02:00
if ($this->maniaControl->getAuthenticationManager()->checkRight($target, $authLevel)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendError("This Player is already {$authLevelName}!", $admin);
return;
}
2014-08-13 11:05:52 +02:00
$success = $this->maniaControl->getAuthenticationManager()->grantAuthLevel($target, $authLevel);
2014-02-27 13:25:11 +01:00
if (!$success) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendError('Error occurred.', $admin);
2013-12-26 11:25:10 +01:00
return;
}
// Announce granting
2014-08-13 11:05:52 +02:00
$title = $this->maniaControl->getAuthenticationManager()->getAuthLevelName($admin->authLevel);
2014-08-05 02:17:41 +02:00
$chatMessage = $title . ' ' . $admin->getEscapedNickname() . ' added ' . $target->getEscapedNickname() . ' as $< ' . $authLevelName . '$>!';
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendInformation($chatMessage);
Logger::logInfo($chatMessage, true);
2013-12-26 11:25:10 +01:00
}
/**
2013-12-31 16:01:22 +01:00
* Revokes all Rights from the Player
*
* @param string $adminLogin
* @param string $targetLogin
2013-12-26 11:25:10 +01:00
*/
2013-12-31 16:01:22 +01:00
public function revokeAuthLevel($adminLogin, $targetLogin) {
2014-08-13 11:05:52 +02:00
$admin = $this->maniaControl->getPlayerManager()->getPlayer($adminLogin);
$target = $this->maniaControl->getPlayerManager()->getPlayer($targetLogin);
2014-02-27 13:25:11 +01:00
if (!$admin || !$target) {
return;
2014-01-09 19:08:29 +01:00
}
2014-08-13 11:05:52 +02:00
if (!$this->maniaControl->getAuthenticationManager()->checkRight($admin, $target->authLevel + 1)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$title = $this->maniaControl->getAuthenticationManager()->getAuthLevelName($target->authLevel);
$this->maniaControl->getChat()->sendError("You can't revoke the Rights of a {$title}!", $admin);
return;
}
2014-08-13 11:05:52 +02:00
if ($this->maniaControl->getAuthenticationManager()->checkRight($target, AuthenticationManager::AUTH_LEVEL_MASTERADMIN)
2014-08-05 02:17:41 +02:00
) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendError("MasterAdmins can't be removed!", $admin);
2013-12-26 11:25:10 +01:00
return;
}
2014-08-13 11:05:52 +02:00
$success = $this->maniaControl->getAuthenticationManager()->grantAuthLevel($target, AuthenticationManager::AUTH_LEVEL_PLAYER);
2014-02-27 13:25:11 +01:00
if (!$success) {
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendError('Error occurred.', $admin);
2013-12-26 11:25:10 +01:00
return;
}
// Announce revoke
2014-08-13 11:05:52 +02:00
$title = $this->maniaControl->getAuthenticationManager()->getAuthLevelName($admin->authLevel);
2014-08-05 02:17:41 +02:00
$chatMessage = $title . ' ' . $admin->getEscapedNickname() . ' revoked the Rights of ' . $target->getEscapedNickname() . '!';
2014-08-13 11:05:52 +02:00
$this->maniaControl->getChat()->sendInformation($chatMessage);
Logger::logInfo($chatMessage, true);
2013-12-26 11:25:10 +01:00
}
2014-01-02 16:37:52 +01:00
/**
* Check if a Player is muted
2014-01-02 16:37:52 +01:00
*
* @deprecated see Player/isMuted()
2014-01-02 16:37:52 +01:00
*/
public function isPlayerMuted($login) {
return $this->maniaControl->getPlayerManager()->getPlayer($login)->isMuted();
2014-01-02 16:37:52 +01:00
}
2013-12-31 16:01:22 +01:00
}