mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
add delete to multi-select
This commit is contained in:
parent
14fe4ab95c
commit
b23f976511
@ -162,6 +162,14 @@ namespace MediaBrowser.Api.Library
|
|||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Route("/Items", "DELETE", Summary = "Deletes an item from the library and file system")]
|
||||||
|
[Authenticated]
|
||||||
|
public class DeleteItems : IReturnVoid
|
||||||
|
{
|
||||||
|
[ApiMember(Name = "Ids", Description = "Ids", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "DELETE")]
|
||||||
|
public string Ids { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
[Route("/Items/Counts", "GET")]
|
[Route("/Items/Counts", "GET")]
|
||||||
[Authenticated]
|
[Authenticated]
|
||||||
public class GetItemCounts : IReturn<ItemCounts>
|
public class GetItemCounts : IReturn<ItemCounts>
|
||||||
@ -711,31 +719,53 @@ namespace MediaBrowser.Api.Library
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Deletes the specified request.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="request">The request.</param>
|
||||||
|
public void Delete(DeleteItems request)
|
||||||
|
{
|
||||||
|
var ids = string.IsNullOrWhiteSpace(request.Ids)
|
||||||
|
? new string[] { }
|
||||||
|
: request.Ids.Split(',');
|
||||||
|
|
||||||
|
var tasks = ids.Select(i =>
|
||||||
|
{
|
||||||
|
var item = _libraryManager.GetItemById(i);
|
||||||
|
var auth = _authContext.GetAuthorizationInfo(Request);
|
||||||
|
var user = _userManager.GetUserById(auth.UserId);
|
||||||
|
|
||||||
|
if (!item.CanDelete(user))
|
||||||
|
{
|
||||||
|
if (ids.Length > 1)
|
||||||
|
{
|
||||||
|
throw new SecurityException("Unauthorized access");
|
||||||
|
}
|
||||||
|
|
||||||
|
return Task.FromResult(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (item is ILiveTvRecording)
|
||||||
|
{
|
||||||
|
return _liveTv.DeleteRecording(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
return _libraryManager.DeleteItem(item);
|
||||||
|
}).ToArray();
|
||||||
|
|
||||||
|
Task.WaitAll(tasks);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes the specified request.
|
/// Deletes the specified request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="request">The request.</param>
|
/// <param name="request">The request.</param>
|
||||||
public void Delete(DeleteItem request)
|
public void Delete(DeleteItem request)
|
||||||
{
|
{
|
||||||
var item = _libraryManager.GetItemById(request.Id);
|
Delete(new DeleteItems
|
||||||
var auth = _authContext.GetAuthorizationInfo(Request);
|
|
||||||
var user = _userManager.GetUserById(auth.UserId);
|
|
||||||
|
|
||||||
if (!item.CanDelete(user))
|
|
||||||
{
|
{
|
||||||
throw new SecurityException("Unauthorized access");
|
Ids = request.Id
|
||||||
}
|
});
|
||||||
|
|
||||||
if (item is ILiveTvRecording)
|
|
||||||
{
|
|
||||||
var task = _liveTv.DeleteRecording(request.Id);
|
|
||||||
Task.WaitAll(task);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
var task = _libraryManager.DeleteItem(item);
|
|
||||||
Task.WaitAll(task);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -0,0 +1,54 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using MediaBrowser.Common.Configuration;
|
||||||
|
using MediaBrowser.Controller.LiveTv;
|
||||||
|
using MediaBrowser.Controller.MediaEncoding;
|
||||||
|
using MediaBrowser.Model.Dto;
|
||||||
|
using MediaBrowser.Model.LiveTv;
|
||||||
|
using MediaBrowser.Model.Logging;
|
||||||
|
using MediaBrowser.Model.Serialization;
|
||||||
|
|
||||||
|
namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts
|
||||||
|
{
|
||||||
|
public class SatIp : BaseTunerHost
|
||||||
|
{
|
||||||
|
public SatIp(IConfigurationManager config, ILogger logger, IJsonSerializer jsonSerializer, IMediaEncoder mediaEncoder)
|
||||||
|
: base(config, logger, jsonSerializer, mediaEncoder)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override Task<IEnumerable<ChannelInfo>> GetChannelsInternal(TunerHostInfo tuner, CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string Type
|
||||||
|
{
|
||||||
|
get { return "SatIp"; }
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override Task<List<MediaSourceInfo>> GetChannelStreamMediaSources(TunerHostInfo tuner, string channelId, CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override Task<MediaSourceInfo> GetChannelStream(TunerHostInfo tuner, string channelId, string streamId, CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override Task<bool> IsAvailableInternal(TunerHostInfo tuner, string channelId, CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override bool IsValidChannelId(string channelId)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user