2019-11-01 10:38:54 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2015-10-03 21:23:11 -07:00
|
|
|
using System.IO;
|
2016-10-25 12:02:04 -07:00
|
|
|
using MediaBrowser.Model.IO;
|
2015-10-03 21:23:11 -07:00
|
|
|
|
2016-11-11 00:24:36 -07:00
|
|
|
namespace Emby.Server.Implementations.IO
|
2015-10-03 21:23:11 -07:00
|
|
|
{
|
|
|
|
public class MbLinkShortcutHandler : IShortcutHandler
|
|
|
|
{
|
|
|
|
private readonly IFileSystem _fileSystem;
|
|
|
|
|
|
|
|
public MbLinkShortcutHandler(IFileSystem fileSystem)
|
|
|
|
{
|
|
|
|
_fileSystem = fileSystem;
|
|
|
|
}
|
|
|
|
|
2019-01-06 13:50:43 -07:00
|
|
|
public string Extension => ".mblink";
|
2015-10-03 21:23:11 -07:00
|
|
|
|
2021-05-20 12:28:18 -07:00
|
|
|
public string? Resolve(string shortcutPath)
|
2015-10-03 21:23:11 -07:00
|
|
|
{
|
|
|
|
if (string.IsNullOrEmpty(shortcutPath))
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentException("Shortcut path is empty or null.", nameof(shortcutPath));
|
2015-10-03 21:23:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (string.Equals(Path.GetExtension(shortcutPath), ".mblink", StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
2019-01-26 15:09:07 -07:00
|
|
|
var path = File.ReadAllText(shortcutPath);
|
2015-10-03 21:23:11 -07:00
|
|
|
|
|
|
|
return _fileSystem.NormalizePath(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Create(string shortcutPath, string targetPath)
|
|
|
|
{
|
|
|
|
if (string.IsNullOrEmpty(shortcutPath))
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentNullException(nameof(shortcutPath));
|
2015-10-03 21:23:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(targetPath))
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentNullException(nameof(targetPath));
|
2015-10-03 21:23:11 -07:00
|
|
|
}
|
|
|
|
|
2019-01-26 15:09:07 -07:00
|
|
|
File.WriteAllText(shortcutPath, targetPath);
|
2015-10-03 21:23:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|