diff --git a/README.md b/README.md index a65df9356..12385e549 100644 --- a/README.md +++ b/README.md @@ -591,7 +591,6 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht * TrackerMK * TranceTraffic * TreZzoR [![(invite needed)][inviteneeded]](#) - * TurkSeed * TurkTorrent (TT) * TV Chaos UK (TVCUK) * TvRoad diff --git a/src/Jackett.Common/Definitions/turkseed.yml b/src/Jackett.Common/Definitions/turkseed.yml deleted file mode 100644 index 41fea6bff..000000000 --- a/src/Jackett.Common/Definitions/turkseed.yml +++ /dev/null @@ -1,152 +0,0 @@ ---- -id: turkseed -name: TurkSeed -description: "TurkSeed (Aturk) is a TURKISH Private Torrent Tracker for MOVIES / TV / GENERAL" -language: tr-TR -type: private -encoding: UTF-8 -links: - - https://trendfilm.net/ -legacylinks: - - https://turkseed.com/ - -caps: - categorymappings: - - {id: 46, cat: Movies/3D, desc: "3D"} - - {id: 47, cat: Movies/UHD, desc: "4K"} - - {id: 74, cat: Movies/UHD, desc: "4K Plus"} - - {id: 61, cat: PC/Mobile-Android, desc: "Android"} - - {id: 48, cat: TV/Anime, desc: "Animasyon"} - - {id: 40, cat: TV/Documentary, desc: "Belgesel"} - - {id: 49, cat: Movies/BluRay, desc: "Bluray"} - - {id: 50, cat: Movies, desc: "Boxset"} - - {id: 70, cat: TV, desc: "DIGITAL TV"} - - {id: 73, cat: TV, desc: "DIGITAL TV Plus"} - - {id: 51, cat: Movies/DVD, desc: "DVD"} - - {id: 42, cat: Movies, desc: "Dini"} - - {id: 4, cat: Other, desc: "Diğer"} - - {id: 41, cat: Books/EBook, desc: "E-Kitap"} - - {id: 64, cat: Books, desc: "Eğitim"} - - {id: 55, cat: Audio/Lossless, desc: "FLAC"} - - {id: 52, cat: Movies/HD, desc: "HD"} - - {id: 66, cat: Movies/HD, desc: "Netflix"} - - {id: 26, cat: PC/Games, desc: "Oyunlar"} - - {id: 30, cat: PC, desc: "Programlar"} - - {id: 53, cat: Movies/SD, desc: "SD"} - - {id: 54, cat: Movies, desc: "Türk Filmi"} - - {id: 58, cat: Audio/Video, desc: "Video Klip"} - - {id: 43, cat: TV, desc: "Yabancı Dizi"} - - {id: 57, cat: Movies, desc: "Yabancı Müzik"} - - {id: 45, cat: TV, desc: "Yarışma - Show"} - - {id: 44, cat: TV, desc: "Yerli Dizi"} - - {id: 56, cat: Audio, desc: "Yerli Müzik"} - - {id: 59, cat: PC, desc: "İşletim Sistemi"} - - modes: - search: [q] - tv-search: [q, season, ep, imdbid] - movie-search: [q, imdbid] - music-search: [q] - book-search: [q] - -settings: - - name: cookie - type: text - label: Cookie - - name: info - type: info - label: How to get the Cookie - default: "
  1. Login to this tracker with your browser
  2. Open the DevTools panel by pressing F12
  3. Select the Network tab
  4. Click on the Doc button (Chrome Browser) or HTML button (FireFox)
  5. Refresh the page by pressing F5
  6. Click on the first row entry
  7. Select the Headers tab on the Right panel
  8. Find 'cookie:' in the Request Headers section
  9. Select and Copy the whole cookie string (everything after 'cookie: ') and Paste here.
" - - name: freeleech - type: checkbox - label: Filter freeleech only - default: false - - name: sort - type: select - label: Sort requested from site - default: added - options: - added: created - seeders: seeders - size: size - name: title - - name: type - type: select - label: Order requested from site - default: desc - options: - desc: desc - asc: asc - -login: - method: cookie - inputs: - cookie: "{{ .Config.cookie }}" - test: - path: index.php - selector: a[href*="/logout.php?logouthash="] - -search: - paths: - - path: browse.php - inputs: - do: search - keywords: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{ else }}{{ .Keywords }}{{ end }}" - # t_name, t_description, t_both, t_uploader, t_genre - search_type: "{{ if .Query.IMDBID }}t_genre{{ else }}t_both{{ end }}" - category: "{{ if .Categories }}{{ range .Categories }}{{.}};{{end}}{{ else }}0{{ end }}" - include_dead_torrents: yes - sort: "{{ .Config.sort }}" - order: "{{ .Config.type }}" - # does not return imdb link in results - - rows: - selector: "table.sortable tr:has(a[href*=\"/details.php?id=\"]){{ if .Config.freeleech }}:has(img[src$=\"/freedownload.gif\"]){{ else }}{{ end }}" - - fields: - category: - selector: a[href*="/browse.php?category="] - attribute: href - filters: - - name: querystring - args: category - title: - selector: a[href*="/details.php?id="] - details: - selector: a[href*="/details.php?id="] - attribute: href - download: - selector: a[href*="/download.php?id="] - attribute: href - poster: - selector: img[src*="/torrents/images/"] - attribute: src - date: - selector: td:nth-child(2) > div:last-child - # auto adjusted by site account profile - filters: - - name: dateparse - args: "dd-MM-yy HH:mm" - size: - selector: td:nth-last-child(5) - grabs: - selector: td:nth-last-child(4) - seeders: - selector: td:nth-last-child(3) - leechers: - selector: td:nth-last-child(2) - downloadvolumefactor: - case: - img[src$="/freedownload.gif"]: 0 - img[src$="/silverdownload.gif"]: 0.5 - "*": 1 - uploadvolumefactor: - case: - img[src$="/x2.gif"]: 2 - "*": 1 - minimumratio: - text: 0.6 - minimumseedtime: - # 2 days (as seconds = 2 x 24 x 60 x 60) - text: 172800 -# TS Special Edition v.8.0 diff --git a/src/Jackett.Updater/Program.cs b/src/Jackett.Updater/Program.cs index a54e6441d..8be29daf3 100644 --- a/src/Jackett.Updater/Program.cs +++ b/src/Jackett.Updater/Program.cs @@ -647,8 +647,9 @@ namespace Jackett.Updater "Definitions/trackeros.yml", // switch to *-API #12807 "Definitions/tspate.yml", "Definitions/ttobogo.yml", - "Definitions/turktracker.yml", "Definitions/turknova.yml", + "Definitions/turkseed.yml", + "Definitions/turktracker.yml", "Definitions/twilight.yml", "Definitions/twilightszoom.yml", "Definitions/u-torrents.yml",