001/*
002 * Copyright (c) 2016-2017 Daniel Ennis (Aikar) - MIT License
003 *
004 *  Permission is hereby granted, free of charge, to any person obtaining
005 *  a copy of this software and associated documentation files (the
006 *  "Software"), to deal in the Software without restriction, including
007 *  without limitation the rights to use, copy, modify, merge, publish,
008 *  distribute, sublicense, and/or sell copies of the Software, and to
009 *  permit persons to whom the Software is furnished to do so, subject to
010 *  the following conditions:
011 *
012 *  The above copyright notice and this permission notice shall be
013 *  included in all copies or substantial portions of the Software.
014 *
015 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
016 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
017 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
018 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
019 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
020 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
021 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
022 */
023
024package co.aikar.commands;
025
026import org.spongepowered.api.command.CommandSource;
027import org.spongepowered.api.entity.living.player.Player;
028import org.spongepowered.api.text.Text;
029import org.spongepowered.api.text.format.TextColors;
030import org.spongepowered.api.text.serializer.TextSerializers;
031
032import java.util.Objects;
033
034public class SpongeCommandIssuer implements CommandIssuer {
035
036    private final SpongeCommandManager manager;
037    private final CommandSource source;
038
039    SpongeCommandIssuer(SpongeCommandManager manager, final CommandSource source) {
040        this.manager = manager;
041        this.source = source;
042    }
043
044    @Override
045    public boolean isPlayer() {
046        return this.source instanceof Player;
047    }
048
049    @Override
050    public <T> T getIssuer() {
051        //noinspection unchecked
052        return (T) this.source;
053    }
054
055    @Override
056    public CommandManager getManager() {
057        return manager;
058    }
059
060    @Override
061    public void sendMessageInternal(String message) {
062        this.source.sendMessage(TextSerializers.LEGACY_FORMATTING_CODE.deserialize(message));
063    }
064
065    @Override
066    public boolean hasPermission(final String permission) {
067        return this.source.hasPermission(permission);
068    }
069
070
071    @Override
072    public boolean equals(Object o) {
073        if (this == o) return true;
074        if (o == null || getClass() != o.getClass()) return false;
075        SpongeCommandIssuer that = (SpongeCommandIssuer) o;
076        return Objects.equals(source, that.source);
077    }
078
079    @Override
080    public int hashCode() {
081        return Objects.hash(source);
082    }
083}