2013-04-15 03:41:39 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-03-25 04:51:32 +01:00
|
|
|
|
using System.Linq;
|
2013-02-19 07:56:02 +01:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Tv
|
|
|
|
|
{
|
2013-03-24 05:16:00 +01:00
|
|
|
|
public interface ISeriesRepository : IBasicRepository<Series>
|
2013-02-19 07:56:02 +01:00
|
|
|
|
{
|
|
|
|
|
bool SeriesPathExists(string path);
|
|
|
|
|
List<Series> Search(string title);
|
2013-04-15 03:41:39 +02:00
|
|
|
|
Series FindByTitle(string cleanTitle);
|
2013-03-02 19:25:39 +01:00
|
|
|
|
Series FindByTvdbId(int tvdbId);
|
2013-03-04 06:53:02 +01:00
|
|
|
|
void SetSeriesType(int seriesId, SeriesTypes seriesTypes);
|
2013-02-19 07:56:02 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-24 05:16:00 +01:00
|
|
|
|
public class SeriesRepository : BasicRepository<Series>, ISeriesRepository
|
2013-02-19 07:56:02 +01:00
|
|
|
|
{
|
2013-03-25 04:51:32 +01:00
|
|
|
|
public SeriesRepository(IDatabase database)
|
2013-03-24 01:08:23 +01:00
|
|
|
|
: base(database)
|
2013-02-19 07:56:02 +01:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool SeriesPathExists(string path)
|
|
|
|
|
{
|
2013-03-27 04:44:52 +01:00
|
|
|
|
return Query.Any(c => c.Path == path);
|
2013-02-19 07:56:02 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<Series> Search(string title)
|
|
|
|
|
{
|
2013-03-27 04:44:52 +01:00
|
|
|
|
return Query.Where(s => s.Title.Contains(title));
|
2013-02-19 07:56:02 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-15 03:41:39 +02:00
|
|
|
|
public Series FindByTitle(string cleanTitle)
|
2013-02-19 07:56:02 +01:00
|
|
|
|
{
|
2013-04-15 03:41:39 +02:00
|
|
|
|
return Query.SingleOrDefault(s => s.CleanTitle.Equals(cleanTitle, StringComparison.InvariantCultureIgnoreCase));
|
2013-02-19 07:56:02 +01:00
|
|
|
|
}
|
2013-03-02 19:25:39 +01:00
|
|
|
|
|
|
|
|
|
public Series FindByTvdbId(int tvdbId)
|
|
|
|
|
{
|
2013-04-17 08:55:39 +02:00
|
|
|
|
return Query.SingleOrDefault(s => s.TvdbId.Equals(tvdbId));
|
2013-03-02 19:25:39 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-24 01:08:23 +01:00
|
|
|
|
public void SetSeriesType(int seriesId, SeriesTypes seriesType)
|
2013-03-02 19:25:39 +01:00
|
|
|
|
{
|
2013-03-27 07:16:55 +01:00
|
|
|
|
SetFields(new Series { Id = seriesId, SeriesType = seriesType }, s => s.SeriesType);
|
2013-03-02 19:25:39 +01:00
|
|
|
|
}
|
2013-03-31 22:25:39 +02:00
|
|
|
|
|
2013-02-19 07:56:02 +01:00
|
|
|
|
}
|
|
|
|
|
}
|