mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
81 lines
No EOL
2.3 KiB
C#
81 lines
No EOL
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Ombi.Store.Context;
|
|
using Ombi.Store.Entities.Requests;
|
|
|
|
namespace Ombi.Store.Repository.Requests
|
|
{
|
|
public class MovieRequestRepository : Repository<MovieRequests>, IMovieRequestRepository
|
|
{
|
|
public MovieRequestRepository(IOmbiContext ctx) : base(ctx)
|
|
{
|
|
Db = ctx;
|
|
}
|
|
|
|
private IOmbiContext Db { get; }
|
|
|
|
public async Task<MovieRequests> GetRequestAsync(int theMovieDbId)
|
|
{
|
|
try
|
|
{
|
|
return await Db.MovieRequests.Where(x => x.TheMovieDbId == theMovieDbId)
|
|
.Include(x => x.RequestedUser)
|
|
.FirstOrDefaultAsync();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Console.WriteLine(e);
|
|
throw;
|
|
}
|
|
|
|
}
|
|
|
|
public IQueryable<MovieRequests> GetAll(string userId)
|
|
{
|
|
return GetWithUser().Where(x => x.RequestedUserId == userId);
|
|
}
|
|
|
|
public MovieRequests GetRequest(int theMovieDbId)
|
|
{
|
|
return Db.MovieRequests.Where(x => x.TheMovieDbId == theMovieDbId)
|
|
.Include(x => x.RequestedUser)
|
|
.FirstOrDefault();
|
|
}
|
|
|
|
public IQueryable<MovieRequests> GetWithUser()
|
|
{
|
|
return Db.MovieRequests
|
|
.Include(x => x.RequestedUser)
|
|
.ThenInclude(x => x.NotificationUserIds)
|
|
.AsQueryable();
|
|
}
|
|
|
|
|
|
public IQueryable<MovieRequests> GetWithUser(string userId)
|
|
{
|
|
return Db.MovieRequests
|
|
.Where(x => x.RequestedUserId == userId)
|
|
.Include(x => x.RequestedUser)
|
|
.ThenInclude(x => x.NotificationUserIds)
|
|
.AsQueryable();
|
|
}
|
|
|
|
public async Task Update(MovieRequests request)
|
|
{
|
|
if (Db.Entry(request).State == EntityState.Detached)
|
|
{
|
|
Db.MovieRequests.Attach(request);
|
|
Db.Update(request);
|
|
}
|
|
await Db.SaveChangesAsync();
|
|
}
|
|
|
|
public async Task Save()
|
|
{
|
|
await Db.SaveChangesAsync();
|
|
}
|
|
}
|
|
} |