mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-13 08:42:57 -07:00
Added the Emby Cacher, we now cache the Emby data!
This commit is contained in:
parent
6d276a3c3d
commit
012a82ca2d
19 changed files with 441 additions and 20 deletions
112
src/Ombi.Store/Repository/EmbyContentRepository.cs
Normal file
112
src/Ombi.Store/Repository/EmbyContentRepository.cs
Normal file
|
@ -0,0 +1,112 @@
|
|||
#region Copyright
|
||||
// /************************************************************************
|
||||
// Copyright (c) 2017 Jamie Rees
|
||||
// File: PlexContentRepository.cs
|
||||
// Created By: Jamie Rees
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining
|
||||
// a copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to
|
||||
// permit persons to whom the Software is furnished to do so, subject to
|
||||
// the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be
|
||||
// included in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
// ************************************************************************/
|
||||
#endregion
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Ombi.Store.Context;
|
||||
using Ombi.Store.Entities;
|
||||
|
||||
namespace Ombi.Store.Repository
|
||||
{
|
||||
public class EmbyContentRepository : IEmbyContentRepository
|
||||
{
|
||||
|
||||
public EmbyContentRepository(IOmbiContext db)
|
||||
{
|
||||
Db = db;
|
||||
}
|
||||
|
||||
private IOmbiContext Db { get; }
|
||||
|
||||
public async Task<IEnumerable<EmbyContent>> GetAll()
|
||||
{
|
||||
return await Db.EmbyContent.ToListAsync();
|
||||
}
|
||||
|
||||
public async Task AddRange(IEnumerable<EmbyContent> content)
|
||||
{
|
||||
Db.EmbyContent.AddRange(content);
|
||||
await Db.SaveChangesAsync();
|
||||
}
|
||||
|
||||
public async Task<bool> ContentExists(string providerId)
|
||||
{
|
||||
return await Db.EmbyContent.AnyAsync(x => x.ProviderId == providerId);
|
||||
}
|
||||
|
||||
public async Task<EmbyContent> Add(EmbyContent content)
|
||||
{
|
||||
await Db.EmbyContent.AddAsync(content);
|
||||
await Db.SaveChangesAsync();
|
||||
return content;
|
||||
}
|
||||
|
||||
public async Task<EmbyContent> Get(string providerId)
|
||||
{
|
||||
return await Db.EmbyContent.FirstOrDefaultAsync(x => x.ProviderId == providerId);
|
||||
}
|
||||
|
||||
public IQueryable<EmbyContent> Get()
|
||||
{
|
||||
return Db.EmbyContent.AsQueryable();
|
||||
}
|
||||
|
||||
public async Task<EmbyContent> GetByEmbyId(string embyId)
|
||||
{
|
||||
return await Db.EmbyContent./*Include(x => x.Seasons).*/FirstOrDefaultAsync(x => x.EmbyId == embyId);
|
||||
}
|
||||
|
||||
public async Task Update(EmbyContent existingContent)
|
||||
{
|
||||
Db.EmbyContent.Update(existingContent);
|
||||
await Db.SaveChangesAsync();
|
||||
}
|
||||
|
||||
//public IQueryable<PlexEpisode> GetAllEpisodes()
|
||||
//{
|
||||
// return Db.PlexEpisode.AsQueryable();
|
||||
//}
|
||||
|
||||
//public async Task<PlexEpisode> Add(PlexEpisode content)
|
||||
//{
|
||||
// await Db.PlexEpisode.AddAsync(content);
|
||||
// await Db.SaveChangesAsync();
|
||||
// return content;
|
||||
//}
|
||||
//public async Task<PlexEpisode> GetEpisodeByKey(int key)
|
||||
//{
|
||||
// return await Db.PlexEpisode.FirstOrDefaultAsync(x => x.Key == key);
|
||||
//}
|
||||
//public async Task AddRange(IEnumerable<PlexEpisode> content)
|
||||
//{
|
||||
// Db.PlexEpisode.AddRange(content);
|
||||
// await Db.SaveChangesAsync();
|
||||
//}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue