Slackwolf\Game\Command\PoisonCommand::__construct PHP Method

__construct() public method

Constructs a new Poison command.
public __construct ( RealTimeClient $client, GameManager $gameManager, Message $message, array $args = null )
$client Slack\RealTimeClient
$gameManager Slackwolf\Game\GameManager
$message Slackwolf\Message\Message
$args array
    public function __construct(RealTimeClient $client, GameManager $gameManager, Message $message, array $args = null)
    {
        parent::__construct($client, $gameManager, $message, $args);
        $client = $this->client;
        if ($this->channel[0] != 'D') {
            throw new Exception("You may only !poison privately.");
        }
        if (count($this->args) < 2) {
            $client->getChannelGroupOrDMByID($this->channel)->then(function (ChannelInterface $channel) use($client) {
                $client->send(":warning: Invalid command. Usage: !poison #channel @user", $channel);
            });
            throw new InvalidArgumentException("Not enough arguments");
        }
        $client = $this->client;
        $channelId = null;
        $channelName = "";
        if (strpos($this->args[0], '#C') !== false) {
            $channelId = ChannelIdFormatter::format($this->args[0]);
        } else {
            if (strpos($this->args[0], '#') !== false) {
                $channelName = substr($this->args[0], 1);
            } else {
                $channelName = $this->args[0];
            }
        }
        if ($channelId != null) {
            $this->client->getChannelById($channelId)->then(function (ChannelInterface $channel) use(&$channelId) {
                $channelId = $channel->getId();
            }, function (Exception $e) {
                // Do nothing
            });
        }
        if ($channelId == null) {
            $this->client->getGroupByName($channelName)->then(function (ChannelInterface $channel) use(&$channelId) {
                $channelId = $channel->getId();
            }, function (Exception $e) {
                // Do nothing
            });
        }
        if ($channelId == null) {
            $this->client->getDMById($this->channel)->then(function (DirectMessageChannel $dmc) use($client) {
                $this->client->send(":warning: Invalid channel specified. Usage: !poison #channel @user", $dmc);
            });
            throw new InvalidArgumentException();
        }
        $this->game = $this->gameManager->getGame($channelId);
        if (!$this->game) {
            $client->getChannelGroupOrDMByID($this->channel)->then(function (ChannelInterface $channel) use($client) {
                $client->send(":warning: No game in progress.", $channel);
            });
            throw new Exception("No game in progress.");
        }
        $this->args[1] = UserIdFormatter::format($this->args[1], $this->game->getOriginalPlayers());
    }
PoisonCommand