2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00: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 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(name));
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var current = item.Tags;
|
|
|
|
|
|
|
|
if (!current.Contains(name, StringComparer.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
if (current.Length == 0)
|
|
|
|
{
|
|
|
|
item.Tags = new[] { name };
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-01-13 19:25:32 +00:00
|
|
|
item.Tags = current.Concat(new[] { name }).ToArray();
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|