2014-10-11 20:38:13 +00:00
|
|
|
using System;
|
2020-11-19 14:38:54 +00:00
|
|
|
using System.Collections.Concurrent;
|
2014-10-11 20:38:13 +00:00
|
|
|
using System.Linq;
|
2021-04-10 20:17:36 +00:00
|
|
|
using System.Threading.Tasks;
|
2020-05-15 21:20:07 +00:00
|
|
|
using Jellyfin.Data.Entities;
|
2021-04-10 20:17:36 +00:00
|
|
|
using Jellyfin.Data.Entities.Security;
|
2020-07-29 23:25:47 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2020-08-14 00:48:28 +00:00
|
|
|
using Jellyfin.Data.Events;
|
2019-01-13 19:20:41 +00:00
|
|
|
using MediaBrowser.Controller.Devices;
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Model.Devices;
|
|
|
|
using MediaBrowser.Model.Querying;
|
|
|
|
using MediaBrowser.Model.Session;
|
2021-04-10 20:17:36 +00:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
2014-10-11 20:38:13 +00:00
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
namespace Jellyfin.Server.Implementations.Devices
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
|
|
|
public class DeviceManager : IDeviceManager
|
|
|
|
{
|
2021-04-10 20:17:36 +00:00
|
|
|
private readonly JellyfinDbProvider _dbProvider;
|
2014-10-11 20:38:13 +00:00
|
|
|
private readonly IUserManager _userManager;
|
2020-11-19 14:38:54 +00:00
|
|
|
private readonly ConcurrentDictionary<string, ClientCapabilities> _capabilitiesMap = new ();
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="DeviceManager"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="dbProvider">The database provider.</param>
|
|
|
|
/// <param name="userManager">The user manager.</param>
|
|
|
|
public DeviceManager(JellyfinDbProvider dbProvider, IUserManager userManager)
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
2021-04-10 20:17:36 +00:00
|
|
|
_dbProvider = dbProvider;
|
2014-10-11 20:38:13 +00:00
|
|
|
_userManager = userManager;
|
|
|
|
}
|
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public event EventHandler<GenericEventArgs<Tuple<string, DeviceOptions>>>? DeviceOptionsUpdated;
|
2020-11-19 14:38:54 +00:00
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
/// <inheritdoc />
|
2018-09-12 17:26:21 +00:00
|
|
|
public void SaveCapabilities(string deviceId, ClientCapabilities capabilities)
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
2020-11-19 14:38:54 +00:00
|
|
|
_capabilitiesMap[deviceId] = capabilities;
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
2014-10-11 20:38:13 +00:00
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public async Task UpdateDeviceOptions(string deviceId, DeviceOptions options)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2021-04-10 20:17:36 +00:00
|
|
|
await using var dbContext = _dbProvider.CreateContext();
|
|
|
|
await dbContext.Database
|
|
|
|
.ExecuteSqlRawAsync($"UPDATE [DeviceOptions] SET [CustomName] = ${options.CustomName}")
|
|
|
|
.ConfigureAwait(false);
|
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
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
/// <inheritdoc />
|
2021-04-10 20:57:25 +00:00
|
|
|
public async Task<DeviceOptions?> GetDeviceOptions(string deviceId)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
2021-04-10 20:57:25 +00:00
|
|
|
await using var dbContext = _dbProvider.CreateContext();
|
|
|
|
return await dbContext.DeviceOptions
|
2021-04-10 20:17:36 +00:00
|
|
|
.AsQueryable()
|
2021-04-10 20:57:25 +00:00
|
|
|
.FirstOrDefaultAsync(d => d.DeviceId == deviceId)
|
|
|
|
.ConfigureAwait(false);
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
2014-10-11 20:38:13 +00:00
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
/// <inheritdoc />
|
2018-09-12 17:26:21 +00:00
|
|
|
public ClientCapabilities GetCapabilities(string id)
|
|
|
|
{
|
2021-04-10 20:17:36 +00:00
|
|
|
return _capabilitiesMap.TryGetValue(id, out ClientCapabilities? result)
|
2020-11-19 14:38:54 +00:00
|
|
|
? result
|
|
|
|
: new ClientCapabilities();
|
2014-10-11 20:38:13 +00:00
|
|
|
}
|
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public async Task<DeviceInfo?> GetDevice(string id)
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
2021-04-10 20:17:36 +00:00
|
|
|
await using var dbContext = _dbProvider.CreateContext();
|
|
|
|
var device = await dbContext.Devices
|
|
|
|
.AsQueryable()
|
|
|
|
.Where(d => d.DeviceId == id)
|
|
|
|
.OrderByDescending(d => d.DateLastActivity)
|
|
|
|
.Include(d => d.User)
|
|
|
|
.FirstOrDefaultAsync()
|
|
|
|
.ConfigureAwait(false);
|
|
|
|
|
|
|
|
var deviceInfo = device == null ? null : ToDeviceInfo(device);
|
|
|
|
|
|
|
|
return deviceInfo;
|
2014-10-11 20:38:13 +00:00
|
|
|
}
|
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
/// <inheritdoc />
|
|
|
|
public async Task<QueryResult<DeviceInfo>> GetDevices(DeviceQuery query)
|
2014-10-11 20:38:13 +00:00
|
|
|
{
|
2021-04-10 20:17:36 +00:00
|
|
|
await using var dbContext = _dbProvider.CreateContext();
|
|
|
|
var sessions = dbContext.Devices
|
|
|
|
.AsQueryable()
|
|
|
|
.OrderBy(d => d.DeviceId)
|
|
|
|
.ThenByDescending(d => d.DateLastActivity)
|
|
|
|
.AsAsyncEnumerable();
|
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
|
|
|
}
|
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
var array = await sessions.Select(ToDeviceInfo).ToArrayAsync();
|
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
|
|
|
}
|
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
/// <inheritdoc />
|
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;
|
|
|
|
}
|
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
return user.GetPreference(PreferenceKind.EnabledDevices).Contains(deviceId, StringComparer.OrdinalIgnoreCase)
|
|
|
|
|| !GetCapabilities(deviceId).SupportsPersistentIdentifier;
|
|
|
|
}
|
2014-12-29 20:18:48 +00:00
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
private DeviceInfo ToDeviceInfo(Device authInfo)
|
|
|
|
{
|
|
|
|
var caps = GetCapabilities(authInfo.DeviceId);
|
2014-12-29 20:18:48 +00:00
|
|
|
|
2021-04-10 20:17:36 +00:00
|
|
|
return new DeviceInfo
|
|
|
|
{
|
|
|
|
AppName = authInfo.AppName,
|
|
|
|
AppVersion = authInfo.AppVersion,
|
|
|
|
Id = authInfo.DeviceId,
|
|
|
|
LastUserId = authInfo.UserId,
|
|
|
|
LastUserName = authInfo.User.Username,
|
|
|
|
Name = authInfo.DeviceName,
|
|
|
|
DateLastActivity = authInfo.DateLastActivity,
|
|
|
|
IconUrl = caps.IconUrl
|
|
|
|
};
|
2014-12-29 20:18:48 +00:00
|
|
|
}
|
2018-09-12 17:26:21 +00:00
|
|
|
}
|
2018-12-28 15:48:26 +00:00
|
|
|
}
|