2013-04-10 23:50:56 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-02-21 07:07:34 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
2013-04-24 01:56:00 +00:00
|
|
|
|
using NzbDrone.Common.Messaging;
|
2013-02-21 16:38:31 +00:00
|
|
|
|
using NzbDrone.Core.Lifecycle;
|
2013-03-02 18:25:39 +00:00
|
|
|
|
|
2013-02-21 07:07:34 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
|
|
|
{
|
2013-05-02 01:59:09 +00:00
|
|
|
|
|
|
|
|
|
public class Indexer
|
|
|
|
|
{
|
|
|
|
|
public int DefinitionId { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public bool Enable { get; set; }
|
|
|
|
|
public IIndexerSetting Settings { get; set; }
|
|
|
|
|
public IIndexer Instance { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 07:07:34 +00:00
|
|
|
|
public interface IIndexerService
|
|
|
|
|
{
|
2013-05-02 01:59:09 +00:00
|
|
|
|
List<Indexer> All();
|
|
|
|
|
List<IIndexer> GetAvailableIndexers();
|
|
|
|
|
Indexer Get(string name);
|
2013-02-21 07:07:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-10 00:47:04 +00:00
|
|
|
|
public class IndexerService : IIndexerService, IHandle<ApplicationStartedEvent>
|
2013-02-21 07:07:34 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly IIndexerRepository _indexerRepository;
|
2013-02-21 16:38:31 +00:00
|
|
|
|
private readonly Logger _logger;
|
2013-02-21 07:07:34 +00:00
|
|
|
|
|
2013-05-02 01:59:09 +00:00
|
|
|
|
private readonly IList<IIndexer> _indexers;
|
2013-02-21 07:07:34 +00:00
|
|
|
|
|
2013-05-02 01:59:09 +00:00
|
|
|
|
public IndexerService(IIndexerRepository indexerRepository, IEnumerable<IIndexer> indexers, Logger logger)
|
2013-02-21 07:07:34 +00:00
|
|
|
|
{
|
|
|
|
|
_indexerRepository = indexerRepository;
|
2013-02-21 16:38:31 +00:00
|
|
|
|
_logger = logger;
|
2013-02-21 07:07:34 +00:00
|
|
|
|
_indexers = indexers.ToList();
|
2013-02-21 16:38:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 07:07:34 +00:00
|
|
|
|
|
2013-05-02 01:59:09 +00:00
|
|
|
|
public List<Indexer> All()
|
2013-02-21 07:07:34 +00:00
|
|
|
|
{
|
2013-05-02 01:59:09 +00:00
|
|
|
|
return _indexerRepository.All().Select(ToIndexer).ToList();
|
2013-02-21 07:07:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-02 01:59:09 +00:00
|
|
|
|
public List<IIndexer> GetAvailableIndexers()
|
2013-02-21 07:07:34 +00:00
|
|
|
|
{
|
2013-05-02 01:59:09 +00:00
|
|
|
|
return All().Where(c => c.Enable && c.Settings.IsValid).Select(c=>c.Instance).ToList();
|
|
|
|
|
}
|
2013-04-07 07:30:37 +00:00
|
|
|
|
|
2013-05-02 01:59:09 +00:00
|
|
|
|
|
|
|
|
|
public Indexer Get(string name)
|
|
|
|
|
{
|
|
|
|
|
return ToIndexer(_indexerRepository.Get(name));
|
2013-02-21 07:07:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-02 01:59:09 +00:00
|
|
|
|
|
|
|
|
|
private Indexer ToIndexer(IndexerDefinition definition)
|
2013-02-21 07:07:34 +00:00
|
|
|
|
{
|
2013-05-02 01:59:09 +00:00
|
|
|
|
var indexer = new Indexer();
|
|
|
|
|
indexer.DefinitionId = definition.Id;
|
|
|
|
|
indexer.Enable = definition.Enable;
|
|
|
|
|
indexer.Instance = GetInstance(definition);
|
|
|
|
|
indexer.Name = definition.Name;
|
|
|
|
|
|
|
|
|
|
if (indexer.Instance.GetType().GetMethod("ImportSettingsFromJson") != null)
|
|
|
|
|
{
|
|
|
|
|
indexer.Settings = ((dynamic)indexer.Instance).ImportSettingsFromJson(definition.Settings);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
indexer.Settings = NullSetting.Instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return indexer;
|
2013-02-21 07:07:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-02 01:59:09 +00:00
|
|
|
|
private IIndexer GetInstance(IndexerDefinition indexerDefinition)
|
2013-02-21 07:07:34 +00:00
|
|
|
|
{
|
2013-05-02 01:59:09 +00:00
|
|
|
|
var existingInstance = _indexers.Single(c => c.GetType().Name.Equals(indexerDefinition.Implementation, StringComparison.CurrentCultureIgnoreCase));
|
|
|
|
|
var instance = (IIndexer)Activator.CreateInstance(existingInstance.GetType());
|
|
|
|
|
instance.InstanceDefinition = indexerDefinition;
|
|
|
|
|
|
|
|
|
|
return instance;
|
2013-02-21 07:07:34 +00:00
|
|
|
|
}
|
2013-04-10 00:47:04 +00:00
|
|
|
|
|
|
|
|
|
public void Handle(ApplicationStartedEvent message)
|
|
|
|
|
{
|
|
|
|
|
_logger.Debug("Initializing indexers. Count {0}", _indexers.Count);
|
|
|
|
|
|
2013-05-02 01:59:09 +00:00
|
|
|
|
if (!All().Any())
|
2013-04-10 00:47:04 +00:00
|
|
|
|
{
|
2013-05-02 01:59:09 +00:00
|
|
|
|
var definitions = _indexers.SelectMany(delegate(IIndexer indexer)
|
2013-04-10 00:47:04 +00:00
|
|
|
|
{
|
2013-05-02 01:59:09 +00:00
|
|
|
|
return indexer.DefaultDefinitions;
|
|
|
|
|
});
|
2013-04-10 00:47:04 +00:00
|
|
|
|
|
2013-05-02 01:59:09 +00:00
|
|
|
|
_indexerRepository.InsertMany(definitions.ToList());
|
2013-04-10 00:47:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 07:07:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|