mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Media Library: Fixing that renaming files to a reserved Windows name should cause an error, fixes #6802 (#6919)
This commit is contained in:
parent
0279b1e79e
commit
a3e9bef3ca
@ -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"));
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user