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