Compare commits

..

No commits in common. "master" and "v2.1" have entirely different histories.
master ... v2.1

7 changed files with 9 additions and 65 deletions

View File

@ -18,7 +18,9 @@
## 说明 ## 说明
本插件大约相当于 [ImageFrame](https://github.com/LOOHP/ImageFrame)的简版以及 [ImageMaps](https://github.com/SydMontague/ImageMaps) 的高版本重制版。前者功能丰富不过可能由于项目体量较大对于新版本的兼容较慢后者在1.18 开始就停止了更新,且不支持 Folia 核心。 本插件大约相当于 [ImageFrame](https://github.com/LOOHP/ImageFrame)
的简版以及 [ImageMaps](https://github.com/SydMontague/ImageMaps) 的高版本重制版。前者功能丰富,不过可能由于项目体量较大,对于新版本的兼容较慢,后者在
1.18 开始就停止了更新,切不支持 Folia 核心。
## 功能介绍 ## 功能介绍
@ -29,7 +31,7 @@
## 支持版本 ## 支持版本
- 1.20.1+ (Paper、Folia) - 1.20.1+ (Spigot、Paper、Folia)
## 安装方法 ## 安装方法
@ -74,21 +76,15 @@
### 配置文件参考 ### 配置文件参考
```yaml ```yaml
# 地图画阵列的最大尺寸 宽
MaxFrameX: 32 MaxFrameX: 32
# 地图画阵列的最大尺寸 高
MaxFrameY: 18 MaxFrameY: 18
# 是否启用经济系统 消耗玩家金钱生成地图画 CheckUpdate: true
Economy: Economy:
Enable: false Enable: false
CostPerMap: 100.0 # 每张地图画的单价 - 3*3的地图画需要9张地图画 也就是 9*100 = 900 CostPerMap: 100.0
# 图床地址白名单,不在白名单中的图床将无法使用,留空表示不启用地址白名单
AddressWhiteList: []
CheckUpdate: true
Debug: false Debug: false
``` ```

View File

@ -6,7 +6,7 @@
<groupId>cn.lunadeer</groupId> <groupId>cn.lunadeer</groupId>
<artifactId>ColorfulMap</artifactId> <artifactId>ColorfulMap</artifactId>
<version>2.5</version> <version>2.1</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>ColorfulMap</name> <name>ColorfulMap</name>

View File

@ -14,8 +14,8 @@ public final class ColorfulMap extends JavaPlugin {
public void onEnable() { public void onEnable() {
// Plugin startup logic // Plugin startup logic
instance = this; instance = this;
new XLogger(this);
config = new Configuration(this); config = new Configuration(this);
new XLogger(this);
XLogger.setDebug(config.isDebug()); XLogger.setDebug(config.isDebug());
new Notification(this); new Notification(this);
new Scheduler(this); new Scheduler(this);

View File

@ -4,8 +4,6 @@ import cn.lunadeer.colorfulmap.utils.VaultConnect.VaultConnect;
import cn.lunadeer.colorfulmap.utils.XLogger; import cn.lunadeer.colorfulmap.utils.XLogger;
import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.configuration.file.FileConfiguration;
import java.util.List;
public class Configuration { public class Configuration {
public Configuration(ColorfulMap plugin) { public Configuration(ColorfulMap plugin) {
@ -24,12 +22,10 @@ public class Configuration {
_check_update = _file.getBoolean("CheckUpdate", true); _check_update = _file.getBoolean("CheckUpdate", true);
_economy_enable = _file.getBoolean("Economy.Enable", false); _economy_enable = _file.getBoolean("Economy.Enable", false);
_price = (float) _file.getDouble("Economy.CostPerMap", 100.0); _price = (float) _file.getDouble("Economy.CostPerMap", 100.0);
_address_white_list = _file.getStringList("AddressWhiteList");
if (_economy_enable) { if (_economy_enable) {
XLogger.info("已启用经济系统"); XLogger.info("已启用经济系统");
new VaultConnect(_plugin); new VaultConnect(_plugin);
} }
saveAll();
} }
public void saveAll() { public void saveAll() {
@ -39,7 +35,6 @@ public class Configuration {
_file.set("CheckUpdate", _check_update); _file.set("CheckUpdate", _check_update);
_file.set("Economy.Enable", _economy_enable); _file.set("Economy.Enable", _economy_enable);
_file.set("Economy.CostPerMap", _price); _file.set("Economy.CostPerMap", _price);
_file.set("AddressWhiteList", _address_white_list);
_plugin.saveConfig(); _plugin.saveConfig();
} }
@ -103,16 +98,6 @@ public class Configuration {
_plugin.saveConfig(); _plugin.saveConfig();
} }
public List<String> getAddressWhiteList() {
return _address_white_list;
}
public void setAddressWhiteList(List<String> address_white_list) {
_address_white_list = address_white_list;
_file.set("AddressWhiteList", address_white_list);
_plugin.saveConfig();
}
private final ColorfulMap _plugin; private final ColorfulMap _plugin;
private FileConfiguration _file; private FileConfiguration _file;
private Boolean _debug; private Boolean _debug;
@ -121,5 +106,4 @@ public class Configuration {
private Boolean _check_update; private Boolean _check_update;
private Boolean _economy_enable; private Boolean _economy_enable;
private Float _price; private Float _price;
private List<String > _address_white_list;
} }

View File

@ -4,7 +4,6 @@ import cn.lunadeer.colorfulmap.ColorfulMap;
import cn.lunadeer.colorfulmap.StorageMaps; import cn.lunadeer.colorfulmap.StorageMaps;
import cn.lunadeer.colorfulmap.utils.ImageTool; import cn.lunadeer.colorfulmap.utils.ImageTool;
import cn.lunadeer.colorfulmap.utils.Notification; import cn.lunadeer.colorfulmap.utils.Notification;
import cn.lunadeer.colorfulmap.utils.UrlTools;
import cn.lunadeer.colorfulmap.utils.VaultConnect.VaultConnect; import cn.lunadeer.colorfulmap.utils.VaultConnect.VaultConnect;
import net.kyori.adventure.text.Component; import net.kyori.adventure.text.Component;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
@ -25,16 +24,8 @@ public class Multi {
public static ItemStack generate(Player player, String url, Float scale) { public static ItemStack generate(Player player, String url, Float scale) {
try { try {
if (!UrlTools.isInWhiteList(url)) {
Notification.error(player, "无法生成地图画: 此图床地址不被允许使用");
return null;
}
URL _url = new URL(url); URL _url = new URL(url);
BufferedImage raw_image = ImageIO.read(_url); BufferedImage raw_image = ImageIO.read(_url);
if (raw_image == null) {
Notification.error(player, "无法读取有效图片,请检查图片地址是否正确或者更换图床");
return null;
}
BufferedImage resized_image; BufferedImage resized_image;
if (scale != 1.0) { if (scale != 1.0) {
resized_image = ImageTool.resize(raw_image, scale); resized_image = ImageTool.resize(raw_image, scale);

View File

@ -1,25 +0,0 @@
package cn.lunadeer.colorfulmap.utils;
import cn.lunadeer.colorfulmap.ColorfulMap;
public class UrlTools {
public static boolean isInWhiteList(String url) {
if (ColorfulMap.config.getAddressWhiteList().isEmpty()) {
return true;
}
for (String whiteUrl : ColorfulMap.config.getAddressWhiteList()) {
if (url.startsWith(whiteUrl)) {
return true;
}
if (url.startsWith("http://" + whiteUrl)) {
return true;
}
if (url.startsWith("https://" + whiteUrl)) {
return true;
}
}
return false;
}
}

View File

@ -6,8 +6,6 @@ Economy:
Enable: false Enable: false
CostPerMap: 100.0 CostPerMap: 100.0
AddressWhiteList: []
CheckUpdate: true CheckUpdate: true
Debug: false Debug: false