2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2019-08-29 20:28:33 +00:00
|
|
|
using System.Collections.Generic;
|
2019-10-15 15:49:49 +00:00
|
|
|
using System.Text.Json.Serialization;
|
2020-05-13 02:10:35 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2019-01-13 19:25:32 +00:00
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2018-12-27 23:27:57 +00:00
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
{
|
|
|
|
public class MusicVideo : Video, IHasArtist, IHasMusicGenres, IHasLookupInfo<MusicVideoInfo>
|
|
|
|
{
|
2019-08-29 20:28:33 +00:00
|
|
|
/// <inheritdoc />
|
2019-10-15 15:49:49 +00:00
|
|
|
[JsonIgnore]
|
2019-08-29 20:28:33 +00:00
|
|
|
public IReadOnlyList<string> Artists { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
public MusicVideo()
|
|
|
|
{
|
2018-12-27 21:43:48 +00:00
|
|
|
Artists = Array.Empty<string>();
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override UnratedItem GetBlockUnratedType()
|
|
|
|
{
|
|
|
|
return UnratedItem.Music;
|
|
|
|
}
|
|
|
|
|
|
|
|
public MusicVideoInfo GetLookupInfo()
|
|
|
|
{
|
|
|
|
var info = GetItemLookupInfo<MusicVideoInfo>();
|
|
|
|
|
|
|
|
info.Artists = Artists;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool BeforeMetadataRefresh(bool replaceAllMetdata)
|
|
|
|
{
|
|
|
|
var hasChanges = base.BeforeMetadataRefresh(replaceAllMetdata);
|
|
|
|
|
|
|
|
if (!ProductionYear.HasValue)
|
|
|
|
{
|
|
|
|
var info = LibraryManager.ParseName(Name);
|
|
|
|
|
|
|
|
var yearInName = info.Year;
|
|
|
|
|
|
|
|
if (yearInName.HasValue)
|
|
|
|
{
|
|
|
|
ProductionYear = yearInName;
|
|
|
|
hasChanges = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Try to get the year from the folder name
|
|
|
|
if (!IsInMixedFolder)
|
|
|
|
{
|
|
|
|
info = LibraryManager.ParseName(System.IO.Path.GetFileName(ContainingFolderPath));
|
|
|
|
|
|
|
|
yearInName = info.Year;
|
|
|
|
|
|
|
|
if (yearInName.HasValue)
|
|
|
|
{
|
|
|
|
ProductionYear = yearInName;
|
|
|
|
hasChanges = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hasChanges;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|