ImageOnMap/src/main/java/fr/moribus/imageonmap/commands/maptool/UpdateCommand.java

232 lines
9.7 KiB
Java
Raw Normal View History

2020-07-16 02:50:17 +02:00
/*
* Copyright or © or Copr. Moribus (2013)
* Copyright or © or Copr. ProkopyL <prokopylmc@gmail.com> (2015)
* Copyright or © or Copr. Amaury Carrade <amaury@carrade.eu> (2016 2021)
* Copyright or © or Copr. Vlammar <valentin.jabre@gmail.com> (2019 2021)
2020-07-16 02:50:17 +02:00
*
* This software is a computer program whose purpose is to allow insertion of
* custom images in a Minecraft world.
*
* This software is governed by the CeCILL license under French law and
2020-07-16 02:50:17 +02:00
* abiding by the rules of distribution of free software. You can use,
* modify and/ or redistribute the software under the terms of the CeCILL
2020-07-16 02:50:17 +02:00
* license as circulated by CEA, CNRS and INRIA at the following URL
* "http://www.cecill.info".
*
* As a counterpart to the access to the source code and rights to copy,
* modify and redistribute granted by the license, users are provided only
* with a limited warranty and the software's author, the holder of the
* economic rights, and the successive licensors have only limited
* liability.
*
* In this respect, the user's attention is drawn to the risks associated
* with loading, using, modifying and/or developing or reproducing the
* software by the user in light of its specific status of free software,
* that may mean that it is complicated to manipulate, and that also
* therefore means that it is reserved for developers and experienced
* professionals having in-depth computer knowledge. Users are therefore
* encouraged to load and test the software's suitability as regards their
* requirements in conditions enabling the security of their systems and/or
* data to be ensured and, more generally, to use and operate it in the
* same conditions as regards security.
*
* The fact that you are presently reading this means that you have had
* knowledge of the CeCILL license and that you accept its terms.
2020-07-16 02:50:17 +02:00
*/
package fr.moribus.imageonmap.commands.maptool;
import fr.moribus.imageonmap.Permissions;
import fr.moribus.imageonmap.commands.IoMCommand;
import fr.moribus.imageonmap.image.ImageRendererExecutor;
import fr.moribus.imageonmap.image.ImageUtils;
import fr.moribus.imageonmap.map.ImageMap;
import fr.moribus.imageonmap.map.MapManager;
2020-11-15 19:33:16 +01:00
import fr.zcraft.quartzlib.components.commands.CommandException;
import fr.zcraft.quartzlib.components.commands.CommandInfo;
import fr.zcraft.quartzlib.components.i18n.I;
import fr.zcraft.quartzlib.components.worker.WorkerCallback;
import fr.zcraft.quartzlib.tools.PluginLogger;
import fr.zcraft.quartzlib.tools.text.ActionBar;
import fr.zcraft.quartzlib.tools.text.MessageSender;
2020-07-16 02:50:17 +02:00
import java.net.MalformedURLException;
import java.net.URL;
2020-12-13 14:20:20 +01:00
import java.util.ArrayList;
2020-12-10 22:13:05 +01:00
import org.bukkit.ChatColor;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
2020-07-16 02:50:17 +02:00
@CommandInfo(name = "update", usageParameters = "[player name]:<map name> <new url> [stretched|covered] ")
2020-12-10 22:13:05 +01:00
public class UpdateCommand extends IoMCommand {
2020-07-16 02:50:17 +02:00
@Override
2020-12-10 22:13:05 +01:00
protected void run() throws CommandException {
//TODO fix the issue where to many quick usage of offlineNameFetch will return null
2020-12-13 14:20:20 +01:00
ArrayList<String> arguments = getArgs();
String warningMsg;
if (arguments.size() > 4) {
warningMsg = "Too many parameters!"
+ " Usage: /maptool update [player name]:<map name> <new url> [stretched|covered]";
2020-12-13 14:20:20 +01:00
warning(I.t(warningMsg));
return;
2020-12-10 22:13:05 +01:00
}
2020-12-13 14:20:20 +01:00
if (arguments.size() < 2) {
warningMsg =
"Too few parameters! Usage: /maptool update [player name]:<map name> <new url> [stretched|covered]";
2020-12-13 14:20:20 +01:00
warning(I.t(warningMsg));
return;
2020-12-10 22:13:05 +01:00
}
2020-12-13 14:20:20 +01:00
final String playerName;
final String mapName;
final String url;
final String resize;
final Player playerSender;
Player playerSender1;
try {
playerSender1 = playerSender();
} catch (CommandException ignored) {
if (arguments.size() == 2) {
throwInvalidArgument(
I.t("Usage: /maptool update [player name]:<map name> <new url> [stretched|covered]"));
}
playerSender1 = null;
}
playerSender = playerSender1;
2020-12-13 14:20:20 +01:00
//Sent by a non player and not enough arguments
if (arguments.size() == 2 && playerSender == null) {
throwInvalidArgument("Usage: /maptool update [player name]:<map name> <new url> [stretched|covered]");
return;
}
2020-12-13 14:20:20 +01:00
if (arguments.size() == 2) {
resize = "";
playerName = playerSender.getName();
mapName = arguments.get(0);
url = arguments.get(1);
2020-12-13 14:20:20 +01:00
} else {
if (arguments.size() == 4) {
if (!Permissions.UPDATEOTHER.grantedTo(sender)) {
throwNotAuthorized();
2020-12-13 14:20:20 +01:00
return;
}
playerName = arguments.get(0);
mapName = arguments.get(1);
url = arguments.get(2);
resize = arguments.get(3);
2020-12-13 14:20:20 +01:00
} else {
if (arguments.size() == 3) {
if (arguments.get(2).equals("covered") || arguments.get(2).equals("stretched")) {
playerName = playerSender.getName();
mapName = arguments.get(0);
url = arguments.get(1);
resize = arguments.get(2);
2020-12-13 14:20:20 +01:00
} else {
if (!Permissions.UPDATEOTHER.grantedTo(sender)) {
throwNotAuthorized();
2020-12-13 14:20:20 +01:00
return;
}
playerName = arguments.get(0);
mapName = arguments.get(1);
url = arguments.get(2);
2020-12-13 14:20:20 +01:00
resize = "";
}
} else {
resize = "";
playerName = "";
url = "";
mapName = "";
}
}
}
final ImageUtils.ScalingType scaling;
switch (resize) {
2020-07-16 02:50:17 +02:00
case "stretched":
scaling = ImageUtils.ScalingType.STRETCHED;
break;
case "covered":
scaling = ImageUtils.ScalingType.COVERED;
break;
default:
scaling = ImageUtils.ScalingType.CONTAINED;
}
2020-07-23 02:02:18 +02:00
2020-12-13 14:20:20 +01:00
//TODO passer en static
//ImageOnMap.getPlugin().getCommandWorker().offlineNameFetch(playerName, uuid -> {
retrieveUUID(playerName, uuid -> {
2020-12-13 14:20:20 +01:00
ImageMap map = MapManager.getMap(uuid, mapName);
if (map == null) {
warning(sender, I.t("This map does not exist."));
2020-12-13 14:20:20 +01:00
return;
2020-12-10 22:13:05 +01:00
}
2020-12-13 14:20:20 +01:00
URL url1;
2020-07-16 02:50:17 +02:00
try {
2020-12-13 14:20:20 +01:00
url1 = new URL(url);
2021-12-19 02:39:08 +01:00
if (!Permissions.BYPASS_WHITELIST.grantedTo(playerSender) && !checkHostnameWhitelist(url1)) {
throwInvalidArgument(I.t("This hosting website is not trusted, if you think that this is an error "
+ " contact your server administrator"));
return;
}
//TODO replace by a check of the load status.(if not loaded load the mapmanager)
MapManager.load(false);//we don't want to spam the console each time we reload the mapManager
2020-12-13 14:20:20 +01:00
Integer[] size = {1, 1};
if (map.getType() == ImageMap.Type.POSTER) {
size = map.getSize(map.getUserUUID(), map.getId());
2020-12-13 14:20:20 +01:00
}
2021-02-07 12:48:51 +01:00
2020-12-13 14:20:20 +01:00
int width = size[0];
int height = size[1];
try {
if (playerSender != null) {
ActionBar.sendPermanentMessage(playerSender, ChatColor.DARK_GREEN + I.t("Updating..."));
}
2020-12-13 14:20:20 +01:00
ImageRendererExecutor
.update(url1, scaling, uuid, map, width, height, new WorkerCallback<ImageMap>() {
@Override
public void finished(ImageMap result) {
if (playerSender != null) {
ActionBar.removeMessage(playerSender);
MessageSender.sendActionBarMessage(playerSender,
ChatColor.DARK_GREEN + I.t("The map was updated using the new image!"));
}
2020-12-13 14:20:20 +01:00
}
@Override
public void errored(Throwable exception) {
if (playerSender != null) {
playerSender
.sendMessage(
I.t("{ce}Map rendering failed: {0}", exception.getMessage()));
}
2020-12-13 14:20:20 +01:00
PluginLogger.warning("Rendering from {0} failed: {1}: {2}",
playerSender.getName(),
2020-12-13 14:20:20 +01:00
exception.getClass().getCanonicalName(),
exception.getMessage());
}
});
} finally {
if (playerSender != null) {
ActionBar.removeMessage(playerSender);
}
2020-12-13 14:20:20 +01:00
}
} catch (MalformedURLException | CommandException ex) {
warning(sender, I.t("Invalid URL."));
2020-07-16 02:50:17 +02:00
}
2020-12-13 14:20:20 +01:00
});
2020-07-16 02:50:17 +02:00
}
@Override
2020-12-10 22:13:05 +01:00
public boolean canExecute(CommandSender sender) {
2020-07-16 02:50:17 +02:00
return Permissions.UPDATE.grantedTo(sender);
}
}