mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Implement EuTorrents
This commit is contained in:
@@ -27,6 +27,7 @@ We were previously focused on TV but are working on extending searches to allow
|
|||||||
* [BIT-HDTV](https://www.bit-hdtv.com)
|
* [BIT-HDTV](https://www.bit-hdtv.com)
|
||||||
* [BitMeTV](http://www.bitmetv.org/)
|
* [BitMeTV](http://www.bitmetv.org/)
|
||||||
* [Demonoid](http://www.demonoid.pw/)
|
* [Demonoid](http://www.demonoid.pw/)
|
||||||
|
* [EuTorrents](https://eutorrents.to/)
|
||||||
* [FileList](http://filelist.ro/)
|
* [FileList](http://filelist.ro/)
|
||||||
* [FrenchTorrentDb](http://www.frenchtorrentdb.com/)
|
* [FrenchTorrentDb](http://www.frenchtorrentdb.com/)
|
||||||
* [Freshon](https://freshon.tv/)
|
* [Freshon](https://freshon.tv/)
|
||||||
|
BIN
src/Jackett/Content/logos/eutorrents.png
Normal file
BIN
src/Jackett/Content/logos/eutorrents.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
35
src/Jackett/Indexers/EuTorrents.cs
Normal file
35
src/Jackett/Indexers/EuTorrents.cs
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Jackett.Models;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using NLog;
|
||||||
|
using Jackett.Utils;
|
||||||
|
using System.Net;
|
||||||
|
using System.Net.Http;
|
||||||
|
using CsQuery;
|
||||||
|
using System.Web;
|
||||||
|
using Jackett.Services;
|
||||||
|
using Jackett.Utils.Clients;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
|
using Jackett.Models.IndexerConfig;
|
||||||
|
|
||||||
|
namespace Jackett.Indexers
|
||||||
|
{
|
||||||
|
public class EuTorrents : AvistazTracker, IIndexer
|
||||||
|
{
|
||||||
|
public EuTorrents(IIndexerManagerService indexerManager, IWebClient webClient, Logger logger, IProtectionService protectionService)
|
||||||
|
: base(name: "EuTorrents",
|
||||||
|
desc: "Part of the Avistaz network.",
|
||||||
|
link: "https://eutorrents.to/",
|
||||||
|
indexerManager: indexerManager,
|
||||||
|
logger: logger,
|
||||||
|
protectionService: protectionService,
|
||||||
|
webClient: webClient
|
||||||
|
)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -175,6 +175,7 @@
|
|||||||
<Compile Include="Controllers\DownloadController.cs" />
|
<Compile Include="Controllers\DownloadController.cs" />
|
||||||
<Compile Include="Engine.cs" />
|
<Compile Include="Engine.cs" />
|
||||||
<Compile Include="Indexers\AlphaRatio.cs" />
|
<Compile Include="Indexers\AlphaRatio.cs" />
|
||||||
|
<Compile Include="Indexers\EuTorrents.cs" />
|
||||||
<Compile Include="Indexers\Avistaz.cs" />
|
<Compile Include="Indexers\Avistaz.cs" />
|
||||||
<Compile Include="Indexers\BakaBT.cs" />
|
<Compile Include="Indexers\BakaBT.cs" />
|
||||||
<Compile Include="Indexers\BaseIndexer.cs" />
|
<Compile Include="Indexers\BaseIndexer.cs" />
|
||||||
@@ -422,6 +423,9 @@
|
|||||||
<Content Include="Content\logos\demonoid.png">
|
<Content Include="Content\logos\demonoid.png">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
<Content Include="Content\logos\eutorrents.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
<Content Include="Content\logos\filelist.png">
|
<Content Include="Content\logos\filelist.png">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
Reference in New Issue
Block a user