2019-11-01 17:38:54 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2014-10-11 20:38:13 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2019-02-28 22:22:57 +00:00
|
|
|
using System.Globalization;
|
2014-10-11 20:38:13 +00:00
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
2020-05-13 02:10:35 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2020-05-15 21:20:07 +00:00
|
|
|
using Jellyfin.Data.Entities;
|
2019-01-13 19:20:41 +00:00
|
|
|
using MediaBrowser.Common.Extensions;
|
2015-11-03 04:34:47 +00:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
2019-01-13 19:20:41 +00:00
|
|
|
using MediaBrowser.Controller.Devices;
|
|
|
|
using MediaBrowser.Controller.Library;
|
2018-09-12 17:26:21 +00:00
|
|
|
using MediaBrowser.Controller.Security;
|
2019-01-13 19:20:41 +00:00
|
|
|
using MediaBrowser.Model.Devices;
|
|
|
|
using MediaBrowser.Model.Events;
|
|
|
|
using MediaBrowser.Model.Querying;
|
2018-09-12 17:26:21 +00:00
|
|
|
using MediaBrowser.Model.Serialization;
|
2019-01-13 19:20:41 +00:00
|
|
|
using MediaBrowser.Model.Session;
|
2014-10-11 20:38:13 +00:00
|
|
|
|
2016-11-03 07:14:14 +00:00
|
|
|
namespace Emby.Server.Implementations.Devices
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
|
|
|
public class DeviceManager : IDeviceManager
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
private readonly IJsonSerializer _json;
|
2014-10-11 20:38:13 +00:00
|
|
|
private readonly IUserManager _userManager;
|
2015-11-03 04:34:47 +00:00
|
|
|
private readonly IServerConfigurationManager _config;
|
2018-09-12 17:26:21 +00:00
|
|
|
private readonly IAuthenticationRepository _authRepo;
|
2020-04-04 19:40:06 +00:00
|
|
|
private readonly Dictionary<string, ClientCapabilities> _capabilitiesCache;
|
2020-05-20 23:47:41 +00:00
|
|
|
private readonly object _capabilitiesSyncLock = new object();
|
2018-09-12 17:26:21 +00:00
|
|
|
|
|
|
|
public event EventHandler<GenericEventArgs<Tuple<string, DeviceOptions>>> DeviceOptionsUpdated;
|
2020-04-04 19:40:06 +00:00
|
|
|
|
2019-01-17 22:55:05 +00:00
|
|
|
public DeviceManager(
|
|
|
|
IAuthenticationRepository authRepo,
|
|
|
|
IJsonSerializer json,
|
|
|
|
IUserManager userManager,
|
2019-02-06 19:38:42 +00:00
|
|
|
IServerConfigurationManager config)
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
_json = json;
|
2014-10-11 20:38:13 +00:00
|
|
|
_userManager = userManager;
|
|
|
|
_config = config;
|
2018-09-12 17:26:21 +00:00
|
|
|
_authRepo = authRepo;
|
2020-04-04 19:40:06 +00:00
|
|
|
_capabilitiesCache = new Dictionary<string, ClientCapabilities>(StringComparer.OrdinalIgnoreCase);
|
2014-10-11 20:38:13 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public void SaveCapabilities(string deviceId, ClientCapabilities capabilities)
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
var path = Path.Combine(GetDevicePath(deviceId), "capabilities.json");
|
2019-01-26 21:08:04 +00:00
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(path));
|
2016-05-30 16:22:31 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
lock (_capabilitiesSyncLock)
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
_capabilitiesCache[deviceId] = capabilities;
|
2014-10-11 20:38:13 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
_json.SerializeToFile(capabilities, path);
|
|
|
|
}
|
|
|
|
}
|
2014-10-11 20:38:13 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public void UpdateDeviceOptions(string deviceId, DeviceOptions options)
|
|
|
|
{
|
|
|
|
_authRepo.UpdateDeviceOptions(deviceId, options);
|
2014-10-11 20:38:13 +00:00
|
|
|
|
2020-04-05 16:10:56 +00:00
|
|
|
DeviceOptionsUpdated?.Invoke(this, new GenericEventArgs<Tuple<string, DeviceOptions>>(new Tuple<string, DeviceOptions>(deviceId, options)));
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
2014-10-11 20:38:13 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public DeviceOptions GetDeviceOptions(string deviceId)
|
|
|
|
{
|
|
|
|
return _authRepo.GetDeviceOptions(deviceId);
|
|
|
|
}
|
2014-10-11 20:38:13 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public ClientCapabilities GetCapabilities(string id)
|
|
|
|
{
|
|
|
|
lock (_capabilitiesSyncLock)
|
|
|
|
{
|
2019-01-13 20:46:33 +00:00
|
|
|
if (_capabilitiesCache.TryGetValue(id, out var result))
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
|
|
|
return result;
|
|
|
|
}
|
2017-10-13 19:18:05 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
var path = Path.Combine(GetDevicePath(id), "capabilities.json");
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return _json.DeserializeFromFile<ClientCapabilities>(path) ?? new ClientCapabilities();
|
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2014-10-13 20:14:53 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
return new ClientCapabilities();
|
2014-10-11 20:38:13 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public DeviceInfo GetDevice(string id)
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
return GetDevice(id, true);
|
2014-10-11 20:38:13 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
private DeviceInfo GetDevice(string id, bool includeCapabilities)
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
var session = _authRepo.Get(new AuthenticationInfoQuery
|
|
|
|
{
|
|
|
|
DeviceId = id
|
|
|
|
}).Items.FirstOrDefault();
|
|
|
|
|
|
|
|
var device = session == null ? null : ToDeviceInfo(session);
|
|
|
|
|
|
|
|
return device;
|
2014-10-11 20:38:13 +00:00
|
|
|
}
|
|
|
|
|
2014-12-13 03:56:30 +00:00
|
|
|
public QueryResult<DeviceInfo> GetDevices(DeviceQuery query)
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
2020-02-19 20:56:35 +00:00
|
|
|
IEnumerable<AuthenticationInfo> sessions = _authRepo.Get(new AuthenticationInfoQuery
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2020-06-14 09:11:11 +00:00
|
|
|
// UserId = query.UserId
|
2018-09-12 17:26:21 +00:00
|
|
|
HasUser = true
|
|
|
|
}).Items;
|
2019-01-07 23:27:46 +00:00
|
|
|
|
2019-01-02 18:13:35 +00:00
|
|
|
// TODO: DeviceQuery doesn't seem to be used from client. Not even Swagger.
|
2014-12-15 05:49:04 +00:00
|
|
|
if (query.SupportsSync.HasValue)
|
|
|
|
{
|
|
|
|
var val = query.SupportsSync.Value;
|
|
|
|
|
2020-02-19 20:56:35 +00:00
|
|
|
sessions = sessions.Where(i => GetCapabilities(i.DeviceId).SupportsSync == val);
|
2014-12-15 05:49:04 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (!query.UserId.Equals(Guid.Empty))
|
2014-12-13 03:56:30 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
var user = _userManager.GetUserById(query.UserId);
|
2014-12-13 03:56:30 +00:00
|
|
|
|
2020-02-19 20:56:35 +00:00
|
|
|
sessions = sessions.Where(i => CanAccessDevice(user, i.DeviceId));
|
2014-12-31 06:24:49 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
var array = sessions.Select(ToDeviceInfo).ToArray();
|
2015-01-26 16:47:15 +00:00
|
|
|
|
2020-02-19 20:56:35 +00:00
|
|
|
return new QueryResult<DeviceInfo>(array);
|
2014-10-11 20:38:13 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
private DeviceInfo ToDeviceInfo(AuthenticationInfo authInfo)
|
|
|
|
{
|
|
|
|
var caps = GetCapabilities(authInfo.DeviceId);
|
|
|
|
|
|
|
|
return new DeviceInfo
|
|
|
|
{
|
|
|
|
AppName = authInfo.AppName,
|
|
|
|
AppVersion = authInfo.AppVersion,
|
|
|
|
Id = authInfo.DeviceId,
|
|
|
|
LastUserId = authInfo.UserId,
|
|
|
|
LastUserName = authInfo.UserName,
|
|
|
|
Name = authInfo.DeviceName,
|
|
|
|
DateLastActivity = authInfo.DateLastActivity,
|
2020-02-19 20:56:35 +00:00
|
|
|
IconUrl = caps?.IconUrl
|
2018-09-12 17:26:21 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
private string GetDevicesPath()
|
|
|
|
{
|
|
|
|
return Path.Combine(_config.ApplicationPaths.DataPath, "devices");
|
|
|
|
}
|
|
|
|
|
|
|
|
private string GetDevicePath(string id)
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
2019-02-28 22:22:57 +00:00
|
|
|
return Path.Combine(GetDevicesPath(), id.GetMD5().ToString("N", CultureInfo.InvariantCulture));
|
2014-10-11 20:38:13 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public bool CanAccessDevice(User user, string deviceId)
|
2014-12-29 20:18:48 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
if (user == null)
|
2014-12-29 20:18:48 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
throw new ArgumentException("user not found");
|
2014-12-29 20:18:48 +00:00
|
|
|
}
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
if (string.IsNullOrEmpty(deviceId))
|
2014-12-29 20:18:48 +00:00
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(deviceId));
|
2014-12-29 20:18:48 +00:00
|
|
|
}
|
|
|
|
|
2020-05-20 23:47:41 +00:00
|
|
|
if (user.HasPermission(PermissionKind.EnableAllDevices) || user.HasPermission(PermissionKind.IsAdministrator))
|
2020-05-13 02:10:35 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!user.GetPreference(PreferenceKind.EnabledDevices).Contains(deviceId, StringComparer.OrdinalIgnoreCase))
|
2014-12-29 20:18:48 +00:00
|
|
|
{
|
|
|
|
var capabilities = GetCapabilities(deviceId);
|
|
|
|
|
2015-01-20 05:19:13 +00:00
|
|
|
if (capabilities != null && capabilities.SupportsPersistentIdentifier)
|
2014-12-29 20:18:48 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
2018-12-28 15:48:26 +00:00
|
|
|
}
|