| | 1 | | using System; |
| | 2 | | using System.ComponentModel.DataAnnotations; |
| | 3 | | using System.Threading.Tasks; |
| | 4 | | using Jellyfin.Api.Helpers; |
| | 5 | | using Jellyfin.Data.Dtos; |
| | 6 | | using Jellyfin.Data.Queries; |
| | 7 | | using MediaBrowser.Common.Api; |
| | 8 | | using MediaBrowser.Controller.Devices; |
| | 9 | | using MediaBrowser.Controller.Session; |
| | 10 | | using MediaBrowser.Model.Dto; |
| | 11 | | using MediaBrowser.Model.Querying; |
| | 12 | | using Microsoft.AspNetCore.Authorization; |
| | 13 | | using Microsoft.AspNetCore.Http; |
| | 14 | | using Microsoft.AspNetCore.Mvc; |
| | 15 | |
|
| | 16 | | namespace Jellyfin.Api.Controllers; |
| | 17 | |
|
| | 18 | | /// <summary> |
| | 19 | | /// Devices Controller. |
| | 20 | | /// </summary> |
| | 21 | | [Authorize(Policy = Policies.RequiresElevation)] |
| | 22 | | public class DevicesController : BaseJellyfinApiController |
| | 23 | | { |
| | 24 | | private readonly IDeviceManager _deviceManager; |
| | 25 | | private readonly ISessionManager _sessionManager; |
| | 26 | |
|
| | 27 | | /// <summary> |
| | 28 | | /// Initializes a new instance of the <see cref="DevicesController"/> class. |
| | 29 | | /// </summary> |
| | 30 | | /// <param name="deviceManager">Instance of <see cref="IDeviceManager"/> interface.</param> |
| | 31 | | /// <param name="sessionManager">Instance of <see cref="ISessionManager"/> interface.</param> |
| 0 | 32 | | public DevicesController( |
| 0 | 33 | | IDeviceManager deviceManager, |
| 0 | 34 | | ISessionManager sessionManager) |
| | 35 | | { |
| 0 | 36 | | _deviceManager = deviceManager; |
| 0 | 37 | | _sessionManager = sessionManager; |
| 0 | 38 | | } |
| | 39 | |
|
| | 40 | | /// <summary> |
| | 41 | | /// Get Devices. |
| | 42 | | /// </summary> |
| | 43 | | /// <param name="userId">Gets or sets the user identifier.</param> |
| | 44 | | /// <response code="200">Devices retrieved.</response> |
| | 45 | | /// <returns>An <see cref="OkResult"/> containing the list of devices.</returns> |
| | 46 | | [HttpGet] |
| | 47 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 48 | | public ActionResult<QueryResult<DeviceInfoDto>> GetDevices([FromQuery] Guid? userId) |
| | 49 | | { |
| 0 | 50 | | userId = RequestHelpers.GetUserId(User, userId); |
| 0 | 51 | | return _deviceManager.GetDevicesForUser(userId); |
| | 52 | | } |
| | 53 | |
|
| | 54 | | /// <summary> |
| | 55 | | /// Get info for a device. |
| | 56 | | /// </summary> |
| | 57 | | /// <param name="id">Device Id.</param> |
| | 58 | | /// <response code="200">Device info retrieved.</response> |
| | 59 | | /// <response code="404">Device not found.</response> |
| | 60 | | /// <returns>An <see cref="OkResult"/> containing the device info on success, or a <see cref="NotFoundResult"/> if t |
| | 61 | | [HttpGet("Info")] |
| | 62 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 63 | | [ProducesResponseType(StatusCodes.Status404NotFound)] |
| | 64 | | public ActionResult<DeviceInfoDto> GetDeviceInfo([FromQuery, Required] string id) |
| | 65 | | { |
| 0 | 66 | | var deviceInfo = _deviceManager.GetDevice(id); |
| 0 | 67 | | if (deviceInfo is null) |
| | 68 | | { |
| 0 | 69 | | return NotFound(); |
| | 70 | | } |
| | 71 | |
|
| 0 | 72 | | return deviceInfo; |
| | 73 | | } |
| | 74 | |
|
| | 75 | | /// <summary> |
| | 76 | | /// Get options for a device. |
| | 77 | | /// </summary> |
| | 78 | | /// <param name="id">Device Id.</param> |
| | 79 | | /// <response code="200">Device options retrieved.</response> |
| | 80 | | /// <response code="404">Device not found.</response> |
| | 81 | | /// <returns>An <see cref="OkResult"/> containing the device info on success, or a <see cref="NotFoundResult"/> if t |
| | 82 | | [HttpGet("Options")] |
| | 83 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 84 | | [ProducesResponseType(StatusCodes.Status404NotFound)] |
| | 85 | | public ActionResult<DeviceOptionsDto> GetDeviceOptions([FromQuery, Required] string id) |
| | 86 | | { |
| 0 | 87 | | var deviceInfo = _deviceManager.GetDeviceOptions(id); |
| 0 | 88 | | if (deviceInfo is null) |
| | 89 | | { |
| 0 | 90 | | return NotFound(); |
| | 91 | | } |
| | 92 | |
|
| 0 | 93 | | return deviceInfo; |
| | 94 | | } |
| | 95 | |
|
| | 96 | | /// <summary> |
| | 97 | | /// Update device options. |
| | 98 | | /// </summary> |
| | 99 | | /// <param name="id">Device Id.</param> |
| | 100 | | /// <param name="deviceOptions">Device Options.</param> |
| | 101 | | /// <response code="204">Device options updated.</response> |
| | 102 | | /// <returns>A <see cref="NoContentResult"/>.</returns> |
| | 103 | | [HttpPost("Options")] |
| | 104 | | [ProducesResponseType(StatusCodes.Status204NoContent)] |
| | 105 | | public async Task<ActionResult> UpdateDeviceOptions( |
| | 106 | | [FromQuery, Required] string id, |
| | 107 | | [FromBody, Required] DeviceOptionsDto deviceOptions) |
| | 108 | | { |
| | 109 | | await _deviceManager.UpdateDeviceOptions(id, deviceOptions.CustomName).ConfigureAwait(false); |
| | 110 | | return NoContent(); |
| | 111 | | } |
| | 112 | |
|
| | 113 | | /// <summary> |
| | 114 | | /// Deletes a device. |
| | 115 | | /// </summary> |
| | 116 | | /// <param name="id">Device Id.</param> |
| | 117 | | /// <response code="204">Device deleted.</response> |
| | 118 | | /// <response code="404">Device not found.</response> |
| | 119 | | /// <returns>A <see cref="NoContentResult"/> on success, or a <see cref="NotFoundResult"/> if the device could not b |
| | 120 | | [HttpDelete] |
| | 121 | | [ProducesResponseType(StatusCodes.Status204NoContent)] |
| | 122 | | [ProducesResponseType(StatusCodes.Status404NotFound)] |
| | 123 | | public async Task<ActionResult> DeleteDevice([FromQuery, Required] string id) |
| | 124 | | { |
| | 125 | | var existingDevice = _deviceManager.GetDevice(id); |
| | 126 | | if (existingDevice is null) |
| | 127 | | { |
| | 128 | | return NotFound(); |
| | 129 | | } |
| | 130 | |
|
| | 131 | | var sessions = _deviceManager.GetDevices(new DeviceQuery { DeviceId = id }); |
| | 132 | |
|
| | 133 | | foreach (var session in sessions.Items) |
| | 134 | | { |
| | 135 | | await _sessionManager.Logout(session).ConfigureAwait(false); |
| | 136 | | } |
| | 137 | |
|
| | 138 | | return NoContent(); |
| | 139 | | } |
| | 140 | | } |