jellyfin/Emby.Server.Implementations/IO/MbLinkShortcutHandler.cs

53 lines
1.4 KiB
C#
Raw Normal View History

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