fixes #299 - Add trailer urls to MovieDbProvider

This commit is contained in:
Luke Pulverenti
2013-06-27 12:36:41 -04:00
parent c70f1047f7
commit 5782d9084d
9 changed files with 62 additions and 25 deletions

View File

@@ -399,9 +399,9 @@ namespace MediaBrowser.Controller.Dto
dto.Taglines = item.Taglines;
}
if (fields.Contains(ItemFields.TrailerUrls))
if (fields.Contains(ItemFields.RemoteTrailers))
{
dto.TrailerUrls = item.TrailerUrls;
dto.RemoteTrailers = item.RemoteTrailers;
}
dto.Type = item.GetType().Name;

View File

@@ -27,7 +27,7 @@ namespace MediaBrowser.Controller.Entities
protected BaseItem()
{
Genres = new List<string>();
TrailerUrls = new List<string>();
RemoteTrailers = new List<MediaUrl>();
Studios = new List<string>();
People = new List<PersonInfo>();
Taglines = new List<string>();
@@ -903,7 +903,7 @@ namespace MediaBrowser.Controller.Entities
/// Gets or sets the trailer URL.
/// </summary>
/// <value>The trailer URL.</value>
public List<string> TrailerUrls { get; set; }
public List<MediaUrl> RemoteTrailers { get; set; }
/// <summary>
/// Gets or sets the provider ids.
@@ -1180,22 +1180,28 @@ namespace MediaBrowser.Controller.Entities
/// Adds a TrailerUrl to the item
/// </summary>
/// <param name="url">The URL.</param>
/// <exception cref="System.ArgumentNullException"></exception>
public void AddTrailerUrl(string url)
/// <param name="isDirectLink">if set to <c>true</c> [is direct link].</param>
/// <exception cref="System.ArgumentNullException">url</exception>
public void AddTrailerUrl(string url, bool isDirectLink)
{
if (string.IsNullOrWhiteSpace(url))
{
throw new ArgumentNullException("url");
}
if (TrailerUrls == null)
{
TrailerUrls = new List<string>();
}
var current = RemoteTrailers.FirstOrDefault(i => string.Equals(i.Url, url, StringComparison.OrdinalIgnoreCase));
if (!TrailerUrls.Contains(url, StringComparer.OrdinalIgnoreCase))
if (current != null)
{
TrailerUrls.Add(url);
current.IsDirectLink = isDirectLink;
}
else
{
RemoteTrailers.Add(new MediaUrl
{
Url = url,
IsDirectLink = isDirectLink
});
}
}

View File

@@ -406,7 +406,7 @@ namespace MediaBrowser.Controller.Providers
if (!string.IsNullOrWhiteSpace(val))
{
//item.AddTrailerUrl(val);
item.AddTrailerUrl(val, false);
}
break;
}