You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
using MediaBrowser.Model.Entities;
|
|
using System;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
/// <summary>
|
|
/// Class Extensions
|
|
/// </summary>
|
|
public static class Extensions
|
|
{
|
|
/// <summary>
|
|
/// Adds the trailer URL.
|
|
/// </summary>
|
|
/// <param name="item">The item.</param>
|
|
/// <param name="url">The URL.</param>
|
|
/// <param name="isDirectLink">if set to <c>true</c> [is direct link].</param>
|
|
/// <exception cref="System.ArgumentNullException">url</exception>
|
|
public static void AddTrailerUrl(this BaseItem item, string url, bool isDirectLink)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(url))
|
|
{
|
|
throw new ArgumentNullException("url");
|
|
}
|
|
|
|
var current = item.RemoteTrailers.FirstOrDefault(i => string.Equals(i.Url, url, StringComparison.OrdinalIgnoreCase));
|
|
|
|
if (current != null)
|
|
{
|
|
current.IsDirectLink = isDirectLink;
|
|
}
|
|
else
|
|
{
|
|
item.RemoteTrailers.Add(new MediaUrl
|
|
{
|
|
Url = url,
|
|
IsDirectLink = isDirectLink
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|