2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:01:16 -07:00
|
|
|
using System;
|
2018-12-27 16:27:57 -07:00
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
{
|
|
|
|
public static class TagExtensions
|
|
|
|
{
|
|
|
|
public static void AddTag(this BaseItem item, string name)
|
|
|
|
{
|
|
|
|
if (string.IsNullOrWhiteSpace(name))
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentNullException(nameof(name));
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
var current = item.Tags;
|
|
|
|
|
|
|
|
if (!current.Contains(name, StringComparer.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
if (current.Length == 0)
|
|
|
|
{
|
|
|
|
item.Tags = new[] { name };
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-01-13 12:25:32 -07:00
|
|
|
item.Tags = current.Concat(new[] { name }).ToArray();
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|