You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.6 KiB
74 lines
2.6 KiB
using System;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Devices;
|
|
using MediaBrowser.Model.Events;
|
|
using MediaBrowser.Model.Querying;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
namespace MediaBrowser.Controller.Devices
|
|
{
|
|
public interface IDeviceManager
|
|
{
|
|
/// <summary>
|
|
/// Occurs when [camera image uploaded].
|
|
/// </summary>
|
|
event EventHandler<GenericEventArgs<CameraImageUploadInfo>> CameraImageUploaded;
|
|
|
|
/// <summary>
|
|
/// Saves the capabilities.
|
|
/// </summary>
|
|
/// <param name="reportedId">The reported identifier.</param>
|
|
/// <param name="capabilities">The capabilities.</param>
|
|
/// <returns>Task.</returns>
|
|
void SaveCapabilities(string reportedId, ClientCapabilities capabilities);
|
|
|
|
/// <summary>
|
|
/// Gets the capabilities.
|
|
/// </summary>
|
|
/// <param name="reportedId">The reported identifier.</param>
|
|
/// <returns>ClientCapabilities.</returns>
|
|
ClientCapabilities GetCapabilities(string reportedId);
|
|
|
|
/// <summary>
|
|
/// Gets the device information.
|
|
/// </summary>
|
|
/// <param name="id">The identifier.</param>
|
|
/// <returns>DeviceInfo.</returns>
|
|
DeviceInfo GetDevice(string id);
|
|
|
|
/// <summary>
|
|
/// Gets the devices.
|
|
/// </summary>
|
|
/// <param name="query">The query.</param>
|
|
/// <returns>IEnumerable<DeviceInfo>.</returns>
|
|
QueryResult<DeviceInfo> GetDevices(DeviceQuery query);
|
|
|
|
/// <summary>
|
|
/// Gets the upload history.
|
|
/// </summary>
|
|
/// <param name="deviceId">The device identifier.</param>
|
|
/// <returns>ContentUploadHistory.</returns>
|
|
ContentUploadHistory GetCameraUploadHistory(string deviceId);
|
|
|
|
/// <summary>
|
|
/// Accepts the upload.
|
|
/// </summary>
|
|
/// <param name="deviceId">The device identifier.</param>
|
|
/// <param name="stream">The stream.</param>
|
|
/// <param name="file">The file.</param>
|
|
/// <returns>Task.</returns>
|
|
Task AcceptCameraUpload(string deviceId, Stream stream, LocalFileInfo file);
|
|
|
|
/// <summary>
|
|
/// Determines whether this instance [can access device] the specified user identifier.
|
|
/// </summary>
|
|
bool CanAccessDevice(User user, string deviceId);
|
|
|
|
void UpdateDeviceOptions(string deviceId, DeviceOptions options);
|
|
DeviceOptions GetDeviceOptions(string deviceId);
|
|
event EventHandler<GenericEventArgs<Tuple<string, DeviceOptions>>> DeviceOptionsUpdated;
|
|
}
|
|
}
|