jellyfin/MediaBrowser.Model/ApiClient/ServerInfo.cs

123 lines
3.4 KiB
C#
Raw Normal View History

2014-10-30 02:17:31 +01:00
using MediaBrowser.Model.Connect;
2015-01-30 06:18:32 +01:00
using MediaBrowser.Model.Extensions;
2014-10-30 02:17:31 +01:00
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;
2015-01-30 06:18:32 +01:00
using System.Linq;
2014-10-03 05:48:59 +02:00
namespace MediaBrowser.Model.ApiClient
{
public class ServerInfo
{
2015-01-30 06:18:32 +01:00
public List<ServerUserInfo> Users { get; set; }
2014-10-03 05:48:59 +02:00
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>();
2015-01-30 06:18:32 +01:00
Users = new List<ServerUserInfo>();
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");
}
}
2015-01-30 06:18:32 +01:00
public void AddOrUpdate(ServerUserInfo user)
{
if (user == null)
{
throw new ArgumentNullException("user");
}
var list = Users.ToList();
var index = FindIndex(list, user.Id);
if (index != -1)
{
var existing = list[index];
// Merge the data
existing.IsSignedInOffline = user.IsSignedInOffline;
2015-01-30 06:18:32 +01:00
}
else
{
list.Add(user);
}
Users = list;
}
private int FindIndex(List<ServerUserInfo> users, string id)
{
var index = 0;
foreach (var user in users)
{
2015-02-06 16:01:17 +01:00
if (StringHelper.EqualsIgnoreCase(id, user.Id))
2015-01-30 06:18:32 +01:00
{
return index;
}
index++;
}
return -1;
}
2014-10-03 05:48:59 +02:00
}
}