diff options
| author | Andrew Rabert <ar@nullsum.net> | 2018-12-27 18:27:57 -0500 |
|---|---|---|
| committer | Andrew Rabert <ar@nullsum.net> | 2018-12-27 18:27:57 -0500 |
| commit | a86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62 (patch) | |
| tree | a74f6ea4a8abfa1664a605d31d48bc38245ccf58 /MediaBrowser.Controller/Devices/IDeviceManager.cs | |
| parent | 9bac3ac616b01f67db98381feb09d34ebe821f9a (diff) | |
Add GPL modules
Diffstat (limited to 'MediaBrowser.Controller/Devices/IDeviceManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Devices/IDeviceManager.cs | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Devices/IDeviceManager.cs b/MediaBrowser.Controller/Devices/IDeviceManager.cs new file mode 100644 index 000000000..d29fb8ded --- /dev/null +++ b/MediaBrowser.Controller/Devices/IDeviceManager.cs @@ -0,0 +1,73 @@ +using MediaBrowser.Model.Devices; +using MediaBrowser.Model.Events; +using MediaBrowser.Model.Querying; +using MediaBrowser.Model.Session; +using System; +using System.IO; +using System.Threading.Tasks; +using MediaBrowser.Controller.Entities; + +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; + } +} |
