< Summary - Jellyfin

Information
Class: Jellyfin.Database.Implementations.JellyfinDbContext
Assembly: Jellyfin.Database.Implementations
File(s): /srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Implementations/JellyfinDbContext.cs
Line coverage
78%
Covered lines: 36
Uncovered lines: 10
Coverable lines: 46
Total lines: 282
Line coverage: 78.2%
Branch coverage
50%
Covered branches: 1
Total branches: 2
Branch coverage: 50%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

File(s)

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Implementations/JellyfinDbContext.cs

#LineLine coverage
 1using System;
 2using System.Linq;
 3using Jellyfin.Database.Implementations.Entities;
 4using Jellyfin.Database.Implementations.Entities.Security;
 5using Jellyfin.Database.Implementations.Interfaces;
 6using Microsoft.EntityFrameworkCore;
 7using Microsoft.Extensions.Logging;
 8
 9namespace 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>
 3718public 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>
 023    public DbSet<AccessSchedule> AccessSchedules => Set<AccessSchedule>();
 24
 25    /// <summary>
 26    /// Gets the <see cref="DbSet{TEntity}"/> containing the activity logs.
 27    /// </summary>
 3528    public DbSet<ActivityLog> ActivityLogs => Set<ActivityLog>();
 29
 30    /// <summary>
 31    /// Gets the <see cref="DbSet{TEntity}"/> containing the API keys.
 32    /// </summary>
 033    public DbSet<ApiKey> ApiKeys => Set<ApiKey>();
 34
 35    /// <summary>
 36    /// Gets the <see cref="DbSet{TEntity}"/> containing the devices.
 37    /// </summary>
 3638    public DbSet<Device> Devices => Set<Device>();
 39
 40    /// <summary>
 41    /// Gets the <see cref="DbSet{TEntity}"/> containing the device options.
 42    /// </summary>
 2143    public DbSet<DeviceOptions> DeviceOptions => Set<DeviceOptions>();
 44
 45    /// <summary>
 46    /// Gets the <see cref="DbSet{TEntity}"/> containing the display preferences.
 47    /// </summary>
 048    public DbSet<DisplayPreferences> DisplayPreferences => Set<DisplayPreferences>();
 49
 50    /// <summary>
 51    /// Gets the <see cref="DbSet{TEntity}"/> containing the image infos.
 52    /// </summary>
 053    public DbSet<ImageInfo> ImageInfos => Set<ImageInfo>();
 54
 55    /// <summary>
 56    /// Gets the <see cref="DbSet{TEntity}"/> containing the item display preferences.
 57    /// </summary>
 258    public DbSet<ItemDisplayPreferences> ItemDisplayPreferences => Set<ItemDisplayPreferences>();
 59
 60    /// <summary>
 61    /// Gets the <see cref="DbSet{TEntity}"/> containing the custom item display preferences.
 62    /// </summary>
 263    public DbSet<CustomItemDisplayPreferences> CustomItemDisplayPreferences => Set<CustomItemDisplayPreferences>();
 64
 65    /// <summary>
 66    /// Gets the <see cref="DbSet{TEntity}"/> containing the permissions.
 67    /// </summary>
 068    public DbSet<Permission> Permissions => Set<Permission>();
 69
 70    /// <summary>
 71    /// Gets the <see cref="DbSet{TEntity}"/> containing the preferences.
 72    /// </summary>
 073    public DbSet<Preference> Preferences => Set<Preference>();
 74
 75    /// <summary>
 76    /// Gets the <see cref="DbSet{TEntity}"/> containing the users.
 77    /// </summary>
 7578    public DbSet<User> Users => Set<User>();
 79
 80    /// <summary>
 81    /// Gets the <see cref="DbSet{TEntity}"/> containing the trickplay metadata.
 82    /// </summary>
 283    public DbSet<TrickplayInfo> TrickplayInfos => Set<TrickplayInfo>();
 84
 85    /// <summary>
 86    /// Gets the <see cref="DbSet{TEntity}"/> containing the media segments.
 87    /// </summary>
 288    public DbSet<MediaSegment> MediaSegments => Set<MediaSegment>();
 89
 90    /// <summary>
 91    /// Gets the <see cref="DbSet{TEntity}"/> containing the user data.
 92    /// </summary>
 293    public DbSet<UserData> UserData => Set<UserData>();
 94
 95    /// <summary>
 96    /// Gets the <see cref="DbSet{TEntity}"/> containing the user data.
 97    /// </summary>
 8898    public DbSet<AncestorId> AncestorIds => Set<AncestorId>();
 99
 100    /// <summary>
 101    /// Gets the <see cref="DbSet{TEntity}"/> containing the user data.
 102    /// </summary>
 2103    public DbSet<AttachmentStreamInfo> AttachmentStreamInfos => Set<AttachmentStreamInfo>();
 104
 105    /// <summary>
 106    /// Gets the <see cref="DbSet{TEntity}"/> containing the user data.
 107    /// </summary>
 649108    public DbSet<BaseItemEntity> BaseItems => Set<BaseItemEntity>();
 109
 110    /// <summary>
 111    /// Gets the <see cref="DbSet{TEntity}"/> containing the user data.
 112    /// </summary>
 2113    public DbSet<Chapter> Chapters => Set<Chapter>();
 114
 115    /// <summary>
 116    /// Gets the <see cref="DbSet{TEntity}"/>.
 117    /// </summary>
 11118    public DbSet<ItemValue> ItemValues => Set<ItemValue>();
 119
 120    /// <summary>
 121    /// Gets the <see cref="DbSet{TEntity}"/>.
 122    /// </summary>
 130123    public DbSet<ItemValueMap> ItemValuesMap => Set<ItemValueMap>();
 124
 125    /// <summary>
 126    /// Gets the <see cref="DbSet{TEntity}"/>.
 127    /// </summary>
 2128    public DbSet<MediaStreamInfo> MediaStreamInfos => Set<MediaStreamInfo>();
 129
 130    /// <summary>
 131    /// Gets the <see cref="DbSet{TEntity}"/>.
 132    /// </summary>
 2133    public DbSet<People> Peoples => Set<People>();
 134
 135    /// <summary>
 136    /// Gets the <see cref="DbSet{TEntity}"/>.
 137    /// </summary>
 2138    public DbSet<PeopleBaseItemMap> PeopleBaseItemMap => Set<PeopleBaseItemMap>();
 139
 140    /// <summary>
 141    /// Gets the <see cref="DbSet{TEntity}"/> containing the referenced Providers with ids.
 142    /// </summary>
 33143    public DbSet<BaseItemProvider> BaseItemProviders => Set<BaseItemProvider>();
 144
 145    /// <summary>
 146    /// Gets the <see cref="DbSet{TEntity}"/>.
 147    /// </summary>
 2148    public DbSet<BaseItemImageInfo> BaseItemImageInfos => Set<BaseItemImageInfo>();
 149
 150    /// <summary>
 151    /// Gets the <see cref="DbSet{TEntity}"/>.
 152    /// </summary>
 2153    public DbSet<BaseItemMetadataField> BaseItemMetadataFields => Set<BaseItemMetadataField>();
 154
 155    /// <summary>
 156    /// Gets the <see cref="DbSet{TEntity}"/>.
 157    /// </summary>
 2158    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    {
 180247        foreach (var saveEntity in ChangeTracker.Entries()
 90248                     .Where(e => e.State == EntityState.Modified)
 90249                     .Select(entry => entry.Entity)
 90250                     .OfType<IHasConcurrencyToken>())
 251        {
 0252            saveEntity.OnSavingChanges();
 253        }
 254
 255        try
 256        {
 90257            return base.SaveChanges();
 258        }
 0259        catch (Exception e)
 260        {
 0261            logger.LogError(e, "Error trying to save changes.");
 0262            throw;
 263        }
 90264    }
 265
 266    /// <inheritdoc />
 267    protected override void OnModelCreating(ModelBuilder modelBuilder)
 268    {
 2269        jellyfinDatabaseProvider.OnModelCreating(modelBuilder);
 2270        base.OnModelCreating(modelBuilder);
 271
 272        // Configuration for each entity is in its own class inside 'ModelConfiguration'.
 2273        modelBuilder.ApplyConfigurationsFromAssembly(typeof(JellyfinDbContext).Assembly);
 2274    }
 275
 276    /// <inheritdoc />
 277    protected override void ConfigureConventions(ModelConfigurationBuilder configurationBuilder)
 278    {
 2279        jellyfinDatabaseProvider.ConfigureConventions(configurationBuilder);
 2280        base.ConfigureConventions(configurationBuilder);
 2281    }
 282}