| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Collections.Immutable; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Threading; |
| | 6 | | using Jellyfin.Database.Implementations; |
| | 7 | | using Jellyfin.Database.Implementations.Entities; |
| | 8 | | using MediaBrowser.Controller.Persistence; |
| | 9 | | using MediaBrowser.Model.Entities; |
| | 10 | | using Microsoft.EntityFrameworkCore; |
| | 11 | |
|
| | 12 | | namespace Jellyfin.Server.Implementations.Item; |
| | 13 | |
|
| | 14 | | /// <summary> |
| | 15 | | /// Manager for handling Media Attachments. |
| | 16 | | /// </summary> |
| | 17 | | /// <param name="dbProvider">Efcore Factory.</param> |
| | 18 | | public class MediaAttachmentRepository(IDbContextFactory<JellyfinDbContext> dbProvider) : IMediaAttachmentRepository |
| | 19 | | { |
| | 20 | | /// <inheritdoc /> |
| | 21 | | public void SaveMediaAttachments( |
| | 22 | | Guid id, |
| | 23 | | IReadOnlyList<MediaAttachment> attachments, |
| | 24 | | CancellationToken cancellationToken) |
| | 25 | | { |
| 0 | 26 | | using var context = dbProvider.CreateDbContext(); |
| 0 | 27 | | using var transaction = context.Database.BeginTransaction(); |
| 0 | 28 | | context.AttachmentStreamInfos.Where(e => e.ItemId.Equals(id)).ExecuteDelete(); |
| 0 | 29 | | context.AttachmentStreamInfos.AddRange(attachments.Select(e => Map(e, id))); |
| 0 | 30 | | context.SaveChanges(); |
| 0 | 31 | | transaction.Commit(); |
| 0 | 32 | | } |
| | 33 | |
|
| | 34 | | /// <inheritdoc /> |
| | 35 | | public IReadOnlyList<MediaAttachment> GetMediaAttachments(MediaAttachmentQuery filter) |
| | 36 | | { |
| 0 | 37 | | using var context = dbProvider.CreateDbContext(); |
| 0 | 38 | | var query = context.AttachmentStreamInfos.AsNoTracking().Where(e => e.ItemId.Equals(filter.ItemId)); |
| 0 | 39 | | if (filter.Index.HasValue) |
| | 40 | | { |
| 0 | 41 | | query = query.Where(e => e.Index == filter.Index); |
| | 42 | | } |
| | 43 | |
|
| 0 | 44 | | return query.AsEnumerable().Select(Map).ToArray(); |
| 0 | 45 | | } |
| | 46 | |
|
| | 47 | | private MediaAttachment Map(AttachmentStreamInfo attachment) |
| | 48 | | { |
| 0 | 49 | | return new MediaAttachment() |
| 0 | 50 | | { |
| 0 | 51 | | Codec = attachment.Codec, |
| 0 | 52 | | CodecTag = attachment.CodecTag, |
| 0 | 53 | | Comment = attachment.Comment, |
| 0 | 54 | | FileName = attachment.Filename, |
| 0 | 55 | | Index = attachment.Index, |
| 0 | 56 | | MimeType = attachment.MimeType, |
| 0 | 57 | | }; |
| | 58 | | } |
| | 59 | |
|
| | 60 | | private AttachmentStreamInfo Map(MediaAttachment attachment, Guid id) |
| | 61 | | { |
| 0 | 62 | | return new AttachmentStreamInfo() |
| 0 | 63 | | { |
| 0 | 64 | | Codec = attachment.Codec, |
| 0 | 65 | | CodecTag = attachment.CodecTag, |
| 0 | 66 | | Comment = attachment.Comment, |
| 0 | 67 | | Filename = attachment.FileName, |
| 0 | 68 | | Index = attachment.Index, |
| 0 | 69 | | MimeType = attachment.MimeType, |
| 0 | 70 | | ItemId = id, |
| 0 | 71 | | Item = null! |
| 0 | 72 | | }; |
| | 73 | | } |
| | 74 | | } |