jellyfin/MediaBrowser.Controller/Entities/Audio/Audio.cs

291 lines
7.8 KiB
C#
Raw Normal View History

2015-03-16 19:46:21 -07:00
using MediaBrowser.Controller.Providers;
2014-02-06 20:10:13 -07:00
using MediaBrowser.Model.Configuration;
2014-06-02 19:01:30 -07:00
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.MediaInfo;
2013-12-26 09:53:23 -07:00
using System;
2013-02-20 18:33:05 -07:00
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
2016-03-18 22:14:47 -07:00
using System.Threading;
using MediaBrowser.Common.Extensions;
2017-08-05 12:02:33 -07:00
using MediaBrowser.Controller.Persistence;
2016-10-25 12:02:04 -07:00
using MediaBrowser.Model.Serialization;
2013-02-20 18:33:05 -07:00
namespace MediaBrowser.Controller.Entities.Audio
{
/// <summary>
/// Class Audio
/// </summary>
public class Audio : BaseItem,
IHasAlbumArtist,
IHasArtist,
IHasMusicGenres,
IHasLookupInfo<SongInfo>,
2016-10-30 21:28:23 -07:00
IHasMediaSources
2013-02-20 18:33:05 -07:00
{
2015-10-27 21:06:13 -07:00
/// <summary>
/// Gets or sets the artist.
/// </summary>
/// <value>The artist.</value>
2017-08-06 16:01:00 -07:00
[IgnoreDataMember]
2017-08-24 12:52:19 -07:00
public string[] Artists { get; set; }
2015-10-27 21:06:13 -07:00
2017-08-06 16:01:00 -07:00
[IgnoreDataMember]
2017-08-10 11:01:31 -07:00
public string[] AlbumArtists { get; set; }
2015-10-27 21:06:13 -07:00
2016-07-24 09:46:17 -07:00
[IgnoreDataMember]
public override bool EnableRefreshOnDateModifiedChange
2016-07-24 09:46:17 -07:00
{
get { return true; }
}
public Audio()
{
2017-08-24 12:52:19 -07:00
Artists = EmptyStringArray;
2017-08-10 11:01:31 -07:00
AlbumArtists = EmptyStringArray;
}
2017-02-10 13:06:52 -07:00
public override double? GetDefaultPrimaryImageAspectRatio()
{
return 1;
}
2016-10-11 14:33:38 -07:00
[IgnoreDataMember]
public override bool SupportsPlayedStatus
{
get
{
return true;
}
}
2014-08-30 07:26:29 -07:00
[IgnoreDataMember]
public override bool SupportsAddingToPlaylist
{
2016-10-09 00:18:43 -07:00
get { return true; }
}
2016-11-21 01:54:53 -07:00
[IgnoreDataMember]
public override bool SupportsInheritedParentImages
{
get { return true; }
}
2015-01-28 14:29:02 -07:00
[IgnoreDataMember]
protected override bool SupportsOwnedItems
{
get
{
return false;
}
}
2014-08-28 21:06:30 -07:00
[IgnoreDataMember]
public override Folder LatestItemsIndexContainer
{
get
{
2015-05-04 07:35:38 -07:00
return AlbumEntity;
2013-02-20 18:33:05 -07:00
}
}
2015-02-05 22:39:07 -07:00
public override bool CanDownload()
{
var locationType = LocationType;
return locationType != LocationType.Remote &&
locationType != LocationType.Virtual;
}
[IgnoreDataMember]
2017-08-24 12:52:19 -07:00
public string[] AllArtists
2014-06-23 09:05:19 -07:00
{
get
{
2017-08-24 12:52:19 -07:00
var list = new string[AlbumArtists.Length + Artists.Length];
2014-06-23 09:05:19 -07:00
2017-08-24 12:52:19 -07:00
var index = 0;
foreach (var artist in AlbumArtists)
{
list[index] = artist;
index++;
}
2017-08-26 00:03:19 -07:00
foreach (var artist in Artists)
2017-08-24 12:52:19 -07:00
{
list[index] = artist;
index++;
}
2014-06-23 09:05:19 -07:00
return list;
}
}
2015-05-04 07:35:38 -07:00
[IgnoreDataMember]
public MusicAlbum AlbumEntity
{
get { return FindParent<MusicAlbum>(); }
}
2013-02-20 18:33:05 -07:00
/// <summary>
/// Gets the type of the media.
/// </summary>
/// <value>The type of the media.</value>
2014-08-30 07:26:29 -07:00
[IgnoreDataMember]
2013-02-20 18:33:05 -07:00
public override string MediaType
{
get
{
return Model.Entities.MediaType.Audio;
}
}
/// <summary>
/// Creates the name of the sort.
/// </summary>
/// <returns>System.String.</returns>
2017-06-03 00:36:32 -07:00
protected override string CreateSortName()
{
2013-04-22 20:56:11 -07:00
return (ParentIndexNumber != null ? ParentIndexNumber.Value.ToString("0000 - ") : "")
+ (IndexNumber != null ? IndexNumber.Value.ToString("0000 - ") : "") + Name;
}
2013-04-21 21:38:03 -07:00
2016-04-30 16:05:21 -07:00
public override List<string> GetUserDataKeys()
{
2016-04-30 16:05:21 -07:00
var list = base.GetUserDataKeys();
2017-09-13 11:41:48 -07:00
var songKey = IndexNumber.HasValue ? IndexNumber.Value.ToString("0000") : string.Empty;
2016-03-13 18:34:24 -07:00
2017-09-13 11:41:48 -07:00
if (ParentIndexNumber.HasValue)
{
2017-09-13 11:41:48 -07:00
songKey = ParentIndexNumber.Value.ToString("0000") + "-" + songKey;
}
songKey += Name;
2017-09-13 11:41:48 -07:00
if (!string.IsNullOrWhiteSpace(Album))
{
songKey = Album + "-" + songKey;
}
2017-09-13 11:41:48 -07:00
var albumArtist = AlbumArtists.Length == 0 ? null : AlbumArtists[0];
if (!string.IsNullOrWhiteSpace(albumArtist))
{
songKey = albumArtist + "-" + songKey;
}
2017-09-13 11:41:48 -07:00
list.Insert(0, songKey);
2016-04-30 16:05:21 -07:00
return list;
}
2013-12-26 09:53:23 -07:00
2015-11-06 08:02:22 -07:00
public override UnratedItem GetBlockUnratedType()
2013-12-26 09:53:23 -07:00
{
2016-03-18 22:14:47 -07:00
if (SourceType == SourceType.Library)
{
return UnratedItem.Music;
}
return base.GetBlockUnratedType();
2013-12-26 09:53:23 -07:00
}
2014-02-06 20:10:13 -07:00
2017-08-05 12:02:33 -07:00
public List<MediaStream> GetMediaStreams()
{
return MediaSourceManager.GetMediaStreams(new MediaStreamQuery
{
ItemId = Id
});
}
public List<MediaStream> GetMediaStreams(MediaStreamType type)
{
return MediaSourceManager.GetMediaStreams(new MediaStreamQuery
{
ItemId = Id,
Type = type
});
}
2014-02-06 20:10:13 -07:00
public SongInfo GetLookupInfo()
{
var info = GetItemLookupInfo<SongInfo>();
2014-06-23 09:05:19 -07:00
info.AlbumArtists = AlbumArtists;
2014-02-06 20:10:13 -07:00
info.Album = Album;
info.Artists = Artists;
return info;
}
2014-06-02 19:01:30 -07:00
2017-08-05 12:02:33 -07:00
public virtual List<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution)
2014-06-02 19:01:30 -07:00
{
2016-03-18 22:14:47 -07:00
if (SourceType == SourceType.Channel)
{
2016-12-23 01:54:30 -07:00
var sources = ChannelManager.GetStaticMediaSources(this, CancellationToken.None)
2017-05-25 23:48:54 -07:00
.ToList();
2016-03-18 22:14:47 -07:00
if (sources.Count > 0)
{
return sources;
}
var list = new List<MediaSourceInfo>
{
GetVersionInfo(this, enablePathSubstitution)
};
foreach (var mediaSource in list)
{
if (string.IsNullOrWhiteSpace(mediaSource.Path))
{
mediaSource.Type = MediaSourceType.Placeholder;
}
}
return list;
}
2014-06-02 19:01:30 -07:00
var result = new List<MediaSourceInfo>
{
GetVersionInfo(this, enablePathSubstitution)
};
return result;
}
private static MediaSourceInfo GetVersionInfo(Audio i, bool enablePathSubstituion)
{
var locationType = i.LocationType;
2014-06-02 19:01:30 -07:00
var info = new MediaSourceInfo
{
Id = i.Id.ToString("N"),
Protocol = locationType == LocationType.Remote ? MediaProtocol.Http : MediaProtocol.File,
2017-08-05 12:02:33 -07:00
MediaStreams = MediaSourceManager.GetMediaStreams(i.Id),
2014-06-02 19:01:30 -07:00
Name = i.Name,
Path = enablePathSubstituion ? GetMappedPath(i, i.Path, locationType) : i.Path,
2014-06-02 19:01:30 -07:00
RunTimeTicks = i.RunTimeTicks,
Container = i.Container,
2015-09-19 19:06:56 -07:00
Size = i.Size
2014-06-02 19:01:30 -07:00
};
if (info.Protocol == MediaProtocol.File)
{
info.ETag = i.DateModified.Ticks.ToString(CultureInfo.InvariantCulture).GetMD5().ToString("N");
}
2014-06-02 19:01:30 -07:00
if (string.IsNullOrEmpty(info.Container))
{
if (!string.IsNullOrWhiteSpace(i.Path) && locationType != LocationType.Remote && locationType != LocationType.Virtual)
{
info.Container = System.IO.Path.GetExtension(i.Path).TrimStart('.');
}
}
2017-01-21 13:27:07 -07:00
info.Bitrate = i.TotalBitrate;
info.InferTotalBitrate();
2014-06-02 19:01:30 -07:00
return info;
}
2013-02-20 18:33:05 -07:00
}
}