Lidarr/NzbDrone.Core/MediaFiles/MediaFileRepository.cs

46 lines
1.4 KiB
C#
Raw Normal View History

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