jellyfin-server/MediaBrowser.Model/ApiClient/ServerInfo.cs

75 lines
2.3 KiB
C#
Raw Normal View History

2014-10-30 01:17:31 +00:00
using MediaBrowser.Model.Connect;
using MediaBrowser.Model.System;
2014-10-27 03:06:01 +00:00
using System;
2014-10-03 03:48:59 +00:00
using System.Collections.Generic;
namespace MediaBrowser.Model.ApiClient
{
public class ServerInfo
{
public String Name { get; set; }
public String Id { get; set; }
public String LocalAddress { get; set; }
public String RemoteAddress { get; set; }
2014-12-03 03:13:03 +00:00
public String ManualAddress { get; set; }
2014-10-03 03:48:59 +00:00
public String UserId { get; set; }
public String AccessToken { get; set; }
2014-10-04 01:42:38 +00:00
public List<WakeOnLanInfo> WakeOnLanInfos { get; set; }
2014-10-13 20:14:53 +00:00
public DateTime DateLastAccessed { get; set; }
2014-10-18 21:25:04 +00:00
public String ExchangeToken { get; set; }
2014-10-30 01:17:31 +00:00
public UserLinkType? UserLinkType { get; set; }
2014-12-03 03:13:03 +00:00
public ConnectionMode? LastConnectionMode { get; set; }
2014-11-14 06:27:10 +00:00
2014-10-03 03:48:59 +00:00
public ServerInfo()
{
2014-10-04 01:42:38 +00:00
WakeOnLanInfos = new List<WakeOnLanInfo>();
2014-10-03 03:48:59 +00:00
}
2014-10-27 03:06:01 +00:00
public void ImportInfo(PublicSystemInfo systemInfo)
{
Name = systemInfo.ServerName;
Id = systemInfo.Id;
2014-12-03 03:13:03 +00:00
if (!string.IsNullOrEmpty(systemInfo.LocalAddress))
2014-10-27 03:06:01 +00:00
{
LocalAddress = systemInfo.LocalAddress;
}
2014-11-14 06:27:10 +00:00
2014-10-27 03:06:01 +00:00
if (!string.IsNullOrEmpty(systemInfo.WanAddress))
{
RemoteAddress = systemInfo.WanAddress;
}
var fullSystemInfo = systemInfo as SystemInfo;
if (fullSystemInfo != null)
{
WakeOnLanInfos = new List<WakeOnLanInfo>();
if (!string.IsNullOrEmpty(fullSystemInfo.MacAddress))
{
WakeOnLanInfos.Add(new WakeOnLanInfo
{
MacAddress = fullSystemInfo.MacAddress
});
}
}
}
2014-12-03 03:13:03 +00:00
public string GetAddress(ConnectionMode mode)
{
switch (mode)
{
case ConnectionMode.Local:
return LocalAddress;
case ConnectionMode.Manual:
return ManualAddress;
case ConnectionMode.Remote:
return RemoteAddress;
default:
throw new ArgumentException("Unexpected ConnectionMode");
}
}
2014-10-03 03:48:59 +00:00
}
}