mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-18 21:55:12 -04:00
55 lines
2.1 KiB
C#
55 lines
2.1 KiB
C#
using System.Collections.Generic;
|
|
using NLog;
|
|
using NzbDrone.Common.Http;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.Indexers.Definitions.Avistaz;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
|
|
namespace NzbDrone.Core.Indexers.Definitions
|
|
{
|
|
public class ExoticaZ : AvistazBase
|
|
{
|
|
public override string Name => "ExoticaZ";
|
|
public override string BaseUrl => "https://exoticaz.to/";
|
|
public override IndexerPrivacy Privacy => IndexerPrivacy.Private;
|
|
|
|
public ExoticaZ(IIndexerRepository indexerRepository, IHttpClient httpClient, IEventAggregator eventAggregator, IIndexerStatusService indexerStatusService, IConfigService configService, Logger logger)
|
|
: base(indexerRepository, httpClient, eventAggregator, indexerStatusService, configService, logger)
|
|
{
|
|
}
|
|
|
|
public override IIndexerRequestGenerator GetRequestGenerator()
|
|
{
|
|
return new AvistazRequestGenerator()
|
|
{
|
|
Settings = Settings,
|
|
HttpClient = _httpClient,
|
|
Logger = _logger,
|
|
Capabilities = Capabilities,
|
|
BaseUrl = BaseUrl
|
|
};
|
|
}
|
|
|
|
protected override IndexerCapabilities SetCapabilities()
|
|
{
|
|
var caps = new IndexerCapabilities
|
|
{
|
|
MovieSearchParams = new List<MovieSearchParam>
|
|
{
|
|
MovieSearchParam.Q
|
|
}
|
|
};
|
|
|
|
caps.Categories.AddCategoryMapping(1, NewznabStandardCategory.XXXx264);
|
|
caps.Categories.AddCategoryMapping(2, NewznabStandardCategory.XXXPack);
|
|
caps.Categories.AddCategoryMapping(3, NewznabStandardCategory.XXXPack);
|
|
caps.Categories.AddCategoryMapping(4, NewznabStandardCategory.XXXPack);
|
|
caps.Categories.AddCategoryMapping(5, NewznabStandardCategory.XXXDVD);
|
|
caps.Categories.AddCategoryMapping(6, NewznabStandardCategory.XXXOther);
|
|
caps.Categories.AddCategoryMapping(7, NewznabStandardCategory.XXXImageSet);
|
|
|
|
return caps;
|
|
}
|
|
}
|
|
}
|