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.jetbrains.annotations.NotNull;
027import org.spongepowered.api.command.CommandSource;
028import org.spongepowered.api.command.source.ConsoleSource;
029import org.spongepowered.api.entity.living.player.Player;
030import org.spongepowered.api.text.serializer.TextSerializers;
031import org.spongepowered.api.util.Identifiable;
032
033import java.nio.charset.StandardCharsets;
034import java.util.Objects;
035import java.util.UUID;
036
037public class SpongeCommandIssuer implements CommandIssuer {
038
039    private final SpongeCommandManager manager;
040    private final CommandSource source;
041
042    SpongeCommandIssuer(SpongeCommandManager manager, final CommandSource source) {
043        this.manager = manager;
044        this.source = source;
045    }
046
047    @Override
048    public boolean isPlayer() {
049        return this.source instanceof Player;
050    }
051
052    @Override
053    public CommandSource getIssuer() {
054        return this.source;
055    }
056
057    @Override
058    public @NotNull UUID getUniqueId() {
059        if (this.source instanceof Identifiable) {
060            return ((Identifiable) source).getUniqueId();
061        }
062
063        //generate a unique id based of the name (like for the console command sender)
064        return UUID.nameUUIDFromBytes(source.getName().getBytes(StandardCharsets.UTF_8));
065    }
066
067    public Player getPlayer() {
068        return isPlayer() ? (Player) source : null;
069    }
070
071    @Override
072    public CommandManager getManager() {
073        return manager;
074    }
075
076    @Override
077    public void sendMessageInternal(String message) {
078        this.source.sendMessage(TextSerializers.LEGACY_FORMATTING_CODE.deserialize(message));
079    }
080
081    @Override
082    public boolean hasPermission(final String permission) {
083        return this.source.hasPermission(permission);
084    }
085
086    @Override
087    public boolean equals(Object o) {
088        if (this == o) return true;
089        if (o == null || getClass() != o.getClass()) return false;
090        SpongeCommandIssuer that = (SpongeCommandIssuer) o;
091        return Objects.equals(source, that.source);
092    }
093
094    @Override
095    public int hashCode() {
096        return Objects.hash(source);
097    }
098}