DiscordIntegration/src/main/java/chikachi/discord/integration/DynmapIntegration.java

61 lines
2.3 KiB
Java

/*
* Copyright (C) 2017 Chikachi
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see http://www.gnu.org/licenses.
*/
package chikachi.discord.integration;
import chikachi.discord.core.DiscordClient;
import chikachi.discord.core.Message;
import chikachi.discord.core.config.Configuration;
import chikachi.discord.core.config.minecraft.MinecraftGenericConfig;
import net.minecraftforge.fml.common.Optional;
import org.dynmap.DynmapCommonAPI;
import org.dynmap.DynmapCommonAPIListener;
import java.util.HashMap;
@SuppressWarnings("unused")
@Optional.Interface(iface = "org.dynmap.DynmapCommonAPIListener", modid = "Dynmap")
public class DynmapIntegration extends DynmapCommonAPIListener {
public DynmapIntegration() {
DynmapCommonAPIListener.register(this);
}
@Override
@Optional.Method(modid = "Dynmap")
public void apiEnabled(DynmapCommonAPI dynmapCommonAPI) {
}
@Override
@Optional.Method(modid = "Dynmap")
public boolean webChatEvent(String source, String name, String message) {
if (Configuration.getConfig().minecraft.integrations.dynmapEnabled) {
MinecraftGenericConfig genericConfig = Configuration.getConfig().minecraft.dimensions.generic;
HashMap<String, String> arguments = new HashMap<>();
arguments.put("MESSAGE", message);
DiscordClient.getInstance().broadcast(
new Message()
.setAuthor("[Dynmap]" + (name != null && name.trim().length() > 0 ? " " + name : ""))
.setMessage(genericConfig.messages.chatMessage)
.setArguments(arguments),
genericConfig.relayChat.getChannels(
genericConfig.discordChannel
)
);
}
return true;
}
}