jellyfin/MediaBrowser.Model/ApiClient/ServerInfo.cs

75 lines
2.3 KiB
C#
Raw Normal View History

2014-10-30 02:17:31 +01:00
using MediaBrowser.Model.Connect;
using MediaBrowser.Model.System;
2014-10-27 04:06:01 +01:00
using System;
2014-10-03 05:48:59 +02: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 04:13:03 +01:00
public String ManualAddress { get; set; }
2014-10-03 05:48:59 +02:00
public String UserId { get; set; }
public String AccessToken { get; set; }
2014-10-04 03:42:38 +02:00
public List<WakeOnLanInfo> WakeOnLanInfos { get; set; }
2014-10-13 22:14:53 +02:00
public DateTime DateLastAccessed { get; set; }
2014-10-18 23:25:04 +02:00
public String ExchangeToken { get; set; }
2014-10-30 02:17:31 +01:00
public UserLinkType? UserLinkType { get; set; }
2014-12-03 04:13:03 +01:00
public ConnectionMode? LastConnectionMode { get; set; }
2014-11-14 07:27:10 +01:00
2014-10-03 05:48:59 +02:00
public ServerInfo()
{
2014-10-04 03:42:38 +02:00
WakeOnLanInfos = new List<WakeOnLanInfo>();
2014-10-03 05:48:59 +02:00
}
2014-10-27 04:06:01 +01:00
public void ImportInfo(PublicSystemInfo systemInfo)
{
Name = systemInfo.ServerName;
Id = systemInfo.Id;
2014-12-03 04:13:03 +01:00
if (!string.IsNullOrEmpty(systemInfo.LocalAddress))
2014-10-27 04:06:01 +01:00
{
LocalAddress = systemInfo.LocalAddress;
}
2014-11-14 07:27:10 +01:00
2014-10-27 04:06:01 +01: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 04:13:03 +01: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 05:48:59 +02:00
}
}