mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
66 lines
1.8 KiB
C#
66 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Web.Mvc;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Web.Filters;
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
{
|
|
public class DirectoryController : Controller
|
|
{
|
|
private readonly DiskProvider _diskProvider;
|
|
|
|
public DirectoryController(DiskProvider diskProvider)
|
|
{
|
|
_diskProvider = diskProvider;
|
|
}
|
|
|
|
[HttpPost]
|
|
public JsonResult _autoCompletePath(string text, int? filterMode)
|
|
{
|
|
var data = GetDirectories(text);
|
|
|
|
return new JsonResult
|
|
{
|
|
JsonRequestBehavior = JsonRequestBehavior.AllowGet,
|
|
Data = data
|
|
};
|
|
}
|
|
|
|
[HttpGet]
|
|
[JsonErrorFilter]
|
|
public JsonResult GetDirectories(string term)
|
|
{
|
|
IEnumerable<string> dirs = null;
|
|
try
|
|
{
|
|
//Windows (Including UNC)
|
|
var windowsSep = term.LastIndexOf('\\');
|
|
|
|
if (windowsSep > -1)
|
|
{
|
|
dirs = _diskProvider.GetDirectories(term.Substring(0, windowsSep + 1));
|
|
}
|
|
|
|
//Unix
|
|
var index = term.LastIndexOf('/');
|
|
|
|
if (index > -1)
|
|
{
|
|
dirs = _diskProvider.GetDirectories(term.Substring(0, index + 1));
|
|
}
|
|
}
|
|
catch (Exception)
|
|
{
|
|
return Json(new List<string>(), JsonRequestBehavior.AllowGet);
|
|
//Swallow the exceptions so proper JSON is returned to the client (Empty results)
|
|
}
|
|
|
|
if (dirs == null)
|
|
throw new Exception("A valid path was not provided");
|
|
|
|
return Json(dirs, JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
}
|