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

299 lines
8.2 KiB
C#
Raw Normal View History

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