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;
|
2015-01-28 14:29:02 -07:00
|
|
|
|
using MediaBrowser.Model.Users;
|
2013-12-26 09:53:23 -07:00
|
|
|
|
using System;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
using System.Collections.Generic;
|
2013-09-05 12:00:50 -07:00
|
|
|
|
using System.Linq;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
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>,
|
2014-06-02 19:01:30 -07:00
|
|
|
|
IHasTags,
|
2014-08-25 19:30:52 -07:00
|
|
|
|
IHasMediaSources,
|
2015-03-16 19:46:21 -07:00
|
|
|
|
IThemeMedia,
|
|
|
|
|
IArchivable
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2014-04-17 22:03:01 -07:00
|
|
|
|
public long? Size { get; set; }
|
|
|
|
|
public string Container { get; set; }
|
2014-04-22 10:25:54 -07:00
|
|
|
|
public int? TotalBitrate { get; set; }
|
2015-09-19 19:06:56 -07:00
|
|
|
|
public ExtraType? ExtraType { get; set; }
|
2014-04-17 22:03:01 -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; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the album.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The album.</value>
|
|
|
|
|
public string Album { get; set; }
|
|
|
|
|
|
2015-09-19 19:06:56 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public bool IsThemeMedia
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return ExtraType.HasValue && ExtraType.Value == Model.Entities.ExtraType.ThemeSong;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-08-25 19:30:52 -07:00
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2014-08-30 07:26:29 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-08-05 16:59:24 -07:00
|
|
|
|
public override bool SupportsAddingToPlaylist
|
|
|
|
|
{
|
|
|
|
|
get { return LocationType == LocationType.FileSystem && RunTimeTicks.HasValue; }
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-29 13:18:48 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public bool IsArchive
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(Path))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
var ext = System.IO.Path.GetExtension(Path) ?? string.Empty;
|
|
|
|
|
|
|
|
|
|
return new[] { ".zip", ".rar", ".7z" }.Contains(ext, StringComparer.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
2013-10-01 16:33:50 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2015-01-24 15:33:26 -07:00
|
|
|
|
protected override string CreateUserDataKey()
|
2013-10-01 16:33:50 -07:00
|
|
|
|
{
|
2015-05-04 07:35:38 -07:00
|
|
|
|
var parent = AlbumEntity;
|
2013-10-01 16:33:50 -07:00
|
|
|
|
|
|
|
|
|
if (parent != null)
|
|
|
|
|
{
|
2013-10-04 17:44:43 -07:00
|
|
|
|
var parentKey = parent.GetUserDataKey();
|
2013-10-01 16:33:50 -07:00
|
|
|
|
|
2013-10-04 17:44:43 -07:00
|
|
|
|
if (IndexNumber.HasValue)
|
2013-10-01 16:33:50 -07:00
|
|
|
|
{
|
|
|
|
|
var songKey = (ParentIndexNumber != null ? ParentIndexNumber.Value.ToString("0000 - ") : "")
|
|
|
|
|
+ (IndexNumber.Value.ToString("0000 - "));
|
|
|
|
|
|
2013-10-04 17:44:43 -07:00
|
|
|
|
return parentKey + songKey;
|
2013-10-01 16:33:50 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-24 15:33:26 -07:00
|
|
|
|
return base.CreateUserDataKey();
|
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
|
|
|
|
{
|
2015-11-06 08:02:22 -07:00
|
|
|
|
return UnratedItem.Music;
|
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)
|
|
|
|
|
{
|
|
|
|
|
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,
|
|
|
|
|
Path = enablePathSubstituion ? GetMappedPath(i.Path, locationType) : i.Path,
|
|
|
|
|
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 (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
|
|
|
|
}
|
|
|
|
|
}
|