2011-06-09 03:45:06 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
2011-06-30 08:15:06 +02:00
|
|
|
|
using System.Web.Helpers;
|
2011-06-09 03:45:06 +02:00
|
|
|
|
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
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-30 08:15:06 +02:00
|
|
|
|
[HttpGet]
|
|
|
|
|
public JsonResult GetDirectories(string q)
|
2011-06-09 03:45:06 +02:00
|
|
|
|
{
|
2011-06-10 23:55:58 +02:00
|
|
|
|
try
|
2011-06-09 03:45:06 +02:00
|
|
|
|
{
|
2011-06-10 23:55:58 +02:00
|
|
|
|
//Windows (Including UNC)
|
2011-06-30 08:15:06 +02:00
|
|
|
|
var windowsSep = q.LastIndexOf('\\');
|
2011-06-10 23:55:58 +02:00
|
|
|
|
|
|
|
|
|
if (windowsSep > -1)
|
|
|
|
|
{
|
2011-06-30 08:15:06 +02:00
|
|
|
|
var dirs = _diskProvider.GetDirectories(q.Substring(0, windowsSep + 1));
|
|
|
|
|
return Json(dirs, JsonRequestBehavior.AllowGet);
|
2011-06-10 23:55:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-06-30 08:15:06 +02:00
|
|
|
|
return Json(new string[] { }, JsonRequestBehavior.AllowGet);
|
2011-06-10 23:55:58 +02:00
|
|
|
|
//Unix
|
2011-06-30 08:15:06 +02:00
|
|
|
|
var index = q.LastIndexOf('/');
|
2011-06-10 23:55:58 +02:00
|
|
|
|
|
|
|
|
|
if (index > -1)
|
|
|
|
|
{
|
2011-06-30 08:15:06 +02:00
|
|
|
|
var dirs = _diskProvider.GetDirectories(q.Substring(0, index + 1));
|
|
|
|
|
//return new SelectList(dirs, dirs.FirstOrDefault());
|
2011-06-10 23:55:58 +02:00
|
|
|
|
}
|
2011-06-09 03:45:06 +02:00
|
|
|
|
}
|
2011-06-19 22:43:47 +02:00
|
|
|
|
catch
|
2011-06-09 03:45:06 +02:00
|
|
|
|
{
|
2011-06-10 23:55:58 +02:00
|
|
|
|
//Swallow the exceptions so proper JSON is returned to the client (Empty results)
|
2011-06-09 03:45:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-06-30 08:15:06 +02:00
|
|
|
|
return Json(new string[]{}, JsonRequestBehavior.AllowGet);
|
2011-06-09 03:45:06 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|