1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-11 13:32:42 +01:00
Radarr/NzbDrone.Web/Controllers/DirectoryController.cs
Mark McDowall 0b586de226 Added misnamed provider, PLINQ speeds it up, but still to slow for use, paging helps, but isn't consistent.
A bunch of files changed removing System.Linq, thanks Resharper :(
2011-09-03 20:05:44 -07:00

63 lines
1.6 KiB
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.Helpers;
using System.Web.Mvc;
using NzbDrone.Core.Providers.Core;
namespace NzbDrone.Web.Controllers
{
public class DirectoryController : Controller
{
private readonly DiskProvider _diskProvider;
public DirectoryController(DiskProvider diskProvider)
{
_diskProvider = diskProvider;
}
[HttpPost]
public ActionResult _autoCompletePath(string text, int? filterMode)
{
var data = GetDirectories(text);
return new JsonResult
{
JsonRequestBehavior = JsonRequestBehavior.AllowGet,
Data = data
};
}
[HttpGet]
public JsonResult GetDirectories(string q)
{
string[] dirs = null;
try
{
//Windows (Including UNC)
var windowsSep = q.LastIndexOf('\\');
if (windowsSep > -1)
{
dirs = _diskProvider.GetDirectories(q.Substring(0, windowsSep + 1));
}
//Unix
var index = q.LastIndexOf('/');
if (index > -1)
{
dirs = _diskProvider.GetDirectories(q.Substring(0, index + 1));
}
}
catch
{
//Swallow the exceptions so proper JSON is returned to the client (Empty results)
}
return Json(dirs, JsonRequestBehavior.AllowGet);
}
}
}