mirror of
https://github.com/Jackett/Jackett
synced 2025-03-12 07:04:22 +00:00
brasiltracker: add genre query support
This commit is contained in:
parent
33beea5f62
commit
33093d6ccb
1 changed files with 15 additions and 4 deletions
|
@ -36,19 +36,19 @@ namespace Jackett.Common.Indexers
|
||||||
{
|
{
|
||||||
TvSearchParams = new List<TvSearchParam>
|
TvSearchParams = new List<TvSearchParam>
|
||||||
{
|
{
|
||||||
TvSearchParam.Q, TvSearchParam.Season, TvSearchParam.Ep
|
TvSearchParam.Q, TvSearchParam.Season, TvSearchParam.Ep, TvSearchParam.Genre
|
||||||
},
|
},
|
||||||
MovieSearchParams = new List<MovieSearchParam>
|
MovieSearchParams = new List<MovieSearchParam>
|
||||||
{
|
{
|
||||||
MovieSearchParam.Q, MovieSearchParam.ImdbId
|
MovieSearchParam.Q, MovieSearchParam.ImdbId, MovieSearchParam.Genre
|
||||||
},
|
},
|
||||||
MusicSearchParams = new List<MusicSearchParam>
|
MusicSearchParams = new List<MusicSearchParam>
|
||||||
{
|
{
|
||||||
MusicSearchParam.Q
|
MusicSearchParam.Q, MusicSearchParam.Genre
|
||||||
},
|
},
|
||||||
BookSearchParams = new List<BookSearchParam>
|
BookSearchParams = new List<BookSearchParam>
|
||||||
{
|
{
|
||||||
BookSearchParam.Q
|
BookSearchParam.Q, BookSearchParam.Genre
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
configService: configService,
|
configService: configService,
|
||||||
|
@ -137,6 +137,8 @@ namespace Jackett.Common.Indexers
|
||||||
{"action", "basic"},
|
{"action", "basic"},
|
||||||
{"searchsubmit", "1"}
|
{"searchsubmit", "1"}
|
||||||
};
|
};
|
||||||
|
if (query.IsGenreQuery)
|
||||||
|
queryCollection.Add("taglist", query.Genre);
|
||||||
|
|
||||||
searchUrl += "?" + queryCollection.GetQueryString();
|
searchUrl += "?" + queryCollection.GetQueryString();
|
||||||
var results = await RequestWithCookiesAsync(searchUrl);
|
var results = await RequestWithCookiesAsync(searchUrl);
|
||||||
|
@ -151,6 +153,7 @@ namespace Jackett.Common.Indexers
|
||||||
Uri groupPoster = null;
|
Uri groupPoster = null;
|
||||||
string imdbLink = null;
|
string imdbLink = null;
|
||||||
string tmdbLink = null;
|
string tmdbLink = null;
|
||||||
|
string genres = null;
|
||||||
foreach (var row in rows)
|
foreach (var row in rows)
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -206,6 +209,7 @@ namespace Jackett.Common.Indexers
|
||||||
groupYearStr = yearStr;
|
groupYearStr = yearStr;
|
||||||
imdbLink = row.QuerySelector("a[href*=\"imdb.com/title/tt\"]")?.GetAttribute("href");
|
imdbLink = row.QuerySelector("a[href*=\"imdb.com/title/tt\"]")?.GetAttribute("href");
|
||||||
tmdbLink = row.QuerySelector("a[href*=\"themoviedb.org/\"]")?.GetAttribute("href");
|
tmdbLink = row.QuerySelector("a[href*=\"themoviedb.org/\"]")?.GetAttribute("href");
|
||||||
|
genres = row.QuerySelector("div.tags")?.TextContent;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -232,10 +236,17 @@ namespace Jackett.Common.Indexers
|
||||||
release.Title = ParseTitle(title, seasonEp, yearStr);
|
release.Title = ParseTitle(title, seasonEp, yearStr);
|
||||||
imdbLink = row.QuerySelector("a[href*=\"imdb.com/title/tt\"]")?.GetAttribute("href");
|
imdbLink = row.QuerySelector("a[href*=\"imdb.com/title/tt\"]")?.GetAttribute("href");
|
||||||
tmdbLink = row.QuerySelector("a[href*=\"themoviedb.org/\"]")?.GetAttribute("href");
|
tmdbLink = row.QuerySelector("a[href*=\"themoviedb.org/\"]")?.GetAttribute("href");
|
||||||
|
genres = row.QuerySelector("div.tags")?.TextContent;
|
||||||
}
|
}
|
||||||
release.Poster = groupPoster;
|
release.Poster = groupPoster;
|
||||||
release.Imdb = ParseUtil.GetLongFromString(imdbLink);
|
release.Imdb = ParseUtil.GetLongFromString(imdbLink);
|
||||||
release.TMDb = ParseUtil.GetLongFromString(tmdbLink);
|
release.TMDb = ParseUtil.GetLongFromString(tmdbLink);
|
||||||
|
if (!string.IsNullOrEmpty(genres))
|
||||||
|
{
|
||||||
|
if (release.Genres == null)
|
||||||
|
release.Genres = new List<string>();
|
||||||
|
release.Genres = release.Genres.Union(genres.Split(',')).ToList();
|
||||||
|
}
|
||||||
release.Category = category;
|
release.Category = category;
|
||||||
release.Description = release.Description.Replace(" / Free", ""); // Remove Free Tag
|
release.Description = release.Description.Replace(" / Free", ""); // Remove Free Tag
|
||||||
release.Description = release.Description.Replace("/ WEB ", "/ WEB-DL "); // Fix web/web-dl
|
release.Description = release.Description.Replace("/ WEB ", "/ WEB-DL "); // Fix web/web-dl
|
||||||
|
|
Loading…
Add table
Reference in a new issue