|
|
|
import type {
|
|
|
|
mbArtist,
|
|
|
|
mbArtistType,
|
|
|
|
mbRecording,
|
|
|
|
mbRelease,
|
|
|
|
mbReleaseGroup,
|
|
|
|
mbReleaseGroupType,
|
|
|
|
mbWork,
|
|
|
|
} from '@server/api/musicbrainz/interfaces';
|
|
|
|
import getPosterFromMB from '@server/api/musicbrainz/poster';
|
|
|
|
import type {
|
|
|
|
TmdbCollectionResult,
|
|
|
|
TmdbMovieDetails,
|
|
|
|
TmdbMovieResult,
|
|
|
|
TmdbPersonDetails,
|
|
|
|
TmdbPersonResult,
|
|
|
|
TmdbTvDetails,
|
|
|
|
TmdbTvResult,
|
|
|
|
} from '@server/api/themoviedb/interfaces';
|
|
|
|
import { MediaType as MainMediaType } from '@server/constants/media';
|
|
|
|
import type Media from '@server/entity/Media';
|
|
|
|
|
|
|
|
export type MediaType =
|
|
|
|
| 'tv'
|
|
|
|
| 'movie'
|
|
|
|
| 'music'
|
|
|
|
| 'person'
|
|
|
|
| 'collection'
|
|
|
|
| 'release-group'
|
|
|
|
| 'release'
|
|
|
|
| 'recording'
|
|
|
|
| 'work'
|
|
|
|
| 'artist';
|
|
|
|
|
|
|
|
interface SearchResult {
|
|
|
|
id: number;
|
|
|
|
mediaType: MediaType;
|
|
|
|
popularity: number;
|
|
|
|
posterPath?: string;
|
|
|
|
backdropPath?: string;
|
|
|
|
voteCount: number;
|
|
|
|
voteAverage: number;
|
|
|
|
genreIds: number[];
|
|
|
|
overview: string;
|
|
|
|
originalLanguage: string;
|
|
|
|
mediaInfo?: Media;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MovieResult extends SearchResult {
|
|
|
|
mediaType: 'movie';
|
|
|
|
title: string;
|
|
|
|
originalTitle: string;
|
|
|
|
releaseDate: string;
|
|
|
|
adult: boolean;
|
|
|
|
video: boolean;
|
|
|
|
mediaInfo?: Media;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface TvResult extends SearchResult {
|
|
|
|
mediaType: 'tv';
|
|
|
|
name: string;
|
|
|
|
originalName: string;
|
|
|
|
originCountry: string[];
|
|
|
|
firstAirDate: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MusicResult extends SearchResult {
|
|
|
|
mediaType: 'music';
|
|
|
|
title: string;
|
|
|
|
originalTitle: string;
|
|
|
|
releaseDate: string;
|
|
|
|
mediaInfo?: Media;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CollectionResult {
|
|
|
|
id: number;
|
|
|
|
mediaType: 'collection';
|
|
|
|
title: string;
|
|
|
|
originalTitle: string;
|
|
|
|
adult: boolean;
|
|
|
|
posterPath?: string;
|
|
|
|
backdropPath?: string;
|
|
|
|
overview: string;
|
|
|
|
originalLanguage: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface PersonResult {
|
|
|
|
id: number;
|
|
|
|
name: string;
|
|
|
|
popularity: number;
|
|
|
|
profilePath?: string;
|
|
|
|
adult: boolean;
|
|
|
|
mediaType: 'person';
|
|
|
|
knownFor: (MovieResult | TvResult)[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ReleaseGroupResult {
|
|
|
|
id: string;
|
|
|
|
mediaType: 'release-group';
|
|
|
|
type: mbReleaseGroupType;
|
|
|
|
posterPath?: string;
|
|
|
|
title: string;
|
|
|
|
artist: ArtistResult[];
|
|
|
|
tags: string[];
|
|
|
|
mediaInfo?: Media;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ReleaseResult {
|
|
|
|
id: string;
|
|
|
|
mediaType: 'release';
|
|
|
|
title: string;
|
|
|
|
artist: ArtistResult[];
|
|
|
|
posterPath?: string;
|
|
|
|
date?: Date;
|
|
|
|
tracks?: RecordingResult[];
|
|
|
|
tags: string[];
|
|
|
|
mediaInfo?: Media;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RecordingResult {
|
|
|
|
id: string;
|
|
|
|
mediaType: 'recording';
|
|
|
|
title: string;
|
|
|
|
artist: ArtistResult[];
|
|
|
|
length: number;
|
|
|
|
firstReleased?: Date;
|
|
|
|
tags: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface WorkResult {
|
|
|
|
id: string;
|
|
|
|
mediaType: 'work';
|
|
|
|
title: string;
|
|
|
|
artist: ArtistResult[];
|
|
|
|
tags: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ArtistResult {
|
|
|
|
id: string;
|
|
|
|
mediaType: 'artist';
|
|
|
|
name: string;
|
|
|
|
type: mbArtistType;
|
|
|
|
releases: ReleaseResult[];
|
|
|
|
recordings: RecordingResult[];
|
|
|
|
releaseGroups: ReleaseGroupResult[];
|
|
|
|
works: WorkResult[];
|
|
|
|
gender?: string;
|
|
|
|
area?: string;
|
|
|
|
beginDate?: string;
|
|
|
|
endDate?: string;
|
|
|
|
tags: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export type Results =
|
|
|
|
| MovieResult
|
|
|
|
| TvResult
|
|
|
|
| MusicResult
|
|
|
|
| PersonResult
|
|
|
|
| CollectionResult
|
|
|
|
| ReleaseGroupResult
|
|
|
|
| ReleaseResult
|
|
|
|
| RecordingResult
|
|
|
|
| WorkResult
|
|
|
|
| ArtistResult;
|
|
|
|
|
|
|
|
export const mapMovieResult = (
|
|
|
|
movieResult: TmdbMovieResult,
|
|
|
|
media?: Media
|
|
|
|
): MovieResult => ({
|
|
|
|
id: movieResult.id,
|
|
|
|
mediaType: 'movie',
|
|
|
|
adult: movieResult.adult,
|
|
|
|
genreIds: movieResult.genre_ids,
|
|
|
|
originalLanguage: movieResult.original_language,
|
|
|
|
originalTitle: movieResult.original_title,
|
|
|
|
overview: movieResult.overview,
|
|
|
|
popularity: movieResult.popularity,
|
|
|
|
releaseDate: movieResult.release_date,
|
|
|
|
title: movieResult.title,
|
|
|
|
video: movieResult.video,
|
|
|
|
voteAverage: movieResult.vote_average,
|
|
|
|
voteCount: movieResult.vote_count,
|
|
|
|
backdropPath: movieResult.backdrop_path,
|
|
|
|
posterPath: movieResult.poster_path,
|
|
|
|
mediaInfo: media,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const mapTvResult = (
|
|
|
|
tvResult: TmdbTvResult,
|
|
|
|
media?: Media
|
|
|
|
): TvResult => ({
|
|
|
|
id: tvResult.id,
|
|
|
|
firstAirDate: tvResult.first_air_date,
|
|
|
|
genreIds: tvResult.genre_ids,
|
|
|
|
// Some results from tmdb dont return the mediaType so we force it here!
|
|
|
|
mediaType: tvResult.media_type || 'tv',
|
|
|
|
name: tvResult.name,
|
|
|
|
originCountry: tvResult.origin_country,
|
|
|
|
originalLanguage: tvResult.original_language,
|
|
|
|
originalName: tvResult.original_name,
|
|
|
|
overview: tvResult.overview,
|
|
|
|
popularity: tvResult.popularity,
|
|
|
|
voteAverage: tvResult.vote_average,
|
|
|
|
voteCount: tvResult.vote_count,
|
|
|
|
backdropPath: tvResult.backdrop_path,
|
|
|
|
posterPath: tvResult.poster_path,
|
|
|
|
mediaInfo: media,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const mapCollectionResult = (
|
|
|
|
collectionResult: TmdbCollectionResult
|
|
|
|
): CollectionResult => ({
|
|
|
|
id: collectionResult.id,
|
|
|
|
mediaType: collectionResult.media_type || 'collection',
|
|
|
|
adult: collectionResult.adult,
|
|
|
|
originalLanguage: collectionResult.original_language,
|
|
|
|
originalTitle: collectionResult.original_title,
|
|
|
|
title: collectionResult.title,
|
|
|
|
overview: collectionResult.overview,
|
|
|
|
backdropPath: collectionResult.backdrop_path,
|
|
|
|
posterPath: collectionResult.poster_path,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const mapPersonResult = (
|
|
|
|
personResult: TmdbPersonResult
|
|
|
|
): PersonResult => ({
|
|
|
|
id: personResult.id,
|
|
|
|
name: personResult.name,
|
|
|
|
popularity: personResult.popularity,
|
|
|
|
adult: personResult.adult,
|
|
|
|
mediaType: personResult.media_type,
|
|
|
|
profilePath: personResult.profile_path,
|
|
|
|
knownFor: personResult.known_for.map((result) => {
|
|
|
|
if (result.media_type === 'movie') {
|
|
|
|
return mapMovieResult(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return mapTvResult(result);
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
|
|
|
|
export const mapReleaseGroupResult = (
|
|
|
|
releaseGroupResult: mbReleaseGroup,
|
|
|
|
media?: Media
|
|
|
|
): ReleaseGroupResult => {
|
|
|
|
return {
|
|
|
|
id: releaseGroupResult.id,
|
|
|
|
mediaType: releaseGroupResult.media_type,
|
|
|
|
type: releaseGroupResult.type,
|
|
|
|
title: releaseGroupResult.title,
|
|
|
|
artist: releaseGroupResult.artist.map((artist) => mapArtistResult(artist)),
|
|
|
|
tags: releaseGroupResult.tags,
|
|
|
|
posterPath: getPosterFromMB(releaseGroupResult),
|
|
|
|
mediaInfo: media ?? undefined,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export const mapArtistResult = (artist: mbArtist): ArtistResult => ({
|
|
|
|
id: artist.id,
|
|
|
|
mediaType: 'artist',
|
|
|
|
name: artist.name,
|
|
|
|
type: artist.type,
|
|
|
|
releases: Array.isArray(artist.releases)
|
|
|
|
? artist.releases.map((release) => mapReleaseResult(release))
|
|
|
|
: [],
|
|
|
|
recordings: Array.isArray(artist.recordings)
|
|
|
|
? artist.recordings.map((recording) => mapRecordingResult(recording))
|
|
|
|
: [],
|
|
|
|
releaseGroups: Array.isArray(artist.releaseGroups)
|
|
|
|
? artist.releaseGroups.map((releaseGroup) =>
|
|
|
|
mapReleaseGroupResult(releaseGroup)
|
|
|
|
)
|
|
|
|
: [],
|
|
|
|
works: Array.isArray(artist.works)
|
|
|
|
? artist.works.map((work) => mapWorkResult(work))
|
|
|
|
: [],
|
|
|
|
tags: artist.tags,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const mapReleaseResult = (
|
|
|
|
release: mbRelease,
|
|
|
|
media?: Media
|
|
|
|
): ReleaseResult => ({
|
|
|
|
id: release.id,
|
|
|
|
mediaType: release.media_type,
|
|
|
|
title: release.title,
|
|
|
|
posterPath: getPosterFromMB(release),
|
|
|
|
artist: release.artist.map((artist) => mapArtistResult(artist)),
|
|
|
|
date: release.date,
|
|
|
|
tracks: Array.isArray(release.tracks)
|
|
|
|
? release.tracks.map((track) => mapRecordingResult(track))
|
|
|
|
: [],
|
|
|
|
tags: release.tags,
|
|
|
|
mediaInfo: media,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const mapRecordingResult = (
|
|
|
|
recording: mbRecording
|
|
|
|
): RecordingResult => ({
|
|
|
|
id: recording.id,
|
|
|
|
mediaType: recording.media_type,
|
|
|
|
title: recording.title,
|
|
|
|
artist: recording.artist.map((artist) => mapArtistResult(artist)),
|
|
|
|
length: recording.length,
|
|
|
|
firstReleased: recording.firstReleased,
|
|
|
|
tags: recording.tags,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const mapWorkResult = (work: mbWork): WorkResult => ({
|
|
|
|
id: work.id,
|
|
|
|
mediaType: work.media_type,
|
|
|
|
title: work.title,
|
|
|
|
artist: work.artist.map((artist) => mapArtistResult(artist)),
|
|
|
|
tags: work.tags,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const mapSearchResults = (
|
|
|
|
results: (
|
|
|
|
| TmdbMovieResult
|
|
|
|
| TmdbTvResult
|
|
|
|
| TmdbPersonResult
|
|
|
|
| TmdbCollectionResult
|
|
|
|
| mbArtist
|
|
|
|
| mbRecording
|
|
|
|
| mbRelease
|
|
|
|
| mbReleaseGroup
|
|
|
|
| mbWork
|
|
|
|
)[],
|
|
|
|
media?: Media[]
|
|
|
|
): Results[] =>
|
|
|
|
results.map((result) => {
|
|
|
|
switch (result.media_type) {
|
|
|
|
case 'movie':
|
|
|
|
return mapMovieResult(
|
|
|
|
result,
|
|
|
|
media?.find(
|
|
|
|
(req) =>
|
|
|
|
req.tmdbId === result.id && req.mediaType === MainMediaType.MOVIE
|
|
|
|
)
|
|
|
|
);
|
|
|
|
case 'tv':
|
|
|
|
return mapTvResult(
|
|
|
|
result,
|
|
|
|
media?.find(
|
|
|
|
(req) =>
|
|
|
|
req.tmdbId === result.id && req.mediaType === MainMediaType.TV
|
|
|
|
)
|
|
|
|
);
|
|
|
|
case 'collection':
|
|
|
|
return mapCollectionResult(result);
|
|
|
|
case 'person':
|
|
|
|
return mapPersonResult(result);
|
|
|
|
case 'release-group':
|
|
|
|
return mapReleaseGroupResult(
|
|
|
|
result,
|
|
|
|
media?.find((req) => req.mbId === result.id)
|
|
|
|
);
|
|
|
|
case 'release':
|
|
|
|
return mapReleaseResult(
|
|
|
|
result,
|
|
|
|
media?.find((req) => req.mbId === result.id)
|
|
|
|
);
|
|
|
|
case 'recording':
|
|
|
|
return mapRecordingResult(result);
|
|
|
|
case 'work':
|
|
|
|
return mapWorkResult(result);
|
|
|
|
case 'artist':
|
|
|
|
return mapArtistResult(result);
|
|
|
|
default:
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export const mapMovieDetailsToResult = (
|
|
|
|
movieDetails: TmdbMovieDetails
|
|
|
|
): TmdbMovieResult => ({
|
|
|
|
id: movieDetails.id,
|
|
|
|
media_type: 'movie',
|
|
|
|
adult: movieDetails.adult,
|
|
|
|
genre_ids: movieDetails.genres.map((genre) => genre.id),
|
|
|
|
original_language: movieDetails.original_language,
|
|
|
|
original_title: movieDetails.original_title,
|
|
|
|
overview: movieDetails.overview ?? '',
|
|
|
|
popularity: movieDetails.popularity,
|
|
|
|
release_date: movieDetails.release_date,
|
|
|
|
title: movieDetails.title,
|
|
|
|
video: movieDetails.video,
|
|
|
|
vote_average: movieDetails.vote_average,
|
|
|
|
vote_count: movieDetails.vote_count,
|
|
|
|
backdrop_path: movieDetails.backdrop_path,
|
|
|
|
poster_path: movieDetails.poster_path,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const mapTvDetailsToResult = (
|
|
|
|
tvDetails: TmdbTvDetails
|
|
|
|
): TmdbTvResult => ({
|
|
|
|
id: tvDetails.id,
|
|
|
|
media_type: 'tv',
|
|
|
|
first_air_date: tvDetails.first_air_date,
|
|
|
|
genre_ids: tvDetails.genres.map((genre) => genre.id),
|
|
|
|
name: tvDetails.name,
|
|
|
|
origin_country: tvDetails.origin_country,
|
|
|
|
original_language: tvDetails.original_language,
|
|
|
|
original_name: tvDetails.original_name,
|
|
|
|
overview: tvDetails.overview,
|
|
|
|
popularity: tvDetails.popularity,
|
|
|
|
vote_average: tvDetails.vote_average,
|
|
|
|
vote_count: tvDetails.vote_count,
|
|
|
|
backdrop_path: tvDetails.backdrop_path,
|
|
|
|
poster_path: tvDetails.poster_path,
|
|
|
|
});
|
|
|
|
|
|
|
|
export const mapPersonDetailsToResult = (
|
|
|
|
personDetails: TmdbPersonDetails
|
|
|
|
): TmdbPersonResult => ({
|
|
|
|
id: personDetails.id,
|
|
|
|
media_type: 'person',
|
|
|
|
name: personDetails.name,
|
|
|
|
popularity: personDetails.popularity,
|
|
|
|
adult: personDetails.adult,
|
|
|
|
profile_path: personDetails.profile_path,
|
|
|
|
known_for: [],
|
|
|
|
});
|