123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- using MediaBrowser.Common.Configuration;
- using MediaBrowser.Common.Extensions;
- using MediaBrowser.Controller.Devices;
- using MediaBrowser.Model.Devices;
- using MediaBrowser.Model.Logging;
- using MediaBrowser.Model.Serialization;
- using MediaBrowser.Model.Session;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Threading.Tasks;
- namespace MediaBrowser.Server.Implementations.Devices
- {
- public class DeviceRepository : IDeviceRepository
- {
- private readonly object _syncLock = new object();
- private readonly IApplicationPaths _appPaths;
- private readonly IJsonSerializer _json;
- private ILogger _logger;
- private ConcurrentBag<DeviceInfo> _devices;
- public DeviceRepository(IApplicationPaths appPaths, IJsonSerializer json)
- {
- _appPaths = appPaths;
- _json = json;
- }
- 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");
- Directory.CreateDirectory(Path.GetDirectoryName(path));
- lock (_syncLock)
- {
- _json.SerializeToFile(device, path);
- _devices = null;
- }
- return Task.FromResult(true);
- }
- public Task SaveCapabilities(string reportedId, ClientCapabilities capabilities)
- {
- var device = GetDevice(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)
- {
- return GetDevices()
- .FirstOrDefault(i => string.Equals(i.Id, id, StringComparison.OrdinalIgnoreCase));
- }
- public IEnumerable<DeviceInfo> GetDevices()
- {
- if (_devices == null)
- {
- lock (_syncLock)
- {
- if (_devices == null)
- {
- _devices = new ConcurrentBag<DeviceInfo>(LoadDevices());
- }
- }
- }
- return _devices.ToList();
- }
- private IEnumerable<DeviceInfo> LoadDevices()
- {
- var path = GetDevicesPath();
- try
- {
- return new DirectoryInfo(path)
- .EnumerateFiles("*", SearchOption.AllDirectories)
- .Where(i => string.Equals(i.Name, "device.json", StringComparison.OrdinalIgnoreCase))
- .Select(i =>
- {
- try
- {
- return _json.DeserializeFromFile<DeviceInfo>(i.FullName);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error reading {0}", ex, i.FullName);
- return null;
- }
- })
- .Where(i => i != null)
- .ToList();
- }
- catch (IOException)
- {
- return new List<DeviceInfo>();
- }
- }
- public Task DeleteDevice(string id)
- {
- var path = GetDevicePath(id);
- lock (_syncLock)
- {
- try
- {
- Directory.Delete(path, true);
- }
- catch (DirectoryNotFoundException)
- {
- }
- _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");
- Directory.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);
- }
- }
- }
- }
|