summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-09-08 09:10:59 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-09-08 09:10:59 +0200
commit119f379a3d6993612e018f2f8224f7a7a7daf49d (patch)
treeb4ba1054539cb91239b16a087f71e10b75f51425
parent2167694965ca2f4f16cfc1362d32a2fa01e817a2 (diff)
parentbbeb2f98f553812e50645f35faf6cad157fbaa5a (diff)
downloadredot-engine-119f379a3d6993612e018f2f8224f7a7a7daf49d.tar.gz
Merge pull request #81075 from SekoiaTree/prevent-leading-dot
Prevent creating any type of file with a leading dot
-rw-r--r--editor/directory_create_dialog.cpp13
-rw-r--r--editor/filesystem_dock.cpp5
-rw-r--r--editor/scene_create_dialog.cpp2
-rw-r--r--editor/script_create_dialog.cpp3
4 files changed, 19 insertions, 4 deletions
diff --git a/editor/directory_create_dialog.cpp b/editor/directory_create_dialog.cpp
index fed7cb82c9..0efd11a6c1 100644
--- a/editor/directory_create_dialog.cpp
+++ b/editor/directory_create_dialog.cpp
@@ -51,13 +51,20 @@ String DirectoryCreateDialog::_validate_path(const String &p_path) const {
return TTR("Folder name cannot be empty.");
}
+ if (p_path.contains("\\") || p_path.contains(":") || p_path.contains("*") ||
+ p_path.contains("|") || p_path.contains(">")) {
+ return TTR("Folder name contains invalid characters.");
+ }
+
for (const String &part : p_path.split("/")) {
if (part.is_empty()) {
return TTR("Folder name cannot be empty.");
}
- if (p_path.contains("\\") || p_path.contains(":") || p_path.contains("*") ||
- p_path.contains("|") || p_path.contains(">") || p_path.ends_with(".") || p_path.ends_with(" ")) {
- return TTR("Folder name contains invalid characters.");
+ if (part.ends_with(" ") || part[0] == ' ') {
+ return TTR("Folder name cannot begin or end with a space.");
+ }
+ if (part[0] == '.') {
+ return TTR("Folder name cannot begin with a dot.");
}
}
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp
index ae26075efa..606137cb76 100644
--- a/editor/filesystem_dock.cpp
+++ b/editor/filesystem_dock.cpp
@@ -1747,7 +1747,7 @@ void FileSystemDock::_rename_operation_confirm() {
} else if (new_name.contains("/") || new_name.contains("\\") || new_name.contains(":")) {
EditorNode::get_singleton()->show_warning(TTR("Name contains invalid characters."));
rename_error = true;
- } else if (new_name.begins_with(".")) {
+ } else if (new_name[0] == '.') {
EditorNode::get_singleton()->show_warning(TTR("This filename begins with a dot rendering the file invisible to the editor.\nIf you want to rename it anyway, use your operating system's file manager."));
rename_error = true;
} else if (to_rename.is_file && to_rename.path.get_extension() != new_name.get_extension()) {
@@ -1819,6 +1819,9 @@ void FileSystemDock::_duplicate_operation_confirm() {
} else if (new_name.contains("/") || new_name.contains("\\") || new_name.contains(":")) {
EditorNode::get_singleton()->show_warning(TTR("Name contains invalid characters."));
return;
+ } else if (new_name[0] == '.') {
+ EditorNode::get_singleton()->show_warning(TTR("Name begins with a dot."));
+ return;
}
String base_dir = to_duplicate.path.get_base_dir();
diff --git a/editor/scene_create_dialog.cpp b/editor/scene_create_dialog.cpp
index c97e9a81e9..d6cb36013f 100644
--- a/editor/scene_create_dialog.cpp
+++ b/editor/scene_create_dialog.cpp
@@ -104,6 +104,8 @@ void SceneCreateDialog::update_dialog() {
if (validation_panel->is_valid() && !scene_name.is_valid_filename()) {
validation_panel->set_message(MSG_ID_PATH, TTR("File name invalid."), EditorValidationPanel::MSG_ERROR);
+ } else if (validation_panel->is_valid() && scene_name[0] == '.') {
+ validation_panel->set_message(MSG_ID_PATH, TTR("File name begins with a dot."), EditorValidationPanel::MSG_ERROR);
}
if (validation_panel->is_valid()) {
diff --git a/editor/script_create_dialog.cpp b/editor/script_create_dialog.cpp
index 2cca02bc7f..b668ccf031 100644
--- a/editor/script_create_dialog.cpp
+++ b/editor/script_create_dialog.cpp
@@ -244,6 +244,9 @@ String ScriptCreateDialog::_validate_path(const String &p_path, bool p_file_must
if (!p.get_file().get_basename().is_valid_filename()) {
return TTR("Filename is invalid.");
}
+ if (p.get_file().begins_with(".")) {
+ return TTR("Name begins with a dot.");
+ }
p = ProjectSettings::get_singleton()->localize_path(p);
if (!p.begins_with("res://")) {