mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-06 04:52:21 -07:00
(cherry picked from commit 5ba3ff598770fdf9e5a53d490c8bcbdd6a59c4cc) Fixed validation for Remote Path Mapping (cherry picked from commit bf34b4309402ce529a8c04de70f44b28948761f4)
84 lines
3 KiB
C#
84 lines
3 KiB
C#
using System.Collections.Generic;
|
|
using FluentValidation;
|
|
using Lidarr.Http;
|
|
using Lidarr.Http.REST;
|
|
using Lidarr.Http.REST.Attributes;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.RemotePathMappings;
|
|
using NzbDrone.Core.Validation.Paths;
|
|
|
|
namespace Lidarr.Api.V1.RemotePathMappings
|
|
{
|
|
[V1ApiController]
|
|
public class RemotePathMappingController : RestController<RemotePathMappingResource>
|
|
{
|
|
private readonly IRemotePathMappingService _remotePathMappingService;
|
|
|
|
public RemotePathMappingController(IRemotePathMappingService remotePathMappingService,
|
|
PathExistsValidator pathExistsValidator,
|
|
MappedNetworkDriveValidator mappedNetworkDriveValidator)
|
|
{
|
|
_remotePathMappingService = remotePathMappingService;
|
|
|
|
SharedValidator.RuleFor(c => c.Host)
|
|
.NotEmpty();
|
|
|
|
// We cannot use IsValidPath here, because it's a remote path, possibly other OS.
|
|
SharedValidator.RuleFor(c => c.RemotePath)
|
|
.NotEmpty();
|
|
|
|
SharedValidator.RuleFor(c => c.RemotePath)
|
|
.Must(remotePath => remotePath.IsNotNullOrWhiteSpace() && !remotePath.StartsWith(" "))
|
|
.WithMessage("Remote Path '{PropertyValue}' must not start with a space");
|
|
|
|
SharedValidator.RuleFor(c => c.RemotePath)
|
|
.Must(remotePath => remotePath.IsNotNullOrWhiteSpace() && !remotePath.EndsWith(" "))
|
|
.WithMessage("Remote Path '{PropertyValue}' must not end with a space");
|
|
|
|
SharedValidator.RuleFor(c => c.LocalPath)
|
|
.Cascade(CascadeMode.Stop)
|
|
.IsValidPath()
|
|
.SetValidator(mappedNetworkDriveValidator)
|
|
.SetValidator(pathExistsValidator)
|
|
.SetValidator(new SystemFolderValidator())
|
|
.NotEqual("/")
|
|
.WithMessage("Cannot be set to '/'");
|
|
}
|
|
|
|
public override RemotePathMappingResource GetResourceById(int id)
|
|
{
|
|
return _remotePathMappingService.Get(id).ToResource();
|
|
}
|
|
|
|
[RestPostById]
|
|
[Consumes("application/json")]
|
|
public ActionResult<RemotePathMappingResource> CreateMapping([FromBody] RemotePathMappingResource resource)
|
|
{
|
|
var model = resource.ToModel();
|
|
|
|
return Created(_remotePathMappingService.Add(model).Id);
|
|
}
|
|
|
|
[HttpGet]
|
|
[Produces("application/json")]
|
|
public List<RemotePathMappingResource> GetMappings()
|
|
{
|
|
return _remotePathMappingService.All().ToResource();
|
|
}
|
|
|
|
[RestDeleteById]
|
|
public void DeleteMapping(int id)
|
|
{
|
|
_remotePathMappingService.Remove(id);
|
|
}
|
|
|
|
[RestPutById]
|
|
public ActionResult<RemotePathMappingResource> UpdateMapping([FromBody] RemotePathMappingResource resource)
|
|
{
|
|
var mapping = resource.ToModel();
|
|
|
|
return Accepted(_remotePathMappingService.Update(mapping));
|
|
}
|
|
}
|
|
}
|