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

299 lines
9.3 KiB
C#
Raw Normal View History

2014-10-11 22:38:13 +02:00
using MediaBrowser.Common.Configuration;
2014-10-13 22:14:53 +02:00
using MediaBrowser.Common.Events;
2015-05-26 17:31:50 +02:00
using MediaBrowser.Common.Net;
2014-10-11 22:38:13 +02:00
using MediaBrowser.Controller.Devices;
using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Devices;
2014-10-13 22:14:53 +02:00
using MediaBrowser.Model.Events;
2014-12-29 21:18:48 +01:00
using MediaBrowser.Model.Extensions;
2014-10-13 22:14:53 +02:00
using MediaBrowser.Model.Logging;
2015-09-10 20:28:22 +02:00
using MediaBrowser.Model.Net;
2014-12-13 04:56:30 +01:00
using MediaBrowser.Model.Querying;
2014-10-11 22:38:13 +02:00
using MediaBrowser.Model.Session;
2015-01-02 06:36:27 +01:00
using MediaBrowser.Model.Users;
2014-10-11 22:38:13 +02:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
2015-10-04 06:23:11 +02:00
using CommonIO;
2015-11-03 05:34:47 +01:00
using MediaBrowser.Controller.Configuration;
2014-10-11 22:38:13 +02:00
namespace MediaBrowser.Server.Implementations.Devices
{
public class DeviceManager : IDeviceManager
{
private readonly IDeviceRepository _repo;
private readonly IUserManager _userManager;
private readonly IFileSystem _fileSystem;
private readonly ILibraryMonitor _libraryMonitor;
2015-11-03 05:34:47 +01:00
private readonly IServerConfigurationManager _config;
2014-10-13 22:14:53 +02:00
private readonly ILogger _logger;
2015-05-26 17:31:50 +02:00
private readonly INetworkManager _network;
2014-10-13 22:14:53 +02:00
public event EventHandler<GenericEventArgs<CameraImageUploadInfo>> CameraImageUploaded;
2014-10-13 22:14:53 +02:00
/// <summary>
/// Occurs when [device options updated].
/// </summary>
public event EventHandler<GenericEventArgs<DeviceInfo>> DeviceOptionsUpdated;
2014-12-13 04:56:30 +01:00
2015-11-03 05:34:47 +01:00
public DeviceManager(IDeviceRepository repo, IUserManager userManager, IFileSystem fileSystem, ILibraryMonitor libraryMonitor, IServerConfigurationManager config, ILogger logger, INetworkManager network)
2014-10-11 22:38:13 +02:00
{
_repo = repo;
_userManager = userManager;
_fileSystem = fileSystem;
_libraryMonitor = libraryMonitor;
_config = config;
2014-10-13 22:14:53 +02:00
_logger = logger;
2015-05-26 17:31:50 +02:00
_network = network;
2014-10-11 22:38:13 +02:00
}
2015-03-15 02:42:09 +01:00
public async Task<DeviceInfo> RegisterDevice(string reportedId, string name, string appName, string appVersion, string usedByUserId)
2014-10-11 22:38:13 +02:00
{
var device = GetDevice(reportedId) ?? new DeviceInfo
{
Id = reportedId
};
2014-10-13 22:14:53 +02:00
device.ReportedName = name;
2014-10-12 03:46:02 +02:00
device.AppName = appName;
2015-03-15 02:42:09 +01:00
device.AppVersion = appVersion;
2014-10-11 22:38:13 +02:00
if (!string.IsNullOrWhiteSpace(usedByUserId))
{
var user = _userManager.GetUserById(usedByUserId);
device.LastUserId = user.Id.ToString("N");
device.LastUserName = user.Name;
}
device.DateLastModified = DateTime.UtcNow;
2014-10-13 22:14:53 +02:00
await _repo.SaveDevice(device).ConfigureAwait(false);
return device;
2014-10-11 22:38:13 +02:00
}
public Task SaveCapabilities(string reportedId, ClientCapabilities capabilities)
{
return _repo.SaveCapabilities(reportedId, capabilities);
}
public ClientCapabilities GetCapabilities(string reportedId)
{
return _repo.GetCapabilities(reportedId);
}
public DeviceInfo GetDevice(string id)
{
return _repo.GetDevice(id);
}
2014-12-13 04:56:30 +01:00
public QueryResult<DeviceInfo> GetDevices(DeviceQuery query)
2014-10-11 22:38:13 +02:00
{
2014-12-13 04:56:30 +01:00
IEnumerable<DeviceInfo> devices = _repo.GetDevices().OrderByDescending(i => i.DateLastModified);
if (query.SupportsContentUploading.HasValue)
{
var val = query.SupportsContentUploading.Value;
devices = devices.Where(i => GetCapabilities(i.Id).SupportsContentUploading == val);
}
2014-12-15 06:49:04 +01:00
if (query.SupportsSync.HasValue)
{
var val = query.SupportsSync.Value;
devices = devices.Where(i => GetCapabilities(i.Id).SupportsSync == val);
}
2015-01-20 06:19:13 +01:00
if (query.SupportsPersistentIdentifier.HasValue)
2014-12-13 04:56:30 +01:00
{
2015-01-20 06:19:13 +01:00
var val = query.SupportsPersistentIdentifier.Value;
2014-12-13 04:56:30 +01:00
2015-01-20 06:19:13 +01:00
devices = devices.Where(i =>
{
var caps = GetCapabilities(i.Id);
2015-02-19 20:21:03 +01:00
var deviceVal = caps.SupportsPersistentIdentifier;
2015-01-20 06:19:13 +01:00
return deviceVal == val;
});
2014-12-31 07:24:49 +01:00
}
if (!string.IsNullOrWhiteSpace(query.UserId))
{
devices = devices.Where(i => CanAccessDevice(query.UserId, i.Id));
}
2014-12-13 04:56:30 +01:00
var array = devices.ToArray();
return new QueryResult<DeviceInfo>
{
Items = array,
TotalRecordCount = array.Length
};
2014-10-11 22:38:13 +02:00
}
public Task DeleteDevice(string id)
{
return _repo.DeleteDevice(id);
}
public ContentUploadHistory GetCameraUploadHistory(string deviceId)
{
return _repo.GetCameraUploadHistory(deviceId);
}
public async Task AcceptCameraUpload(string deviceId, Stream stream, LocalFileInfo file)
{
var device = GetDevice(deviceId);
var path = GetUploadPath(device);
2014-10-11 22:38:13 +02:00
if (!string.IsNullOrWhiteSpace(file.Album))
{
path = Path.Combine(path, _fileSystem.GetValidFilename(file.Album));
}
path = Path.Combine(path, file.Name);
2015-09-10 20:28:22 +02:00
path = Path.ChangeExtension(path, MimeTypes.ToExtension(file.MimeType) ?? "jpg");
2014-10-11 22:38:13 +02:00
_libraryMonitor.ReportFileSystemChangeBeginning(path);
2015-09-20 19:56:26 +02:00
_fileSystem.CreateDirectory(Path.GetDirectoryName(path));
2015-09-10 20:28:22 +02:00
2014-10-11 22:38:13 +02:00
try
{
using (var fs = _fileSystem.GetFileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read))
{
await stream.CopyToAsync(fs).ConfigureAwait(false);
}
_repo.AddCameraUpload(deviceId, file);
}
finally
{
_libraryMonitor.ReportFileSystemChangeComplete(path, true);
}
if (CameraImageUploaded != null)
{
EventHelper.FireEventIfNotNull(CameraImageUploaded, this, new GenericEventArgs<CameraImageUploadInfo>
{
Argument = new CameraImageUploadInfo
{
Device = device,
FileInfo = file
}
}, _logger);
}
2014-10-11 22:38:13 +02:00
}
private string GetUploadPath(DeviceInfo device)
{
2014-10-13 22:14:53 +02:00
if (!string.IsNullOrWhiteSpace(device.CameraUploadPath))
{
return device.CameraUploadPath;
}
2014-10-12 03:46:02 +02:00
2014-10-13 22:14:53 +02:00
var config = _config.GetUploadOptions();
2014-10-11 22:38:13 +02:00
if (!string.IsNullOrWhiteSpace(config.CameraUploadPath))
{
return config.CameraUploadPath;
}
2015-11-03 05:34:47 +01:00
var path = DefaultCameraUploadsPath;
2014-10-12 03:46:02 +02:00
if (config.EnableCameraUploadSubfolders)
{
path = Path.Combine(path, _fileSystem.GetValidFilename(device.Name));
}
return path;
2014-10-11 22:38:13 +02:00
}
2014-10-13 22:14:53 +02:00
2015-11-03 05:34:47 +01:00
private string DefaultCameraUploadsPath
{
get { return Path.Combine(_config.CommonApplicationPaths.DataPath, "camerauploads"); }
}
2014-10-13 22:14:53 +02:00
public async Task UpdateDeviceInfo(string id, DeviceOptions options)
{
var device = GetDevice(id);
device.CustomName = options.CustomName;
device.CameraUploadPath = options.CameraUploadPath;
await _repo.SaveDevice(device).ConfigureAwait(false);
EventHelper.FireEventIfNotNull(DeviceOptionsUpdated, this, new GenericEventArgs<DeviceInfo>(device), _logger);
}
2014-12-29 21:18:48 +01:00
public bool CanAccessDevice(string userId, string deviceId)
{
if (string.IsNullOrWhiteSpace(userId))
{
throw new ArgumentNullException("userId");
}
if (string.IsNullOrWhiteSpace(deviceId))
{
throw new ArgumentNullException("deviceId");
}
var user = _userManager.GetUserById(userId);
2015-05-19 00:23:03 +02:00
if (user == null)
{
throw new ArgumentException("user not found");
}
2014-12-29 21:18:48 +01:00
if (!CanAccessDevice(user.Policy, deviceId))
{
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;
}
private bool CanAccessDevice(UserPolicy policy, string id)
{
if (policy.EnableAllDevices)
{
return true;
}
2015-10-26 06:29:32 +01:00
if (policy.IsAdministrator)
{
return true;
}
2014-12-29 21:18:48 +01:00
return ListHelper.ContainsIgnoreCase(policy.EnabledDevices, id);
}
2014-10-11 22:38:13 +02:00
}
public class DevicesConfigStore : IConfigurationFactory
{
public IEnumerable<ConfigurationStore> GetConfigurations()
{
return new List<ConfigurationStore>
{
new ConfigurationStore
{
Key = "devices",
ConfigurationType = typeof(DevicesOptions)
}
};
}
}
public static class UploadConfigExtension
{
public static DevicesOptions GetUploadOptions(this IConfigurationManager config)
{
return config.GetConfiguration<DevicesOptions>("devices");
}
}
2015-09-20 19:56:26 +02:00
}