2011-01-29 07:10:22 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using SubSonic.Repository;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
|
|
|
|
public class IndexerProvider : IIndexerProvider
|
|
|
|
|
{
|
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
private readonly IRepository _sonicRepo;
|
2011-03-17 08:40:23 +01:00
|
|
|
|
private readonly IConfigProvider _configProvider;
|
2011-01-29 07:10:22 +01:00
|
|
|
|
|
2011-03-17 08:40:23 +01:00
|
|
|
|
public IndexerProvider(IRepository sonicRepo, IConfigProvider configProvider)
|
2011-01-29 07:10:22 +01:00
|
|
|
|
{
|
|
|
|
|
_sonicRepo = sonicRepo;
|
2011-03-17 08:40:23 +01:00
|
|
|
|
_configProvider = configProvider;
|
2011-01-29 07:10:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-17 08:40:23 +01:00
|
|
|
|
#region IIndexerProvider Members
|
2011-01-29 07:10:22 +01:00
|
|
|
|
|
|
|
|
|
public List<Indexer> AllIndexers()
|
|
|
|
|
{
|
|
|
|
|
return _sonicRepo.All<Indexer>().OrderBy(i => i.Order).ToList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<Indexer> EnabledIndexers()
|
|
|
|
|
{
|
|
|
|
|
return _sonicRepo.All<Indexer>().Where(i => i.Enabled).OrderBy(i => i.Order).ToList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Update(Indexer indexer)
|
|
|
|
|
{
|
|
|
|
|
_sonicRepo.Update(indexer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|