mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-12-30 00:30:28 -05:00
101 lines
3.2 KiB
C#
101 lines
3.2 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Kyoo.Models;
|
|
using TMDbLib.Objects.Movies;
|
|
using TMDbLib.Objects.Search;
|
|
|
|
namespace Kyoo.TheMovieDb
|
|
{
|
|
/// <summary>
|
|
/// A class containing extensions methods to convert from TMDB's types to Kyoo's types.
|
|
/// </summary>
|
|
public static partial class Convertors
|
|
{
|
|
/// <summary>
|
|
/// Convert a <see cref="Movie"/> into a <see cref="Show"/>.
|
|
/// </summary>
|
|
/// <param name="movie">The movie to convert.</param>
|
|
/// <param name="provider">The provider representing TheMovieDb.</param>
|
|
/// <returns>The converted movie as a <see cref="Show"/>.</returns>
|
|
public static Show ToShow(this Movie movie, Provider provider)
|
|
{
|
|
return new Show
|
|
{
|
|
Slug = Utility.ToSlug(movie.Title),
|
|
Title = movie.Title,
|
|
Aliases = movie.AlternativeTitles.Titles.Select(x => x.Title).ToArray(),
|
|
Overview = movie.Overview,
|
|
Status = movie.Status == "Released" ? Status.Finished : Status.Planned,
|
|
StartAir = movie.ReleaseDate,
|
|
EndAir = movie.ReleaseDate,
|
|
Images = new Dictionary<int, string>
|
|
{
|
|
[Images.Poster] = movie.PosterPath != null
|
|
? $"https://image.tmdb.org/t/p/original{movie.PosterPath}"
|
|
: null,
|
|
[Images.Thumbnail] = movie.BackdropPath != null
|
|
? $"https://image.tmdb.org/t/p/original{movie.BackdropPath}"
|
|
: null,
|
|
[Images.Trailer] = movie.Videos?.Results
|
|
.Where(x => x.Type is "Trailer" or "Teaser" && x.Site == "YouTube")
|
|
.Select(x => "https://www.youtube.com/watch?v=" + x.Key).FirstOrDefault(),
|
|
},
|
|
Genres = movie.Genres.Select(x => new Genre(x.Name)).ToArray(),
|
|
Studio = !string.IsNullOrEmpty(movie.ProductionCompanies.FirstOrDefault()?.Name)
|
|
? new Studio(movie.ProductionCompanies.First().Name)
|
|
: null,
|
|
IsMovie = true,
|
|
People = movie.Credits.Cast
|
|
.Select(x => x.ToPeople(provider))
|
|
.Concat(movie.Credits.Crew.Select(x => x.ToPeople(provider)))
|
|
.ToArray(),
|
|
ExternalIDs = new []
|
|
{
|
|
new MetadataID
|
|
{
|
|
Provider = provider,
|
|
Link = $"https://www.themoviedb.org/movie/{movie.Id}",
|
|
DataID = movie.Id.ToString()
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
/// <summary>
|
|
/// Convert a <see cref="SearchMovie"/> into a <see cref="Show"/>.
|
|
/// </summary>
|
|
/// <param name="movie">The movie to convert.</param>
|
|
/// <param name="provider">The provider representing TheMovieDb.</param>
|
|
/// <returns>The converted movie as a <see cref="Show"/>.</returns>
|
|
public static Show ToShow(this SearchMovie movie, Provider provider)
|
|
{
|
|
return new Show
|
|
{
|
|
Slug = Utility.ToSlug(movie.Title),
|
|
Title = movie.Title,
|
|
Overview = movie.Overview,
|
|
StartAir = movie.ReleaseDate,
|
|
EndAir = movie.ReleaseDate,
|
|
Images = new Dictionary<int, string>
|
|
{
|
|
[Images.Poster] = movie.PosterPath != null
|
|
? $"https://image.tmdb.org/t/p/original{movie.PosterPath}"
|
|
: null,
|
|
[Images.Thumbnail] = movie.BackdropPath != null
|
|
? $"https://image.tmdb.org/t/p/original{movie.BackdropPath}"
|
|
: null,
|
|
},
|
|
IsMovie = true,
|
|
ExternalIDs = new []
|
|
{
|
|
new MetadataID
|
|
{
|
|
Provider = provider,
|
|
Link = $"https://www.themoviedb.org/movie/{movie.Id}",
|
|
DataID = movie.Id.ToString()
|
|
}
|
|
}
|
|
};
|
|
}
|
|
}
|
|
} |