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

284 lines
7.9 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;
2016-03-18 22:14:47 -07:00
using MediaBrowser.Controller.Channels;
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
{
2016-03-18 22:14:47 -07:00
public List<ChannelMediaInfo> ChannelMediaSources { get; set; }
2016-04-30 16:05:21 -07:00
2015-10-27 21:06:13 -07:00
/// <summary>
/// Gets or sets the artist.
/// </summary>
/// <value>The artist.</value>
public List<string> Artists { get; set; }
public List<string> AlbumArtists { get; set; }
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()
{
Artists = new List<string>();
AlbumArtists = new List<string>();
}
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]
public List<string> AllArtists
2014-06-23 09:05:19 -07:00
{
get
{
var list = AlbumArtists.ToList();
2014-06-23 09:05:19 -07:00
list.AddRange(Artists);
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>
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();
2016-03-13 18:34:24 -07:00
if (ConfigurationManager.Configuration.EnableStandaloneMusicKeys)
{
var songKey = IndexNumber.HasValue ? IndexNumber.Value.ToString("0000") : string.Empty;
if (ParentIndexNumber.HasValue)
{
songKey = ParentIndexNumber.Value.ToString("0000") + "-" + songKey;
}
2016-04-30 16:05:21 -07:00
songKey += Name;
2016-03-13 18:34:24 -07:00
if (!string.IsNullOrWhiteSpace(Album))
{
songKey = Album + "-" + songKey;
}
var albumArtist = AlbumArtists.FirstOrDefault();
if (!string.IsNullOrWhiteSpace(albumArtist))
{
songKey = albumArtist + "-" + songKey;
}
2016-04-30 16:05:21 -07:00
list.Insert(0, songKey);
2016-03-13 18:34:24 -07:00
}
2016-04-30 16:05:21 -07:00
else
{
2016-04-30 16:05:21 -07:00
var parent = AlbumEntity;
2016-04-30 16:05:21 -07:00
if (parent != null && IndexNumber.HasValue)
{
2016-04-30 16:05:21 -07:00
list.InsertRange(0, parent.GetUserDataKeys().Select(i =>
{
var songKey = (ParentIndexNumber != null ? ParentIndexNumber.Value.ToString("0000 - ") : "")
+ IndexNumber.Value.ToString("0000 - ");
2016-04-30 16:05:21 -07:00
return i + 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
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
public virtual IEnumerable<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution)
{
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)
2016-03-18 22:14:47 -07:00
.Result.ToList();
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,
2015-03-03 00:03:17 -07:00
MediaStreams = MediaSourceManager.GetMediaStreams(i.Id).ToList(),
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('.');
}
}
var bitrate = i.TotalBitrate ??
info.MediaStreams.Where(m => m.Type == MediaStreamType.Audio)
.Select(m => m.BitRate ?? 0)
.Sum();
if (bitrate > 0)
{
info.Bitrate = bitrate;
}
return info;
}
2013-02-20 18:33:05 -07:00
}
}