jellyfin/Emby.Dlna/PlayTo/uBaseObject.cs

63 lines
1.6 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
2020-08-20 15:04:57 -04:00
using System.Collections.Generic;
2016-10-29 18:22:20 -04:00
2016-10-29 18:34:54 -04:00
namespace Emby.Dlna.PlayTo
2016-10-29 18:22:20 -04:00
{
2020-08-20 15:04:57 -04:00
public class UBaseObject
2016-10-29 18:22:20 -04:00
{
public string Id { get; set; }
public string ParentId { get; set; }
public string Title { get; set; }
public string SecondText { get; set; }
public string IconUrl { get; set; }
public string MetaData { get; set; }
public string Url { get; set; }
2020-08-20 15:04:57 -04:00
public IReadOnlyList<string> ProtocolInfo { get; set; }
2016-10-29 18:22:20 -04:00
public string UpnpClass { get; set; }
public string MediaType
{
get
{
var classType = UpnpClass ?? string.Empty;
2016-10-29 18:34:54 -04:00
if (classType.IndexOf(MediaBrowser.Model.Entities.MediaType.Audio, StringComparison.Ordinal) != -1)
2016-10-29 18:22:20 -04:00
{
2016-10-29 18:34:54 -04:00
return MediaBrowser.Model.Entities.MediaType.Audio;
2016-10-29 18:22:20 -04:00
}
2020-06-15 17:43:52 -04:00
2016-10-29 18:34:54 -04:00
if (classType.IndexOf(MediaBrowser.Model.Entities.MediaType.Video, StringComparison.Ordinal) != -1)
2016-10-29 18:22:20 -04:00
{
2016-10-29 18:34:54 -04:00
return MediaBrowser.Model.Entities.MediaType.Video;
2016-10-29 18:22:20 -04:00
}
2020-06-15 17:43:52 -04:00
2016-10-29 18:22:20 -04:00
if (classType.IndexOf("image", StringComparison.Ordinal) != -1)
{
2016-10-29 18:34:54 -04:00
return MediaBrowser.Model.Entities.MediaType.Photo;
2016-10-29 18:22:20 -04:00
}
return null;
}
}
2020-08-20 11:01:04 -04:00
2020-08-20 15:04:57 -04:00
public bool Equals(UBaseObject obj)
2020-08-20 11:01:04 -04:00
{
ArgumentNullException.ThrowIfNull(obj);
2020-08-20 11:01:04 -04:00
2020-08-20 12:50:15 -04:00
return string.Equals(Id, obj.Id, StringComparison.Ordinal);
2020-08-20 11:01:04 -04:00
}
2016-10-29 18:22:20 -04:00
}
}