Commit Graph

50 Commits

Author SHA1 Message Date
Bogdan
77002062f9 indexers: avoid proxying release links multiple times
Fixes #15386
2024-06-07 20:50:53 +03:00
Bogdan
06ee63e0ce Bump to dotnet 8.0 (#15083) 2024-06-02 19:01:21 +12:00
Bogdan
f94d2721cc core: show invalid releases in the interactive search (#15243) 2024-04-13 23:59:27 +03:00
Bogdan
2bc6d2834c ui: add elapsed time per indexer (#15100) 2024-02-29 01:11:02 +02:00
Bogdan
c3c3edc305 logs: sort indexers by name in search results 2024-02-29 01:01:36 +02:00
Bogdan
5a0e7415d1 cs fix for 8e771d 2024-01-26 12:57:20 +02:00
swannie-eire
8e771dc62a Use params IMDBID, TVDBID, TVMAZEID and TMDBID with json response (#15015) 2024-01-26 21:12:43 +13:00
Bogdan
51b60b3837 avistaz: respect rate limit from indexer (#14472)
* avistaz: respect rate limit from indexer

* server: add default value for retry-after of 1 minute
2023-06-24 09:16:45 +03:00
Bogdan
99204599d9 core: fix parsing Retry-After header in TooManyRequestsException 2023-06-18 13:00:30 +03:00
Bogdan
c6f4a55444 common: simplify normalizing IMDb Id and add tests 2023-05-21 12:09:32 +03:00
Bogdan
5f023b2335 server: add elapsed time to logs (#14153) 2023-03-13 22:27:09 +02:00
Bogdan
c7e9d4e72b indexers: set indexer details as properties (#14131) 2023-03-09 16:06:12 +02:00
Bogdan
2321c14584 rarbg: implement retry strategy with 429 response (#14000) 2023-02-19 13:26:49 +02:00
Garfield69
0df78edc9a core: add support for tmdbid to torznab tvsearch. resolves #13295
also update any indexer that has tmdbid on their moviesearch and add it to the tvsearch too.
2022-06-12 19:58:12 +12:00
ilike2burnthing
1b4d361f0b fix 710fed7109 2022-02-21 07:17:55 +00:00
ilike2burnthing
710fed7109 logger: change manual search from id to name. resolves #12975 2022-02-21 06:54:44 +00:00
ilike2burnthing
863a9c1cba api: add tracker type to results. resolves #12963 (#12970) 2022-02-19 00:46:52 +00:00
Diego Heras
512f57f803 core: fix blackhole download links. resolves #12861 (#12878) 2022-01-23 17:46:15 +00:00
Diego Heras
cb7a4861a0 core: use proxy for cover/poster images url. resolves #12761 (#12843) 2022-01-16 23:38:58 +00:00
Diego Heras
2b1f138d6f Update AutoMapper dependency (#12568) 2021-11-16 19:17:10 +01:00
Diego Heras
aca4a16bae ci/cd: fix whitespaces (#11749) 2021-05-16 20:13:54 +02:00
Alessio Gogna
66bec102db [Feature] Filter Meta Indexer by tag and by language (#11662). resolves #8884 resolves #7170 resolves #4787 resolves #2185
* bump to 0.18.*

Also partially addresses https://github.com/Jackett/Jackett/issues/661 (if user adds `enabled` and `disabled` tags).

Co-authored-by: garfield69 <garfieldsixtynine@gmail.com>
Co-authored-by: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com>
2021-05-08 21:24:18 +01:00
Casper Verswijvelt
e964a983c5 Use 'Tracker[]' parameter only as secondary filter for CurrentIndexer (#10266) 2021-03-15 19:07:47 +13:00
Diego Heras
456338399b core: remove rss feed image (legacy code) #324 (#10837) 2021-01-17 13:42:52 +01:00
Diego Heras
69125add3e core: redo search cache from scratch. resolves #10382 (#10447)
In simple words, when you make a request in Jackett, the results are saved in memory (cache). The next request will return results form the cache improving response time and making fewer requests to the sites.
* We assume all indexers/sites are stateless, the same request return the same response. If you change the search term, categories or something in the query Jackett has to make a live request to the indexer.
* There are some situations when we don't want to use the cache:
** When we are testing the indexers => if query.IsTest results are not cached
** When the user updates the configuration of one indexer => We call CleanIndexerCache to remove cached results before testing the configuration
** When there is some error/exception in the indexer => The results are not cached so we can retry in the next request
* We want to limit the memory usage, so we try to remove elements from cache ASAP:
** Each indexer can have a maximum number of results in memory. If the limit is exceeded we remove old results
** Cached results expire after some time
* Users can configure the cache or even disable it
2020-12-11 23:14:21 +01:00
Diego Heras
2030d9cf13 core: follow torznab specs about categories. resolves #10120 (#10147) 2020-11-08 23:27:54 +01:00
Diego Heras
2ea22af9ef core: rename comments field to details #10092 (#10135) 2020-11-08 15:11:27 +13:00
Diego Heras
56a260f0d7 core: disable tv-search by default (#9893)
* Disable tv-search in music trackers
* Add TVRage search in Cardigann
2020-10-18 22:47:36 +02:00
Diego Heras
9cdad3de64 core: separate categories from movie-search (#9862)
* Categories and Torznab movie-search are separated
* Movie-search parameters are validated
* Fixed some bugs in Cardigann indexers
2020-10-18 19:26:22 +02:00
Diego Heras
b212169dc2 core: code cleanup, exception messages (#9631) 2020-09-24 22:02:45 +02:00
Qstick
f8ad109b78 cardigann: Add TVDbId, TMDbId Query Support (#9102) 2020-08-17 10:07:04 +12:00
Diego Heras
6156ad0cd5 core: allow renaming & merging of trackers with config (part 1 #8355) (#8608)
core: allow renaming & merging of trackers with config (part 1 #8355) (#8608)

* rename site field to id in yaml indexers
* add id field in c# indexers
* use id field instead of class name in c#
2020-05-11 21:59:28 +02:00
Diego Heras
5d47cf060a core: fix links in rss, torznab and potato feeds (#8141) 2020-04-12 18:06:39 +02:00
Cory
d7dddf6009 core: remove string extensions in favor of explicit conversion (#7839) 2020-03-24 21:39:38 -05:00
Diego Heras
e55e92f9ac Core: Fix line endings to match style guide(#7476) 2020-03-03 10:28:26 -06:00
Cory
889a8da4e5 Convert functions and properties to expression bodies when able (#7312)
Convert functions and properties to expression bodies when able
2020-02-25 10:08:03 -06:00
Cory
348dddfbee core: Apply declarations styles (#7166) 2020-02-11 11:16:19 +13:00
Cory
98541ac6f8 core: Sort and remove usings (#7159) 2020-02-10 07:08:34 +13:00
morpheus133
a89c7dedeb ImdbTVSearchSupport added for c# based indexers (#5791) 2020-01-09 16:32:02 +13:00
flightlevel
f86e8dd5b6 Limit IMDB searches to movies
#5124
2019-05-11 13:27:25 +10:00
flightlevel
748881ef70 Kestrel: accept imdbid+q
Copy of 0d6830b0aa
2018-07-31 20:14:02 +10:00
kaso17
ad3c56e83b .NETCore: fix manual search categories 2018-07-30 17:39:28 +02:00
Tanel Puhu
667317e513 let's format the Imdb (#3354) 2018-07-09 20:40:37 +10:00
flightlevel
1ecafe3667 ResultsController - get BlackHole from ServerConfig without engine 2018-06-18 21:54:39 +10:00
flightlevel
0680d39d90 Torznab: Pull in improved error handling
7f163c3945
2018-06-10 21:56:45 +10:00
flightlevel
4ca6676be0 Blackhole: Pull in fix magnet links
f3290800d8
2018-06-10 21:54:12 +10:00
flightlevel
0a70f91bf1 Target full framework (Mono) as well for transition period 2018-05-20 21:51:52 +10:00
flightlevel
ce84264490 Add Authorization 2018-05-12 12:44:47 +10:00
flightlevel
f162902b36 Refactor controllers for ASP.NET Core (Authentication disabled for now) 2018-05-01 22:55:09 +10:00
flightlevel
a752683965 Copy controllers untouced from Jackett project 2018-05-01 22:03:16 +10:00