1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Added trailer links to the discovery page.

This commit is contained in:
Leonardo Galli 2017-04-28 14:14:02 +02:00
parent b1025e7229
commit 5a0f02007f
3 changed files with 17 additions and 0 deletions

View File

@ -34,6 +34,8 @@ public class MovieResult
public int vote_count { get; set; }
public bool video { get; set; }
public float vote_average { get; set; }
public string trailer_key { get; set; }
public string trailer_site { get; set; }
}

View File

@ -591,6 +591,15 @@ private Movie MapMovie(MovieResult result)
_logger.Debug(result);
}
if (result.trailer_key.IsNotNullOrWhiteSpace() && result.trailer_site.IsNotNullOrWhiteSpace())
{
if (result.trailer_site == "youtube")
{
imdbMovie.YouTubeTrailerId = result.trailer_key;
}
}
return imdbMovie;
}
catch (Exception e)

View File

@ -27,6 +27,12 @@
<span class="label label-warning">In Cinemas</span>
{{/if_eq}}
<span class="label label-default" title="{{ratings.votes}} Vote(s)">{{ratings.value}}</span>
{{#if youTubeTrailerId}}
<span class="label label-info">
<a href="{{youTubeTrailerUrl}}" style="color: white;">Trailer</a>
</span>
{{/if}}
</span>