Media Library: Fixing that renaming files to a reserved Windows name should cause an error, fixes #6802 (#6919)

This commit is contained in:
Jack Cheng 2019-08-22 10:39:09 -07:00 committed by Benedek Farkas
parent 0279b1e79e
commit a3e9bef3ca
2 changed files with 7 additions and 2 deletions

View File

@ -61,9 +61,12 @@ namespace Orchard.MediaLibrary.MediaFileName
try { try {
_mediaLibraryService.RenameFile(part.FolderPath, priorFileName, model.FileName); _mediaLibraryService.RenameFile(part.FolderPath, priorFileName, model.FileName);
part.FileName = model.FileName; part.FileName = model.FileName;
_notifier.Add(NotifyType.Information, T("File '{0}' was renamed to '{1}'", priorFileName, model.FileName)); _notifier.Add(NotifyType.Information, T("File '{0}' was renamed to '{1}'", priorFileName, model.FileName));
} }
catch (OrchardException) {
updater.AddModelError("MediaFileNameEditorSettings.FileName", T("Unable to rename file. Invalid Windows file path."));
}
catch (Exception) { catch (Exception) {
updater.AddModelError("MediaFileNameEditorSettings.FileName", T("Unable to rename file")); updater.AddModelError("MediaFileNameEditorSettings.FileName", T("Unable to rename file"));
} }

View File

@ -1,11 +1,13 @@
using System; using System;
using System.IO; using System.IO;
using Orchard.Localization;
namespace Orchard.Validation { namespace Orchard.Validation {
/// <summary> /// <summary>
/// Provides methods to validate paths. /// Provides methods to validate paths.
/// </summary> /// </summary>
public static class PathValidation { public static class PathValidation {
/// <summary> /// <summary>
/// Determines if a path lies within the base path boundaries. /// Determines if a path lies within the base path boundaries.
/// If not, an exception is thrown. /// If not, an exception is thrown.
@ -26,7 +28,7 @@ namespace Orchard.Validation {
} }
if (!valid) { if (!valid) {
throw new ArgumentException("Invalid path"); throw new OrchardException(new LocalizedString("Invalid Path"));
} }
return mappedPath; return mappedPath;