mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 12:46:23 +00:00
Merge pull request #85 from sdesbure/master
Add of FrenchTorrentDb site
This commit is contained in:
commit
869d89d663
4 changed files with 179 additions and 1 deletions
|
@ -42,6 +42,7 @@ Download in the [Releases page](https://github.com/zone117x/Jackett/releases)
|
||||||
* [SceneTime](https://www.scenetime.com/)
|
* [SceneTime](https://www.scenetime.com/)
|
||||||
* [BeyondHD](https://beyondhd.me/)
|
* [BeyondHD](https://beyondhd.me/)
|
||||||
* [T411](http://www.t411.io/)
|
* [T411](http://www.t411.io/)
|
||||||
|
* [FrenchTorrentDb](http://www.frenchtorrentdb.com/)
|
||||||
|
|
||||||
|
|
||||||
### Additional Trackers
|
### Additional Trackers
|
||||||
|
|
172
src/Jackett/Indexers/FrenchTorrentDb.cs
Normal file
172
src/Jackett/Indexers/FrenchTorrentDb.cs
Normal file
|
@ -0,0 +1,172 @@
|
||||||
|
using CsQuery;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.Net;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Web;
|
||||||
|
|
||||||
|
namespace Jackett.Indexers
|
||||||
|
{
|
||||||
|
class FrenchTorrentDb : IndexerInterface
|
||||||
|
{
|
||||||
|
public event Action<IndexerInterface, Newtonsoft.Json.Linq.JToken> OnSaveConfigurationRequested;
|
||||||
|
|
||||||
|
public event Action<IndexerInterface, string, Exception> OnResultParsingError;
|
||||||
|
|
||||||
|
class ConfigurationDataBasicLoginFrenchTorrentDb : ConfigurationData
|
||||||
|
{
|
||||||
|
public StringItem Cookie { get; private set; }
|
||||||
|
|
||||||
|
public ConfigurationDataBasicLoginFrenchTorrentDb()
|
||||||
|
{
|
||||||
|
Cookie = new StringItem { Name = "Cookie" };
|
||||||
|
}
|
||||||
|
|
||||||
|
public override Item[] GetItems()
|
||||||
|
{
|
||||||
|
return new Item[] { Cookie };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public string DisplayName
|
||||||
|
{
|
||||||
|
get { return "FrenchTorrentDb"; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public string DisplayDescription
|
||||||
|
{
|
||||||
|
get { return "One the biggest French Torrent Tracker"; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public Uri SiteLink
|
||||||
|
{
|
||||||
|
get { return new Uri(BaseUrl); }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool IsConfigured { get; private set; }
|
||||||
|
const string BaseUrl = "http://www.frenchtorrentdb.com/";
|
||||||
|
const string MainUrl = BaseUrl + "?section=INDEX";
|
||||||
|
const string SearchUrl = BaseUrl + "?section=TORRENTS&exact=1&name={0}&submit=GO";
|
||||||
|
static string chromeUserAgent = BrowserUtil.ChromeUserAgent;
|
||||||
|
|
||||||
|
string cookie = string.Empty;
|
||||||
|
|
||||||
|
CookieContainer cookies;
|
||||||
|
HttpClientHandler handler;
|
||||||
|
HttpClient client;
|
||||||
|
|
||||||
|
public FrenchTorrentDb()
|
||||||
|
{
|
||||||
|
IsConfigured = false;
|
||||||
|
cookies = new CookieContainer();
|
||||||
|
handler = new HttpClientHandler
|
||||||
|
{
|
||||||
|
CookieContainer = cookies,
|
||||||
|
AllowAutoRedirect = true,
|
||||||
|
UseCookies = true,
|
||||||
|
};
|
||||||
|
client = new HttpClient(handler);
|
||||||
|
client.DefaultRequestHeaders.UserAgent.ParseAdd(chromeUserAgent);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task<ConfigurationData> GetConfigurationForSetup()
|
||||||
|
{
|
||||||
|
var config = new ConfigurationDataUrl(BaseUrl);
|
||||||
|
return Task.FromResult<ConfigurationData>(config);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task ApplyConfiguration(Newtonsoft.Json.Linq.JToken configJson)
|
||||||
|
{
|
||||||
|
var config = new ConfigurationDataBasicLoginFrenchTorrentDb();
|
||||||
|
config.LoadValuesFromJson(configJson);
|
||||||
|
cookies.SetCookies(new Uri(BaseUrl), "WebsiteID=" + config.Cookie.Value);
|
||||||
|
var mainPage = await client.GetAsync(MainUrl);
|
||||||
|
string responseContent = await mainPage.Content.ReadAsStringAsync();
|
||||||
|
|
||||||
|
if (!responseContent.Contains("/?section=LOGOUT"))
|
||||||
|
{
|
||||||
|
throw new ExceptionWithConfigData("Failed to login", (ConfigurationData)config);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var configSaveData = new JObject();
|
||||||
|
configSaveData["cookie"] = config.Cookie.Value;
|
||||||
|
|
||||||
|
if (OnSaveConfigurationRequested != null)
|
||||||
|
OnSaveConfigurationRequested(this, configSaveData);
|
||||||
|
|
||||||
|
IsConfigured = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void LoadFromSavedConfiguration(Newtonsoft.Json.Linq.JToken jsonConfig)
|
||||||
|
{
|
||||||
|
cookie = (string)jsonConfig["cookie"];
|
||||||
|
cookies.SetCookies(new Uri(BaseUrl), "WebsiteID=" + cookie);
|
||||||
|
IsConfigured = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<ReleaseInfo[]> PerformQuery(TorznabQuery query)
|
||||||
|
{
|
||||||
|
List<ReleaseInfo> releases = new List<ReleaseInfo>();
|
||||||
|
|
||||||
|
foreach (var title in query.ShowTitles ?? new string[] { string.Empty })
|
||||||
|
{
|
||||||
|
var searchString = title + " " + query.GetEpisodeSearchString();
|
||||||
|
var episodeSearchUrl = string.Format(SearchUrl, HttpUtility.UrlEncode(searchString));
|
||||||
|
|
||||||
|
var message = new HttpRequestMessage();
|
||||||
|
message.Method = HttpMethod.Get;
|
||||||
|
message.RequestUri = new Uri(episodeSearchUrl);
|
||||||
|
|
||||||
|
var response = await client.SendAsync(message);
|
||||||
|
var results = await response.Content.ReadAsStringAsync();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
|
||||||
|
CQ dom = results;
|
||||||
|
var rows = dom[".results_index ul"];
|
||||||
|
foreach (var row in rows)
|
||||||
|
{
|
||||||
|
var release = new ReleaseInfo();
|
||||||
|
CQ qRow = row.Cq();
|
||||||
|
CQ qLink = qRow.Find("li.torrents_name > .torrents_name_link").First();
|
||||||
|
CQ qDlLink = qRow.Find("li.torrents_download > a").First();
|
||||||
|
|
||||||
|
release.MinimumRatio = 1;
|
||||||
|
release.MinimumSeedTime = 172800;
|
||||||
|
release.Title = qLink.Text().Trim();
|
||||||
|
release.Description = release.Title;
|
||||||
|
release.Comments = new Uri(BaseUrl + "/" + qLink.Attr("href").TrimStart('/'));
|
||||||
|
release.Guid = release.Comments;
|
||||||
|
release.Link = new Uri(BaseUrl + "/" + qDlLink.Attr("href").TrimStart('/'));
|
||||||
|
release.PublishDate = DateTime.Now;
|
||||||
|
release.Seeders = ParseUtil.CoerceInt(qRow.Find("li.torrents_seeders").Text());
|
||||||
|
release.Peers = ParseUtil.CoerceInt(qRow.Find("li.torrents_leechers").Text()) + release.Seeders;
|
||||||
|
var sizeParts = qRow.Find("li.torrents_size").Text().Split(' ');
|
||||||
|
var sizeVal = ParseUtil.CoerceFloat(sizeParts[0]);
|
||||||
|
var sizeUnit = sizeParts[1];
|
||||||
|
release.Size = ReleaseInfo.GetBytes(sizeUnit, sizeVal);
|
||||||
|
|
||||||
|
releases.Add(release);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
OnResultParsingError(this, results, ex);
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return releases.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task<byte[]> Download(Uri link)
|
||||||
|
{
|
||||||
|
return client.GetByteArrayAsync(link);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -98,6 +98,7 @@
|
||||||
<Compile Include="Indexers\BeyondHD.cs" />
|
<Compile Include="Indexers\BeyondHD.cs" />
|
||||||
<Compile Include="Indexers\BitHdtv.cs" />
|
<Compile Include="Indexers\BitHdtv.cs" />
|
||||||
<Compile Include="Indexers\BitMeTV.cs" />
|
<Compile Include="Indexers\BitMeTV.cs" />
|
||||||
|
<Compile Include="Indexers\FrenchTorrentDb.cs" />
|
||||||
<Compile Include="Indexers\Freshon.cs" />
|
<Compile Include="Indexers\Freshon.cs" />
|
||||||
<Compile Include="Indexers\HDTorrents.cs" />
|
<Compile Include="Indexers\HDTorrents.cs" />
|
||||||
<Compile Include="Indexers\IPTorrents.cs" />
|
<Compile Include="Indexers\IPTorrents.cs" />
|
||||||
|
@ -171,6 +172,9 @@
|
||||||
<Content Include="WebContent\logos\beyondhd.png">
|
<Content Include="WebContent\logos\beyondhd.png">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
<Content Include="WebContent\logos\frenchtorrentdb.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
<Content Include="WebContent\logos\hdtorrents.png">
|
<Content Include="WebContent\logos\hdtorrents.png">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
@ -238,6 +242,7 @@
|
||||||
<Content Include="WebContent\jquery-2.1.3.min.js">
|
<Content Include="WebContent\jquery-2.1.3.min.js">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
|
||||||
<Content Include="WebContent\logos\freshon.png">
|
<Content Include="WebContent\logos\freshon.png">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
@ -322,4 +327,4 @@
|
||||||
</Properties>
|
</Properties>
|
||||||
</MonoDevelop>
|
</MonoDevelop>
|
||||||
</ProjectExtensions>
|
</ProjectExtensions>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
BIN
src/Jackett/WebContent/logos/frenchtorrentdb.png
Normal file
BIN
src/Jackett/WebContent/logos/frenchtorrentdb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
Loading…
Reference in a new issue