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;
|
2014-06-16 18:56:23 -07:00
|
|
|
|
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;
|
2016-08-13 12:52:58 -07:00
|
|
|
|
using System.Globalization;
|
2013-09-05 12:00:50 -07:00
|
|
|
|
using System.Linq;
|
2016-03-18 22:14:47 -07:00
|
|
|
|
using System.Threading;
|
2016-08-13 12:52:58 -07:00
|
|
|
|
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>
|
2014-07-04 22:21:13 -07:00
|
|
|
|
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]
|
2016-08-12 22:49:00 -07:00
|
|
|
|
public override bool EnableRefreshOnDateModifiedChange
|
2016-07-24 09:46:17 -07:00
|
|
|
|
{
|
|
|
|
|
get { return true; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-03 08:08:02 -07:00
|
|
|
|
public Audio()
|
|
|
|
|
{
|
2013-09-05 12:00:50 -07:00
|
|
|
|
Artists = new List<string>();
|
2014-08-28 17:49:25 -07:00
|
|
|
|
AlbumArtists = new List<string>();
|
2013-05-03 08:08:02 -07:00
|
|
|
|
}
|
|
|
|
|
|
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]
|
2014-08-05 16:59:24 -07:00
|
|
|
|
public override bool SupportsAddingToPlaylist
|
|
|
|
|
{
|
2016-10-09 00:18:43 -07:00
|
|
|
|
get { return true; }
|
2014-08-05 16:59:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
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]
|
2014-07-04 22:21:13 -07:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-09 15:14:44 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public List<string> AllArtists
|
2014-06-23 09:05:19 -07:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-08-28 17:49:25 -07:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-03-11 18:46:46 -07:00
|
|
|
|
|
|
|
|
|
/// <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 - ") : "")
|
2013-03-11 18:46:46 -07:00
|
|
|
|
+ (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()
|
2013-10-01 16:33:50 -07:00
|
|
|
|
{
|
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
|
2013-10-01 16:33:50 -07:00
|
|
|
|
{
|
2016-04-30 16:05:21 -07:00
|
|
|
|
var parent = AlbumEntity;
|
2013-10-01 16:33:50 -07:00
|
|
|
|
|
2016-04-30 16:05:21 -07:00
|
|
|
|
if (parent != null && IndexNumber.HasValue)
|
2013-10-01 16:33:50 -07:00
|
|
|
|
{
|
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 - ");
|
2013-10-01 16:33:50 -07:00
|
|
|
|
|
2016-04-30 16:05:21 -07:00
|
|
|
|
return i + songKey;
|
|
|
|
|
}));
|
2013-10-01 16:33:50 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-30 16:05:21 -07:00
|
|
|
|
return list;
|
2013-10-01 16:33:50 -07:00
|
|
|
|
}
|
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-07-04 22:21:13 -07:00
|
|
|
|
|
2014-06-02 19:01:30 -07:00
|
|
|
|
var info = new MediaSourceInfo
|
|
|
|
|
{
|
|
|
|
|
Id = i.Id.ToString("N"),
|
2014-06-16 18:56:23 -07:00
|
|
|
|
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,
|
2016-09-22 23:21:54 -07:00
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
2016-08-13 12:52:58 -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
|
|
|
|
}
|
|
|
|
|
}
|