mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Merge branch 'develop' of https://github.com/galli-leo/Radarr into develop
This commit is contained in:
commit
cb12945270
8 changed files with 81 additions and 3 deletions
|
@ -27,6 +27,7 @@ namespace NzbDrone.Api.Movie
|
||||||
public MovieStatusType Status { get; set; }
|
public MovieStatusType Status { get; set; }
|
||||||
public string Overview { get; set; }
|
public string Overview { get; set; }
|
||||||
public DateTime? InCinemas { get; set; }
|
public DateTime? InCinemas { get; set; }
|
||||||
|
public DateTime? PhysicalRelease { get; set; }
|
||||||
public List<MediaCover> Images { get; set; }
|
public List<MediaCover> Images { get; set; }
|
||||||
public string Website { get; set; }
|
public string Website { get; set; }
|
||||||
public bool Downloaded { get; set; }
|
public bool Downloaded { get; set; }
|
||||||
|
@ -89,7 +90,8 @@ namespace NzbDrone.Api.Movie
|
||||||
//AlternateTitles
|
//AlternateTitles
|
||||||
SortTitle = model.SortTitle,
|
SortTitle = model.SortTitle,
|
||||||
InCinemas = model.InCinemas,
|
InCinemas = model.InCinemas,
|
||||||
|
PhysicalRelease = model.PhysicalRelease,
|
||||||
|
|
||||||
Downloaded = model.MovieFile.Value != null,
|
Downloaded = model.MovieFile.Value != null,
|
||||||
//TotalEpisodeCount
|
//TotalEpisodeCount
|
||||||
//EpisodeCount
|
//EpisodeCount
|
||||||
|
@ -140,6 +142,7 @@ namespace NzbDrone.Api.Movie
|
||||||
//AlternateTitles
|
//AlternateTitles
|
||||||
SortTitle = resource.SortTitle,
|
SortTitle = resource.SortTitle,
|
||||||
InCinemas = resource.InCinemas,
|
InCinemas = resource.InCinemas,
|
||||||
|
PhysicalRelease = resource.PhysicalRelease,
|
||||||
//TotalEpisodeCount
|
//TotalEpisodeCount
|
||||||
//EpisodeCount
|
//EpisodeCount
|
||||||
//EpisodeFileCount
|
//EpisodeFileCount
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using FluentMigrator;
|
||||||
|
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||||
|
using System.Data;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Datastore.Migration
|
||||||
|
{
|
||||||
|
[Migration(110)]
|
||||||
|
public class add_phyiscal_release : NzbDroneMigrationBase
|
||||||
|
{
|
||||||
|
protected override void MainDbUpgrade()
|
||||||
|
{
|
||||||
|
Alter.Table("Movies").AddColumn("PhysicalRelease").AsDateTime().Nullable();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -61,6 +61,27 @@ namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
|
||||||
public float vote_average { get; set; }
|
public float vote_average { get; set; }
|
||||||
public int vote_count { get; set; }
|
public int vote_count { get; set; }
|
||||||
public AlternativeTitles alternative_titles { get; set; }
|
public AlternativeTitles alternative_titles { get; set; }
|
||||||
|
public ReleaseDatesResource release_dates { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class ReleaseDatesResource
|
||||||
|
{
|
||||||
|
public List<ReleaseDates> results { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class ReleaseDate
|
||||||
|
{
|
||||||
|
public string certification { get; set; }
|
||||||
|
public string iso_639_1 { get; set; }
|
||||||
|
public string note { get; set; }
|
||||||
|
public string release_date { get; set; }
|
||||||
|
public int type { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class ReleaseDates
|
||||||
|
{
|
||||||
|
public string iso_3166_1 { get; set; }
|
||||||
|
public List<ReleaseDate> release_dates { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class Belongs_To_Collection
|
public class Belongs_To_Collection
|
||||||
|
|
|
@ -70,7 +70,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
||||||
.SetSegment("route", "movie")
|
.SetSegment("route", "movie")
|
||||||
.SetSegment("id", TmdbId.ToString())
|
.SetSegment("id", TmdbId.ToString())
|
||||||
.SetSegment("secondaryRoute", "")
|
.SetSegment("secondaryRoute", "")
|
||||||
.AddQueryParam("append_to_response", "alternative_titles")
|
.AddQueryParam("append_to_response", "alternative_titles,release_dates")
|
||||||
.AddQueryParam("country", "US")
|
.AddQueryParam("country", "US")
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
|
@ -102,6 +102,27 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
||||||
movie.AlternativeTitles.Add(title.title);
|
movie.AlternativeTitles.Add(title.title);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foreach(ReleaseDates releaseDates in resource.release_dates.results)
|
||||||
|
{
|
||||||
|
foreach(ReleaseDate releaseDate in releaseDates.release_dates)
|
||||||
|
{
|
||||||
|
if (releaseDate.type == 5 || releaseDate.type == 4)
|
||||||
|
{
|
||||||
|
if (movie.PhysicalRelease.HasValue)
|
||||||
|
{
|
||||||
|
if (movie.PhysicalRelease.Value.After(DateTime.Parse(releaseDate.release_date)))
|
||||||
|
{
|
||||||
|
movie.PhysicalRelease = DateTime.Parse(releaseDate.release_date); //Use oldest release date available.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
movie.PhysicalRelease = DateTime.Parse(releaseDate.release_date);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
movie.Ratings = new Ratings();
|
movie.Ratings = new Ratings();
|
||||||
movie.Ratings.Votes = resource.vote_count;
|
movie.Ratings.Votes = resource.vote_count;
|
||||||
movie.Ratings.Value = (decimal)resource.vote_average;
|
movie.Ratings.Value = (decimal)resource.vote_average;
|
||||||
|
|
|
@ -286,6 +286,7 @@
|
||||||
<Compile Include="Datastore\Migration\098_remove_titans_of_tv.cs">
|
<Compile Include="Datastore\Migration\098_remove_titans_of_tv.cs">
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Datastore\Migration\110_add_physical_release_to_table.cs" />
|
||||||
<Compile Include="Datastore\Migration\109_add_movie_formats_to_naming_config.cs" />
|
<Compile Include="Datastore\Migration\109_add_movie_formats_to_naming_config.cs" />
|
||||||
<Compile Include="Datastore\Migration\Framework\MigrationContext.cs" />
|
<Compile Include="Datastore\Migration\Framework\MigrationContext.cs" />
|
||||||
<Compile Include="Datastore\Migration\Framework\MigrationController.cs" />
|
<Compile Include="Datastore\Migration\Framework\MigrationController.cs" />
|
||||||
|
|
|
@ -41,6 +41,7 @@ namespace NzbDrone.Core.Tv
|
||||||
public string RootFolderPath { get; set; }
|
public string RootFolderPath { get; set; }
|
||||||
public DateTime Added { get; set; }
|
public DateTime Added { get; set; }
|
||||||
public DateTime? InCinemas { get; set; }
|
public DateTime? InCinemas { get; set; }
|
||||||
|
public DateTime? PhysicalRelease { get; set; }
|
||||||
public LazyLoaded<Profile> Profile { get; set; }
|
public LazyLoaded<Profile> Profile { get; set; }
|
||||||
public HashSet<int> Tags { get; set; }
|
public HashSet<int> Tags { get; set; }
|
||||||
public AddMovieOptions AddOptions { get; set; }
|
public AddMovieOptions AddOptions { get; set; }
|
||||||
|
|
|
@ -83,6 +83,7 @@ namespace NzbDrone.Core.Tv
|
||||||
movie.Website = movieInfo.Website;
|
movie.Website = movieInfo.Website;
|
||||||
movie.AlternativeTitles = movieInfo.AlternativeTitles;
|
movie.AlternativeTitles = movieInfo.AlternativeTitles;
|
||||||
movie.Year = movieInfo.Year;
|
movie.Year = movieInfo.Year;
|
||||||
|
movie.PhysicalRelease = movieInfo.PhysicalRelease;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
|
@ -166,10 +166,17 @@ Handlebars.registerHelper('inCinemas', function() {
|
||||||
var monthNames = ["January", "February", "March", "April", "May", "June",
|
var monthNames = ["January", "February", "March", "April", "May", "June",
|
||||||
"July", "August", "September", "October", "November", "December"
|
"July", "August", "September", "October", "November", "December"
|
||||||
];
|
];
|
||||||
|
if (this.physicalRelease) {
|
||||||
|
var d = new Date(this.physicalRelease);
|
||||||
|
var day = d.getDate();
|
||||||
|
var month = monthNames[d.getMonth()];
|
||||||
|
var year = d.getFullYear();
|
||||||
|
return "Available: " + day + ". " + month + " " + year;
|
||||||
|
}
|
||||||
var cinemasDate = new Date(this.inCinemas);
|
var cinemasDate = new Date(this.inCinemas);
|
||||||
var year = cinemasDate.getFullYear();
|
var year = cinemasDate.getFullYear();
|
||||||
var month = monthNames[cinemasDate.getMonth()];
|
var month = monthNames[cinemasDate.getMonth()];
|
||||||
return "In Cinemas " + month + " " + year;
|
return "In Cinemas: " + month + " " + year;
|
||||||
});
|
});
|
||||||
|
|
||||||
Handlebars.registerHelper('tvRageUrl', function() {
|
Handlebars.registerHelper('tvRageUrl', function() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue