jellyfin/Emby.Server.Implementations/Library/PathExtensions.cs

52 lines
1.7 KiB
C#
Raw Normal View History

2020-04-19 15:18:28 +02:00
#nullable enable
using System;
2015-01-02 15:29:20 +01:00
using System.Text.RegularExpressions;
2014-12-01 13:43:34 +01:00
namespace Emby.Server.Implementations.Library
2014-12-01 13:43:34 +01:00
{
2019-11-01 18:38:54 +01:00
/// <summary>
/// Class providing extension methods for working with paths.
/// </summary>
2014-12-01 13:43:34 +01:00
public static class PathExtensions
{
/// <summary>
/// Gets the attribute value.
/// </summary>
/// <param name="str">The STR.</param>
2020-04-19 15:18:28 +02:00
/// <param name="attribute">The attrib.</param>
2014-12-01 13:43:34 +01:00
/// <returns>System.String.</returns>
2020-04-21 10:18:26 +02:00
/// <exception cref="ArgumentException"><paramref name="str" /> or <paramref name="attribute" /> is empty.</exception>
2020-04-19 15:18:28 +02:00
public static string? GetAttributeValue(this string str, string attribute)
2014-12-01 13:43:34 +01:00
{
2020-04-19 15:18:28 +02:00
if (str.Length == 0)
2014-12-01 13:43:34 +01:00
{
2020-04-19 15:18:28 +02:00
throw new ArgumentException("String can't be empty.", nameof(str));
2014-12-01 13:43:34 +01:00
}
2020-04-19 15:18:28 +02:00
if (attribute.Length == 0)
2014-12-01 13:43:34 +01:00
{
2020-04-19 15:18:28 +02:00
throw new ArgumentException("String can't be empty.", nameof(attribute));
2014-12-01 13:43:34 +01:00
}
2020-04-19 15:18:28 +02:00
string srch = "[" + attribute + "=";
2014-12-01 13:43:34 +01:00
int start = str.IndexOf(srch, StringComparison.OrdinalIgnoreCase);
2020-04-19 15:18:28 +02:00
if (start != -1)
2014-12-01 13:43:34 +01:00
{
start += srch.Length;
int end = str.IndexOf(']', start);
return str.Substring(start, end - start);
}
2019-11-01 18:38:54 +01:00
2015-01-02 15:29:20 +01:00
// for imdbid we also accept pattern matching
2020-04-19 15:18:28 +02:00
if (string.Equals(attribute, "imdbid", StringComparison.OrdinalIgnoreCase))
2015-01-02 15:29:20 +01:00
{
2020-04-19 23:14:04 +02:00
var m = Regex.Match(str, "tt([0-9]{7,8})", RegexOptions.IgnoreCase);
2015-01-04 15:34:15 +01:00
return m.Success ? m.Value : null;
2015-01-02 15:29:20 +01:00
}
2015-01-04 15:34:15 +01:00
2014-12-01 13:43:34 +01:00
return null;
}
}
}