| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Collections.Immutable; |
| | 4 | | using System.Linq; |
| | 5 | | using Jellyfin.Data.Enums; |
| | 6 | | using Jellyfin.Database.Implementations; |
| | 7 | | using Jellyfin.Database.Implementations.Entities; |
| | 8 | | using Jellyfin.Extensions; |
| | 9 | | using MediaBrowser.Controller.Entities; |
| | 10 | | using MediaBrowser.Controller.Persistence; |
| | 11 | | using Microsoft.EntityFrameworkCore; |
| | 12 | |
|
| | 13 | | namespace Jellyfin.Server.Implementations.Item; |
| | 14 | | #pragma warning disable RS0030 // Do not use banned APIs |
| | 15 | | #pragma warning disable CA1304 // Specify CultureInfo |
| | 16 | | #pragma warning disable CA1311 // Specify a culture or use an invariant version |
| | 17 | | #pragma warning disable CA1862 // Use the 'StringComparison' method overloads to perform case-insensitive string compari |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// Manager for handling people. |
| | 21 | | /// </summary> |
| | 22 | | /// <param name="dbProvider">Efcore Factory.</param> |
| | 23 | | /// <param name="itemTypeLookup">Items lookup service.</param> |
| | 24 | | /// <remarks> |
| | 25 | | /// Initializes a new instance of the <see cref="PeopleRepository"/> class. |
| | 26 | | /// </remarks> |
| | 27 | | public class PeopleRepository(IDbContextFactory<JellyfinDbContext> dbProvider, IItemTypeLookup itemTypeLookup) : IPeople |
| | 28 | | { |
| 21 | 29 | | private readonly IDbContextFactory<JellyfinDbContext> _dbProvider = dbProvider; |
| | 30 | |
|
| | 31 | | /// <inheritdoc/> |
| | 32 | | public IReadOnlyList<PersonInfo> GetPeople(InternalPeopleQuery filter) |
| | 33 | | { |
| 0 | 34 | | using var context = _dbProvider.CreateDbContext(); |
| 0 | 35 | | var dbQuery = TranslateQuery(context.Peoples.AsNoTracking(), context, filter); |
| | 36 | |
|
| | 37 | | // dbQuery = dbQuery.OrderBy(e => e.ListOrder); |
| 0 | 38 | | if (filter.Limit > 0) |
| | 39 | | { |
| 0 | 40 | | dbQuery = dbQuery.Take(filter.Limit); |
| | 41 | | } |
| | 42 | |
|
| | 43 | | // Include PeopleBaseItemMap |
| 0 | 44 | | if (!filter.ItemId.IsEmpty()) |
| | 45 | | { |
| 0 | 46 | | dbQuery = dbQuery.Include(p => p.BaseItems!.Where(m => m.ItemId == filter.ItemId)); |
| | 47 | | } |
| | 48 | |
|
| 0 | 49 | | return dbQuery.AsEnumerable().Select(Map).ToArray(); |
| 0 | 50 | | } |
| | 51 | |
|
| | 52 | | /// <inheritdoc/> |
| | 53 | | public IReadOnlyList<string> GetPeopleNames(InternalPeopleQuery filter) |
| | 54 | | { |
| 0 | 55 | | using var context = _dbProvider.CreateDbContext(); |
| 0 | 56 | | var dbQuery = TranslateQuery(context.Peoples.AsNoTracking(), context, filter); |
| | 57 | |
|
| | 58 | | // dbQuery = dbQuery.OrderBy(e => e.ListOrder); |
| 0 | 59 | | if (filter.Limit > 0) |
| | 60 | | { |
| 0 | 61 | | dbQuery = dbQuery.Take(filter.Limit); |
| | 62 | | } |
| | 63 | |
|
| 0 | 64 | | return dbQuery.Select(e => e.Name).ToArray(); |
| 0 | 65 | | } |
| | 66 | |
|
| | 67 | | /// <inheritdoc /> |
| | 68 | | public void UpdatePeople(Guid itemId, IReadOnlyList<PersonInfo> people) |
| | 69 | | { |
| 0 | 70 | | using var context = _dbProvider.CreateDbContext(); |
| 0 | 71 | | using var transaction = context.Database.BeginTransaction(); |
| | 72 | |
|
| 0 | 73 | | context.PeopleBaseItemMap.Where(e => e.ItemId == itemId).ExecuteDelete(); |
| | 74 | | // TODO: yes for __SOME__ reason there can be duplicates. |
| 0 | 75 | | foreach (var item in people.DistinctBy(e => e.Id)) |
| | 76 | | { |
| 0 | 77 | | var personEntity = Map(item); |
| 0 | 78 | | var existingEntity = context.Peoples.FirstOrDefault(e => e.Id == personEntity.Id); |
| 0 | 79 | | if (existingEntity is null) |
| | 80 | | { |
| 0 | 81 | | context.Peoples.Add(personEntity); |
| 0 | 82 | | existingEntity = personEntity; |
| | 83 | | } |
| | 84 | |
|
| 0 | 85 | | context.PeopleBaseItemMap.Add(new PeopleBaseItemMap() |
| 0 | 86 | | { |
| 0 | 87 | | Item = null!, |
| 0 | 88 | | ItemId = itemId, |
| 0 | 89 | | People = existingEntity, |
| 0 | 90 | | PeopleId = existingEntity.Id, |
| 0 | 91 | | ListOrder = item.SortOrder, |
| 0 | 92 | | SortOrder = item.SortOrder, |
| 0 | 93 | | Role = item.Role |
| 0 | 94 | | }); |
| | 95 | | } |
| | 96 | |
|
| 0 | 97 | | context.SaveChanges(); |
| 0 | 98 | | transaction.Commit(); |
| 0 | 99 | | } |
| | 100 | |
|
| | 101 | | private PersonInfo Map(People people) |
| | 102 | | { |
| 0 | 103 | | var mapping = people.BaseItems?.FirstOrDefault(); |
| 0 | 104 | | var personInfo = new PersonInfo() |
| 0 | 105 | | { |
| 0 | 106 | | Id = people.Id, |
| 0 | 107 | | Name = people.Name, |
| 0 | 108 | | Role = mapping?.Role, |
| 0 | 109 | | SortOrder = mapping?.SortOrder |
| 0 | 110 | | }; |
| 0 | 111 | | if (Enum.TryParse<PersonKind>(people.PersonType, out var kind)) |
| | 112 | | { |
| 0 | 113 | | personInfo.Type = kind; |
| | 114 | | } |
| | 115 | |
|
| 0 | 116 | | return personInfo; |
| | 117 | | } |
| | 118 | |
|
| | 119 | | private People Map(PersonInfo people) |
| | 120 | | { |
| 0 | 121 | | var personInfo = new People() |
| 0 | 122 | | { |
| 0 | 123 | | Name = people.Name, |
| 0 | 124 | | PersonType = people.Type.ToString(), |
| 0 | 125 | | Id = people.Id, |
| 0 | 126 | | }; |
| | 127 | |
|
| 0 | 128 | | return personInfo; |
| | 129 | | } |
| | 130 | |
|
| | 131 | | private IQueryable<People> TranslateQuery(IQueryable<People> query, JellyfinDbContext context, InternalPeopleQuery f |
| | 132 | | { |
| 0 | 133 | | if (filter.User is not null && filter.IsFavorite.HasValue) |
| | 134 | | { |
| 0 | 135 | | var personType = itemTypeLookup.BaseItemKindNames[BaseItemKind.Person]; |
| 0 | 136 | | query = query.Where(e => e.PersonType == personType) |
| 0 | 137 | | .Where(e => context.BaseItems.Where(d => d.UserData!.Any(w => w.IsFavorite == filter.IsFavorite && w.Use |
| 0 | 138 | | .Select(f => f.Name).Contains(e.Name)); |
| | 139 | | } |
| | 140 | |
|
| 0 | 141 | | if (!filter.ItemId.IsEmpty()) |
| | 142 | | { |
| 0 | 143 | | query = query.Where(e => e.BaseItems!.Any(w => w.ItemId.Equals(filter.ItemId))); |
| | 144 | | } |
| | 145 | |
|
| 0 | 146 | | if (!filter.AppearsInItemId.IsEmpty()) |
| | 147 | | { |
| 0 | 148 | | query = query.Where(e => e.BaseItems!.Any(w => w.ItemId.Equals(filter.AppearsInItemId))); |
| | 149 | | } |
| | 150 | |
|
| 0 | 151 | | var queryPersonTypes = filter.PersonTypes.Where(IsValidPersonType).ToList(); |
| 0 | 152 | | if (queryPersonTypes.Count > 0) |
| | 153 | | { |
| 0 | 154 | | query = query.Where(e => queryPersonTypes.Contains(e.PersonType)); |
| | 155 | | } |
| | 156 | |
|
| 0 | 157 | | var queryExcludePersonTypes = filter.ExcludePersonTypes.Where(IsValidPersonType).ToList(); |
| | 158 | |
|
| 0 | 159 | | if (queryExcludePersonTypes.Count > 0) |
| | 160 | | { |
| 0 | 161 | | query = query.Where(e => !queryPersonTypes.Contains(e.PersonType)); |
| | 162 | | } |
| | 163 | |
|
| 0 | 164 | | if (filter.MaxListOrder.HasValue && !filter.ItemId.IsEmpty()) |
| | 165 | | { |
| 0 | 166 | | query = query.Where(e => e.BaseItems!.First(w => w.ItemId == filter.ItemId).ListOrder <= filter.MaxListOrder |
| | 167 | | } |
| | 168 | |
|
| 0 | 169 | | if (!string.IsNullOrWhiteSpace(filter.NameContains)) |
| | 170 | | { |
| 0 | 171 | | var nameContainsUpper = filter.NameContains.ToUpper(); |
| 0 | 172 | | query = query.Where(e => e.Name.ToUpper().Contains(nameContainsUpper)); |
| | 173 | | } |
| | 174 | |
|
| 0 | 175 | | return query; |
| | 176 | | } |
| | 177 | |
|
| | 178 | | private bool IsAlphaNumeric(string str) |
| | 179 | | { |
| 0 | 180 | | if (string.IsNullOrWhiteSpace(str)) |
| | 181 | | { |
| 0 | 182 | | return false; |
| | 183 | | } |
| | 184 | |
|
| 0 | 185 | | for (int i = 0; i < str.Length; i++) |
| | 186 | | { |
| 0 | 187 | | if (!char.IsLetter(str[i]) && !char.IsNumber(str[i])) |
| | 188 | | { |
| 0 | 189 | | return false; |
| | 190 | | } |
| | 191 | | } |
| | 192 | |
|
| 0 | 193 | | return true; |
| | 194 | | } |
| | 195 | |
|
| | 196 | | private bool IsValidPersonType(string value) |
| | 197 | | { |
| 0 | 198 | | return IsAlphaNumeric(value); |
| | 199 | | } |
| | 200 | | } |