jellyfin/MediaBrowser.Model/ApiClient/ServerInfo.cs

56 lines
1.6 KiB
C#
Raw Normal View History

2014-10-27 04:06:01 +01:00
using MediaBrowser.Model.System;
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; }
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-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;
if (!string.IsNullOrEmpty(systemInfo.LocalAddress))
{
LocalAddress = systemInfo.LocalAddress;
}
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-10-03 05:48:59 +02:00
}
}