Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-06 03:20:06 +01:00
Add config option to allow symbolic links for files.
Dieser Commit ist enthalten in:
Ursprung
a7b4913f6c
Commit
a54c7437fc
@ -107,6 +107,7 @@ public abstract class LocalConfiguration {
|
|||||||
public int butcherDefaultRadius = -1;
|
public int butcherDefaultRadius = -1;
|
||||||
public int butcherMaxRadius = -1;
|
public int butcherMaxRadius = -1;
|
||||||
public boolean allowExtraDataValues = false;
|
public boolean allowExtraDataValues = false;
|
||||||
|
public boolean allowSymlinks = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads the configuration.
|
* Loads the configuration.
|
||||||
|
@ -825,7 +825,7 @@ public class WorldEdit {
|
|||||||
String filePath = f.getCanonicalPath();
|
String filePath = f.getCanonicalPath();
|
||||||
String dirPath = dir.getCanonicalPath();
|
String dirPath = dir.getCanonicalPath();
|
||||||
|
|
||||||
if (!filePath.substring(0, dirPath.length()).equals(dirPath)) {
|
if (!filePath.substring(0, dirPath.length()).equals(dirPath) && !config.allowSymlinks) {
|
||||||
throw new FilenameResolutionException(filename,
|
throw new FilenameResolutionException(filename,
|
||||||
"Path is outside allowable root");
|
"Path is outside allowable root");
|
||||||
}
|
}
|
||||||
|
@ -93,6 +93,8 @@ public class YAMLConfiguration extends LocalConfiguration {
|
|||||||
|
|
||||||
saveDir = config.getString("saving.dir", saveDir);
|
saveDir = config.getString("saving.dir", saveDir);
|
||||||
|
|
||||||
|
allowSymlinks = config.getBoolean("files.allow-symbolic-links", false);
|
||||||
|
|
||||||
disallowedBlocks = new HashSet<Integer>(config.getIntList("limits.disallowed-blocks", null));
|
disallowedBlocks = new HashSet<Integer>(config.getIntList("limits.disallowed-blocks", null));
|
||||||
|
|
||||||
allowedDataCycleBlocks = new HashSet<Integer>(config.getIntList("limits.allowed-data-cycle-blocks", null));
|
allowedDataCycleBlocks = new HashSet<Integer>(config.getIntList("limits.allowed-data-cycle-blocks", null));
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
limits:
|
limits:
|
||||||
|
allow-extra-data-values: false
|
||||||
max-blocks-changed:
|
max-blocks-changed:
|
||||||
default: -1
|
default: -1
|
||||||
maximum: -1
|
maximum: -1
|
||||||
@ -56,6 +57,9 @@ scripting:
|
|||||||
saving:
|
saving:
|
||||||
dir: schematics
|
dir: schematics
|
||||||
|
|
||||||
|
files:
|
||||||
|
allow-symbolic-links: false
|
||||||
|
|
||||||
history:
|
history:
|
||||||
size: 15
|
size: 15
|
||||||
expiration: 10
|
expiration: 10
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren