jellyfin/Emby.Server.Implementations/Devices/DeviceManager.cs

145 lines
4.6 KiB
C#
Raw Normal View History

2019-11-01 18:38:54 +01:00
#pragma warning disable CS1591
2014-10-11 22:38:13 +02:00
using System;
using System.Collections.Concurrent;
2014-10-11 22:38:13 +02:00
using System.Collections.Generic;
using System.Linq;
using Jellyfin.Data.Entities;
2020-07-30 01:25:47 +02:00
using Jellyfin.Data.Enums;
using Jellyfin.Data.Events;
using MediaBrowser.Controller.Devices;
using MediaBrowser.Controller.Library;
2018-09-12 19:26:21 +02:00
using MediaBrowser.Controller.Security;
using MediaBrowser.Model.Devices;
using MediaBrowser.Model.Querying;
using MediaBrowser.Model.Session;
2014-10-11 22:38:13 +02:00
2016-11-03 08:14:14 +01:00
namespace Emby.Server.Implementations.Devices
2014-10-11 22:38:13 +02:00
{
public class DeviceManager : IDeviceManager
{
private readonly IUserManager _userManager;
2018-09-12 19:26:21 +02:00
private readonly IAuthenticationRepository _authRepo;
private readonly ConcurrentDictionary<string, ClientCapabilities> _capabilitiesMap = new ();
2018-09-12 19:26:21 +02:00
public DeviceManager(IAuthenticationRepository authRepo, IUserManager userManager)
2014-10-11 22:38:13 +02:00
{
_userManager = userManager;
2018-09-12 19:26:21 +02:00
_authRepo = authRepo;
2014-10-11 22:38:13 +02:00
}
public event EventHandler<GenericEventArgs<Tuple<string, DeviceOptions>>> DeviceOptionsUpdated;
2018-09-12 19:26:21 +02:00
public void SaveCapabilities(string deviceId, ClientCapabilities capabilities)
2014-10-11 22:38:13 +02:00
{
_capabilitiesMap[deviceId] = capabilities;
2018-09-12 19:26:21 +02:00
}
2014-10-11 22:38:13 +02:00
2018-09-12 19:26:21 +02:00
public void UpdateDeviceOptions(string deviceId, DeviceOptions options)
{
_authRepo.UpdateDeviceOptions(deviceId, options);
2014-10-11 22:38:13 +02:00
DeviceOptionsUpdated?.Invoke(this, new GenericEventArgs<Tuple<string, DeviceOptions>>(new Tuple<string, DeviceOptions>(deviceId, options)));
2018-09-12 19:26:21 +02:00
}
2014-10-11 22:38:13 +02:00
2018-09-12 19:26:21 +02:00
public DeviceOptions GetDeviceOptions(string deviceId)
{
return _authRepo.GetDeviceOptions(deviceId);
}
2014-10-11 22:38:13 +02:00
2018-09-12 19:26:21 +02:00
public ClientCapabilities GetCapabilities(string id)
{
return _capabilitiesMap.TryGetValue(id, out ClientCapabilities result)
? result
: new ClientCapabilities();
2014-10-11 22:38:13 +02:00
}
2018-09-12 19:26:21 +02:00
public DeviceInfo GetDevice(string id)
2014-10-11 22:38:13 +02:00
{
2018-09-12 19:26:21 +02:00
var session = _authRepo.Get(new AuthenticationInfoQuery
{
DeviceId = id
}).Items.FirstOrDefault();
var device = session == null ? null : ToDeviceInfo(session);
return device;
2014-10-11 22:38:13 +02:00
}
2014-12-13 04:56:30 +01:00
public QueryResult<DeviceInfo> GetDevices(DeviceQuery query)
2014-10-11 22:38:13 +02:00
{
2020-02-19 21:56:35 +01:00
IEnumerable<AuthenticationInfo> sessions = _authRepo.Get(new AuthenticationInfoQuery
2018-09-12 19:26:21 +02:00
{
2020-06-14 11:11:11 +02:00
// UserId = query.UserId
2018-09-12 19:26:21 +02:00
HasUser = true
}).Items;
2019-01-08 00:27:46 +01:00
2019-01-02 19:13:35 +01:00
// TODO: DeviceQuery doesn't seem to be used from client. Not even Swagger.
2014-12-15 06:49:04 +01:00
if (query.SupportsSync.HasValue)
{
var val = query.SupportsSync.Value;
2020-02-19 21:56:35 +01:00
sessions = sessions.Where(i => GetCapabilities(i.DeviceId).SupportsSync == val);
2014-12-15 06:49:04 +01:00
}
2018-09-12 19:26:21 +02:00
if (!query.UserId.Equals(Guid.Empty))
2014-12-13 04:56:30 +01:00
{
2018-09-12 19:26:21 +02:00
var user = _userManager.GetUserById(query.UserId);
2014-12-13 04:56:30 +01:00
2020-02-19 21:56:35 +01:00
sessions = sessions.Where(i => CanAccessDevice(user, i.DeviceId));
2014-12-31 07:24:49 +01:00
}
2018-09-12 19:26:21 +02:00
var array = sessions.Select(ToDeviceInfo).ToArray();
2020-02-19 21:56:35 +01:00
return new QueryResult<DeviceInfo>(array);
2014-10-11 22:38:13 +02:00
}
2018-09-12 19:26:21 +02: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 21:56:35 +01:00
IconUrl = caps?.IconUrl
2018-09-12 19:26:21 +02:00
};
}
public bool CanAccessDevice(User user, string deviceId)
2014-12-29 21:18:48 +01:00
{
2018-09-12 19:26:21 +02:00
if (user == null)
2014-12-29 21:18:48 +01:00
{
2018-09-12 19:26:21 +02:00
throw new ArgumentException("user not found");
2014-12-29 21:18:48 +01:00
}
2020-06-15 23:43:52 +02:00
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(deviceId))
2014-12-29 21:18:48 +01:00
{
throw new ArgumentNullException(nameof(deviceId));
2014-12-29 21:18:48 +01:00
}
if (user.HasPermission(PermissionKind.EnableAllDevices) || user.HasPermission(PermissionKind.IsAdministrator))
2020-05-13 04:10:35 +02:00
{
return true;
}
if (!user.GetPreference(PreferenceKind.EnabledDevices).Contains(deviceId, StringComparer.OrdinalIgnoreCase))
2014-12-29 21:18:48 +01:00
{
var capabilities = GetCapabilities(deviceId);
2015-01-20 06:19:13 +01:00
if (capabilities != null && capabilities.SupportsPersistentIdentifier)
2014-12-29 21:18:48 +01:00
{
return false;
}
}
return true;
}
2018-09-12 19:26:21 +02:00
}
2018-12-28 16:48:26 +01:00
}