1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/MediaFiles/MediaFileRepository.cs

46 lines
1.3 KiB
C#
Raw Normal View History

2013-03-01 10:03:41 +03:00
using System.Collections.Generic;
using System.Linq;
2013-05-06 00:24:33 +03:00
using NzbDrone.Common.Messaging;
2013-03-01 10:03:41 +03:00
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.MediaFiles
{
public interface IMediaFileRepository : IBasicRepository<EpisodeFile>
{
EpisodeFile GetFileByPath(string path);
List<EpisodeFile> GetFilesBySeries(int seriesId);
List<EpisodeFile> GetFilesBySeason(int seriesId, int seasonNumber);
2013-06-02 22:29:00 +03:00
bool Exists(string path);
2013-03-01 10:03:41 +03:00
}
public class MediaFileRepository : BasicRepository<EpisodeFile>, IMediaFileRepository
{
2013-05-06 00:24:33 +03:00
public MediaFileRepository(IDatabase database, IMessageAggregator messageAggregator)
: base(database, messageAggregator)
2013-03-01 10:03:41 +03:00
{
}
public EpisodeFile GetFileByPath(string path)
{
2013-03-27 06:44:52 +03:00
return Query.SingleOrDefault(c => c.Path == path);
2013-03-01 10:03:41 +03:00
}
2013-06-02 22:29:00 +03:00
public bool Exists(string path)
{
return Query.Any(c => c.Path == path);
}
2013-03-01 10:03:41 +03:00
public List<EpisodeFile> GetFilesBySeries(int seriesId)
{
2013-03-27 06:44:52 +03:00
return Query.Where(c => c.SeriesId == seriesId).ToList();
2013-03-01 10:03:41 +03:00
}
public List<EpisodeFile> GetFilesBySeason(int seriesId, int seasonNumber)
{
2013-03-27 06:44:52 +03:00
return Query.Where(c => c.SeriesId == seriesId && c.SeasonNumber == seasonNumber).ToList();
2013-03-01 10:03:41 +03:00
}
}
}