| | 1 | | using System; |
| | 2 | | using System.Linq; |
| | 3 | | using Jellyfin.Database.Implementations.Entities; |
| | 4 | | using Jellyfin.Database.Implementations.Entities.Security; |
| | 5 | | using Jellyfin.Database.Implementations.Interfaces; |
| | 6 | | using Microsoft.EntityFrameworkCore; |
| | 7 | | using Microsoft.Extensions.Logging; |
| | 8 | |
|
| | 9 | | namespace Jellyfin.Database.Implementations; |
| | 10 | |
|
| | 11 | | /// <inheritdoc/> |
| | 12 | | /// <summary> |
| | 13 | | /// Initializes a new instance of the <see cref="JellyfinDbContext"/> class. |
| | 14 | | /// </summary> |
| | 15 | | /// <param name="options">The database context options.</param> |
| | 16 | | /// <param name="logger">Logger.</param> |
| | 17 | | /// <param name="jellyfinDatabaseProvider">The provider for the database engine specific operations.</param> |
| 37 | 18 | | public class JellyfinDbContext(DbContextOptions<JellyfinDbContext> options, ILogger<JellyfinDbContext> logger, IJellyfin |
| | 19 | | { |
| | 20 | | /// <summary> |
| | 21 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the access schedules. |
| | 22 | | /// </summary> |
| 0 | 23 | | public DbSet<AccessSchedule> AccessSchedules => Set<AccessSchedule>(); |
| | 24 | |
|
| | 25 | | /// <summary> |
| | 26 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the activity logs. |
| | 27 | | /// </summary> |
| 35 | 28 | | public DbSet<ActivityLog> ActivityLogs => Set<ActivityLog>(); |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the API keys. |
| | 32 | | /// </summary> |
| 0 | 33 | | public DbSet<ApiKey> ApiKeys => Set<ApiKey>(); |
| | 34 | |
|
| | 35 | | /// <summary> |
| | 36 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the devices. |
| | 37 | | /// </summary> |
| 36 | 38 | | public DbSet<Device> Devices => Set<Device>(); |
| | 39 | |
|
| | 40 | | /// <summary> |
| | 41 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the device options. |
| | 42 | | /// </summary> |
| 21 | 43 | | public DbSet<DeviceOptions> DeviceOptions => Set<DeviceOptions>(); |
| | 44 | |
|
| | 45 | | /// <summary> |
| | 46 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the display preferences. |
| | 47 | | /// </summary> |
| 0 | 48 | | public DbSet<DisplayPreferences> DisplayPreferences => Set<DisplayPreferences>(); |
| | 49 | |
|
| | 50 | | /// <summary> |
| | 51 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the image infos. |
| | 52 | | /// </summary> |
| 0 | 53 | | public DbSet<ImageInfo> ImageInfos => Set<ImageInfo>(); |
| | 54 | |
|
| | 55 | | /// <summary> |
| | 56 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the item display preferences. |
| | 57 | | /// </summary> |
| 2 | 58 | | public DbSet<ItemDisplayPreferences> ItemDisplayPreferences => Set<ItemDisplayPreferences>(); |
| | 59 | |
|
| | 60 | | /// <summary> |
| | 61 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the custom item display preferences. |
| | 62 | | /// </summary> |
| 2 | 63 | | public DbSet<CustomItemDisplayPreferences> CustomItemDisplayPreferences => Set<CustomItemDisplayPreferences>(); |
| | 64 | |
|
| | 65 | | /// <summary> |
| | 66 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the permissions. |
| | 67 | | /// </summary> |
| 0 | 68 | | public DbSet<Permission> Permissions => Set<Permission>(); |
| | 69 | |
|
| | 70 | | /// <summary> |
| | 71 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the preferences. |
| | 72 | | /// </summary> |
| 0 | 73 | | public DbSet<Preference> Preferences => Set<Preference>(); |
| | 74 | |
|
| | 75 | | /// <summary> |
| | 76 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the users. |
| | 77 | | /// </summary> |
| 75 | 78 | | public DbSet<User> Users => Set<User>(); |
| | 79 | |
|
| | 80 | | /// <summary> |
| | 81 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the trickplay metadata. |
| | 82 | | /// </summary> |
| 2 | 83 | | public DbSet<TrickplayInfo> TrickplayInfos => Set<TrickplayInfo>(); |
| | 84 | |
|
| | 85 | | /// <summary> |
| | 86 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the media segments. |
| | 87 | | /// </summary> |
| 2 | 88 | | public DbSet<MediaSegment> MediaSegments => Set<MediaSegment>(); |
| | 89 | |
|
| | 90 | | /// <summary> |
| | 91 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the user data. |
| | 92 | | /// </summary> |
| 2 | 93 | | public DbSet<UserData> UserData => Set<UserData>(); |
| | 94 | |
|
| | 95 | | /// <summary> |
| | 96 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the user data. |
| | 97 | | /// </summary> |
| 88 | 98 | | public DbSet<AncestorId> AncestorIds => Set<AncestorId>(); |
| | 99 | |
|
| | 100 | | /// <summary> |
| | 101 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the user data. |
| | 102 | | /// </summary> |
| 2 | 103 | | public DbSet<AttachmentStreamInfo> AttachmentStreamInfos => Set<AttachmentStreamInfo>(); |
| | 104 | |
|
| | 105 | | /// <summary> |
| | 106 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the user data. |
| | 107 | | /// </summary> |
| 649 | 108 | | public DbSet<BaseItemEntity> BaseItems => Set<BaseItemEntity>(); |
| | 109 | |
|
| | 110 | | /// <summary> |
| | 111 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the user data. |
| | 112 | | /// </summary> |
| 2 | 113 | | public DbSet<Chapter> Chapters => Set<Chapter>(); |
| | 114 | |
|
| | 115 | | /// <summary> |
| | 116 | | /// Gets the <see cref="DbSet{TEntity}"/>. |
| | 117 | | /// </summary> |
| 11 | 118 | | public DbSet<ItemValue> ItemValues => Set<ItemValue>(); |
| | 119 | |
|
| | 120 | | /// <summary> |
| | 121 | | /// Gets the <see cref="DbSet{TEntity}"/>. |
| | 122 | | /// </summary> |
| 130 | 123 | | public DbSet<ItemValueMap> ItemValuesMap => Set<ItemValueMap>(); |
| | 124 | |
|
| | 125 | | /// <summary> |
| | 126 | | /// Gets the <see cref="DbSet{TEntity}"/>. |
| | 127 | | /// </summary> |
| 2 | 128 | | public DbSet<MediaStreamInfo> MediaStreamInfos => Set<MediaStreamInfo>(); |
| | 129 | |
|
| | 130 | | /// <summary> |
| | 131 | | /// Gets the <see cref="DbSet{TEntity}"/>. |
| | 132 | | /// </summary> |
| 2 | 133 | | public DbSet<People> Peoples => Set<People>(); |
| | 134 | |
|
| | 135 | | /// <summary> |
| | 136 | | /// Gets the <see cref="DbSet{TEntity}"/>. |
| | 137 | | /// </summary> |
| 2 | 138 | | public DbSet<PeopleBaseItemMap> PeopleBaseItemMap => Set<PeopleBaseItemMap>(); |
| | 139 | |
|
| | 140 | | /// <summary> |
| | 141 | | /// Gets the <see cref="DbSet{TEntity}"/> containing the referenced Providers with ids. |
| | 142 | | /// </summary> |
| 33 | 143 | | public DbSet<BaseItemProvider> BaseItemProviders => Set<BaseItemProvider>(); |
| | 144 | |
|
| | 145 | | /// <summary> |
| | 146 | | /// Gets the <see cref="DbSet{TEntity}"/>. |
| | 147 | | /// </summary> |
| 2 | 148 | | public DbSet<BaseItemImageInfo> BaseItemImageInfos => Set<BaseItemImageInfo>(); |
| | 149 | |
|
| | 150 | | /// <summary> |
| | 151 | | /// Gets the <see cref="DbSet{TEntity}"/>. |
| | 152 | | /// </summary> |
| 2 | 153 | | public DbSet<BaseItemMetadataField> BaseItemMetadataFields => Set<BaseItemMetadataField>(); |
| | 154 | |
|
| | 155 | | /// <summary> |
| | 156 | | /// Gets the <see cref="DbSet{TEntity}"/>. |
| | 157 | | /// </summary> |
| 2 | 158 | | public DbSet<BaseItemTrailerType> BaseItemTrailerTypes => Set<BaseItemTrailerType>(); |
| | 159 | |
|
| | 160 | | /*public DbSet<Artwork> Artwork => Set<Artwork>(); |
| | 161 | |
|
| | 162 | | public DbSet<Book> Books => Set<Book>(); |
| | 163 | |
|
| | 164 | | public DbSet<BookMetadata> BookMetadata => Set<BookMetadata>(); |
| | 165 | |
|
| | 166 | | public DbSet<Chapter> Chapters => Set<Chapter>(); |
| | 167 | |
|
| | 168 | | public DbSet<Collection> Collections => Set<Collection>(); |
| | 169 | |
|
| | 170 | | public DbSet<CollectionItem> CollectionItems => Set<CollectionItem>(); |
| | 171 | |
|
| | 172 | | public DbSet<Company> Companies => Set<Company>(); |
| | 173 | |
|
| | 174 | | public DbSet<CompanyMetadata> CompanyMetadata => Set<CompanyMetadata>(); |
| | 175 | |
|
| | 176 | | public DbSet<CustomItem> CustomItems => Set<CustomItem>(); |
| | 177 | |
|
| | 178 | | public DbSet<CustomItemMetadata> CustomItemMetadata => Set<CustomItemMetadata>(); |
| | 179 | |
|
| | 180 | | public DbSet<Episode> Episodes => Set<Episode>(); |
| | 181 | |
|
| | 182 | | public DbSet<EpisodeMetadata> EpisodeMetadata => Set<EpisodeMetadata>(); |
| | 183 | |
|
| | 184 | | public DbSet<Genre> Genres => Set<Genre>(); |
| | 185 | |
|
| | 186 | | public DbSet<Group> Groups => Set<Groups>(); |
| | 187 | |
|
| | 188 | | public DbSet<Library> Libraries => Set<Library>(); |
| | 189 | |
|
| | 190 | | public DbSet<LibraryItem> LibraryItems => Set<LibraryItems>(); |
| | 191 | |
|
| | 192 | | public DbSet<LibraryRoot> LibraryRoot => Set<LibraryRoot>(); |
| | 193 | |
|
| | 194 | | public DbSet<MediaFile> MediaFiles => Set<MediaFiles>(); |
| | 195 | |
|
| | 196 | | public DbSet<MediaFileStream> MediaFileStream => Set<MediaFileStream>(); |
| | 197 | |
|
| | 198 | | public DbSet<Metadata> Metadata => Set<Metadata>(); |
| | 199 | |
|
| | 200 | | public DbSet<MetadataProvider> MetadataProviders => Set<MetadataProvider>(); |
| | 201 | |
|
| | 202 | | public DbSet<MetadataProviderId> MetadataProviderIds => Set<MetadataProviderId>(); |
| | 203 | |
|
| | 204 | | public DbSet<Movie> Movies => Set<Movie>(); |
| | 205 | |
|
| | 206 | | public DbSet<MovieMetadata> MovieMetadata => Set<MovieMetadata>(); |
| | 207 | |
|
| | 208 | | public DbSet<MusicAlbum> MusicAlbums => Set<MusicAlbum>(); |
| | 209 | |
|
| | 210 | | public DbSet<MusicAlbumMetadata> MusicAlbumMetadata => Set<MusicAlbumMetadata>(); |
| | 211 | |
|
| | 212 | | public DbSet<Person> People => Set<Person>(); |
| | 213 | |
|
| | 214 | | public DbSet<PersonRole> PersonRoles => Set<PersonRole>(); |
| | 215 | |
|
| | 216 | | public DbSet<Photo> Photo => Set<Photo>(); |
| | 217 | |
|
| | 218 | | public DbSet<PhotoMetadata> PhotoMetadata => Set<PhotoMetadata>(); |
| | 219 | |
|
| | 220 | | public DbSet<ProviderMapping> ProviderMappings => Set<ProviderMapping>(); |
| | 221 | |
|
| | 222 | | public DbSet<Rating> Ratings => Set<Rating>(); |
| | 223 | |
|
| | 224 | | /// <summary> |
| | 225 | | /// Repository for global::Jellyfin.Data.Entities.RatingSource - This is the entity to |
| | 226 | | /// store review ratings, not age ratings. |
| | 227 | | /// </summary> |
| | 228 | | public DbSet<RatingSource> RatingSources => Set<RatingSource>(); |
| | 229 | |
|
| | 230 | | public DbSet<Release> Releases => Set<Release>(); |
| | 231 | |
|
| | 232 | | public DbSet<Season> Seasons => Set<Season>(); |
| | 233 | |
|
| | 234 | | public DbSet<SeasonMetadata> SeasonMetadata => Set<SeasonMetadata>(); |
| | 235 | |
|
| | 236 | | public DbSet<Series> Series => Set<Series>(); |
| | 237 | |
|
| | 238 | | public DbSet<SeriesMetadata> SeriesMetadata => Set<SeriesMetadata(); |
| | 239 | |
|
| | 240 | | public DbSet<Track> Tracks => Set<Track>(); |
| | 241 | |
|
| | 242 | | public DbSet<TrackMetadata> TrackMetadata => Set<TrackMetadata>();*/ |
| | 243 | |
|
| | 244 | | /// <inheritdoc/> |
| | 245 | | public override int SaveChanges() |
| | 246 | | { |
| 180 | 247 | | foreach (var saveEntity in ChangeTracker.Entries() |
| 90 | 248 | | .Where(e => e.State == EntityState.Modified) |
| 90 | 249 | | .Select(entry => entry.Entity) |
| 90 | 250 | | .OfType<IHasConcurrencyToken>()) |
| | 251 | | { |
| 0 | 252 | | saveEntity.OnSavingChanges(); |
| | 253 | | } |
| | 254 | |
|
| | 255 | | try |
| | 256 | | { |
| 90 | 257 | | return base.SaveChanges(); |
| | 258 | | } |
| 0 | 259 | | catch (Exception e) |
| | 260 | | { |
| 0 | 261 | | logger.LogError(e, "Error trying to save changes."); |
| 0 | 262 | | throw; |
| | 263 | | } |
| 90 | 264 | | } |
| | 265 | |
|
| | 266 | | /// <inheritdoc /> |
| | 267 | | protected override void OnModelCreating(ModelBuilder modelBuilder) |
| | 268 | | { |
| 2 | 269 | | jellyfinDatabaseProvider.OnModelCreating(modelBuilder); |
| 2 | 270 | | base.OnModelCreating(modelBuilder); |
| | 271 | |
|
| | 272 | | // Configuration for each entity is in its own class inside 'ModelConfiguration'. |
| 2 | 273 | | modelBuilder.ApplyConfigurationsFromAssembly(typeof(JellyfinDbContext).Assembly); |
| 2 | 274 | | } |
| | 275 | |
|
| | 276 | | /// <inheritdoc /> |
| | 277 | | protected override void ConfigureConventions(ModelConfigurationBuilder configurationBuilder) |
| | 278 | | { |
| 2 | 279 | | jellyfinDatabaseProvider.ConfigureConventions(configurationBuilder); |
| 2 | 280 | | base.ConfigureConventions(configurationBuilder); |
| 2 | 281 | | } |
| | 282 | | } |