aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Devices/DeviceRepository.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-18 03:39:20 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-18 03:39:20 -0500
commitfa714425dd91fed2ca691cd45f73f7ea5a579dff (patch)
tree2c80df4c66a2eee15f59f3c3cc8b6228b7e51e69 /Emby.Server.Implementations/Devices/DeviceRepository.cs
parent7a2cb6da5a14e8786adefbe3a58baa202c6f85e2 (diff)
begin to rework repositories
Diffstat (limited to 'Emby.Server.Implementations/Devices/DeviceRepository.cs')
-rw-r--r--Emby.Server.Implementations/Devices/DeviceRepository.cs208
1 files changed, 208 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Devices/DeviceRepository.cs b/Emby.Server.Implementations/Devices/DeviceRepository.cs
new file mode 100644
index 000000000..f739765b3
--- /dev/null
+++ b/Emby.Server.Implementations/Devices/DeviceRepository.cs
@@ -0,0 +1,208 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Threading.Tasks;
+using MediaBrowser.Common.Configuration;
+using MediaBrowser.Common.Extensions;
+using MediaBrowser.Controller.Devices;
+using MediaBrowser.Model.Devices;
+using MediaBrowser.Model.IO;
+using MediaBrowser.Model.Logging;
+using MediaBrowser.Model.Serialization;
+using MediaBrowser.Model.Session;
+
+namespace Emby.Server.Implementations.Devices
+{
+ public class DeviceRepository : IDeviceRepository
+ {
+ private readonly object _syncLock = new object();
+
+ private readonly IApplicationPaths _appPaths;
+ private readonly IJsonSerializer _json;
+ private readonly ILogger _logger;
+ private readonly IFileSystem _fileSystem;
+
+ private Dictionary<string, DeviceInfo> _devices;
+
+ public DeviceRepository(IApplicationPaths appPaths, IJsonSerializer json, ILogger logger, IFileSystem fileSystem)
+ {
+ _appPaths = appPaths;
+ _json = json;
+ _logger = logger;
+ _fileSystem = fileSystem;
+ }
+
+ private string GetDevicesPath()
+ {
+ return Path.Combine(_appPaths.DataPath, "devices");
+ }
+
+ private string GetDevicePath(string id)
+ {
+ return Path.Combine(GetDevicesPath(), id.GetMD5().ToString("N"));
+ }
+
+ public Task SaveDevice(DeviceInfo device)
+ {
+ var path = Path.Combine(GetDevicePath(device.Id), "device.json");
+ _fileSystem.CreateDirectory(Path.GetDirectoryName(path));
+
+ lock (_syncLock)
+ {
+ _json.SerializeToFile(device, path);
+ _devices[device.Id] = device;
+ }
+ return Task.FromResult(true);
+ }
+
+ public Task SaveCapabilities(string reportedId, ClientCapabilities capabilities)
+ {
+ var device = GetDevice(reportedId);
+
+ if (device == null)
+ {
+ throw new ArgumentException("No device has been registed with id " + reportedId);
+ }
+
+ device.Capabilities = capabilities;
+ SaveDevice(device);
+
+ return Task.FromResult(true);
+ }
+
+ public ClientCapabilities GetCapabilities(string reportedId)
+ {
+ var device = GetDevice(reportedId);
+
+ return device == null ? null : device.Capabilities;
+ }
+
+ public DeviceInfo GetDevice(string id)
+ {
+ if (string.IsNullOrWhiteSpace(id))
+ {
+ throw new ArgumentNullException("id");
+ }
+
+ return GetDevices()
+ .FirstOrDefault(i => string.Equals(i.Id, id, StringComparison.OrdinalIgnoreCase));
+ }
+
+ public IEnumerable<DeviceInfo> GetDevices()
+ {
+ lock (_syncLock)
+ {
+ if (_devices == null)
+ {
+ _devices = new Dictionary<string, DeviceInfo>(StringComparer.OrdinalIgnoreCase);
+
+ var devices = LoadDevices().ToList();
+ foreach (var device in devices)
+ {
+ _devices[device.Id] = device;
+ }
+ }
+ return _devices.Values.ToList();
+ }
+ }
+
+ private IEnumerable<DeviceInfo> LoadDevices()
+ {
+ var path = GetDevicesPath();
+
+ try
+ {
+ return _fileSystem
+ .GetFilePaths(path, true)
+ .Where(i => string.Equals(Path.GetFileName(i), "device.json", StringComparison.OrdinalIgnoreCase))
+ .ToList()
+ .Select(i =>
+ {
+ try
+ {
+ return _json.DeserializeFromFile<DeviceInfo>(i);
+ }
+ catch (Exception ex)
+ {
+ _logger.ErrorException("Error reading {0}", ex, i);
+ return null;
+ }
+ })
+ .Where(i => i != null);
+ }
+ catch (IOException)
+ {
+ return new List<DeviceInfo>();
+ }
+ }
+
+ public Task DeleteDevice(string id)
+ {
+ var path = GetDevicePath(id);
+
+ lock (_syncLock)
+ {
+ try
+ {
+ _fileSystem.DeleteDirectory(path, true);
+ }
+ catch (IOException)
+ {
+ }
+
+ _devices = null;
+ }
+
+ return Task.FromResult(true);
+ }
+
+ public ContentUploadHistory GetCameraUploadHistory(string deviceId)
+ {
+ var path = Path.Combine(GetDevicePath(deviceId), "camerauploads.json");
+
+ lock (_syncLock)
+ {
+ try
+ {
+ return _json.DeserializeFromFile<ContentUploadHistory>(path);
+ }
+ catch (IOException)
+ {
+ return new ContentUploadHistory
+ {
+ DeviceId = deviceId
+ };
+ }
+ }
+ }
+
+ public void AddCameraUpload(string deviceId, LocalFileInfo file)
+ {
+ var path = Path.Combine(GetDevicePath(deviceId), "camerauploads.json");
+ _fileSystem.CreateDirectory(Path.GetDirectoryName(path));
+
+ lock (_syncLock)
+ {
+ ContentUploadHistory history;
+
+ try
+ {
+ history = _json.DeserializeFromFile<ContentUploadHistory>(path);
+ }
+ catch (IOException)
+ {
+ history = new ContentUploadHistory
+ {
+ DeviceId = deviceId
+ };
+ }
+
+ history.DeviceId = deviceId;
+ history.FilesUploaded.Add(file);
+
+ _json.SerializeToFile(history, path);
+ }
+ }
+ }
+}