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

53 lines
1.4 KiB
C#
Raw Normal View History

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