diff --git a/README.md b/README.md index bd5590678..434202528 100644 --- a/README.md +++ b/README.md @@ -352,6 +352,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * HDME * HDRoute * HDSky + * HDStreet * HDTime * HDTorrents.it * HDTurk diff --git a/src/Jackett.Common/Definitions/hdstreet.yml b/src/Jackett.Common/Definitions/hdstreet.yml new file mode 100644 index 000000000..4ced9bb58 --- /dev/null +++ b/src/Jackett.Common/Definitions/hdstreet.yml @@ -0,0 +1,163 @@ +--- + site: hdstreet + name: HDStreet + description: "HDStreet is a CHINESE Private Torrent Tracker for HD MOVIES / TV" + language: zh-cn + type: private + encoding: UTF-8 + links: + - https://hdstreet.club/ + caps: + categorymappings: + - {id: 401, cat: Movies, desc: "Movies(D)/华语电影", default: true} + - {id: 403, cat: Movies, desc: "Movies(F)/外语电影", default: true} + - {id: 402, cat: TV, desc: "TV Series(D)/华语电视剧", default: true} + - {id: 404, cat: TV, desc: "TV Series(F)/外语电视剧", default: true} + - {id: 406, cat: TV, desc: "TV Shows(D)/华语综艺", default: true} + - {id: 405, cat: TV, desc: "TV Shows(F)/外语综艺", default: true} + - {id: 408, cat: TV/Anime, desc: "TV Anime(D)/华语动漫", default: true} + - {id: 411, cat: TV/Anime, desc: "TV Anime(F)/外语动漫", default: true} + - {id: 409, cat: Audio/Video, desc: "MusicVideo(D)/华语音乐MV", default: true} + - {id: 412, cat: Audio/Video, desc: "MusicVideo(F)/外语音乐MV", default: true} + - {id: 407, cat: TV/Documentary, desc: "Documentaries(D)/华语纪录片", default: true} + - {id: 413, cat: TV/Documentary, desc: "Documentaries(F)/外语纪录片", default: true} + + modes: + search: [q, imdbid] + tv-search: [q, season, ep, imdbid] + movie-search: [q, imdbid] + music-search: [q] + + settings: + - name: username + type: text + label: Username + - name: password + type: password + label: Password + - name: sort + type: select + label: Sort requested from site + default: "4" + options: + "4": "created" + "7": "seeders" + "5": "size" + "1": "title" + - name: type + type: select + label: Order requested from site + default: "desc" + options: + "desc": "desc" + "asc": "asc" + + login: + path: login.php + method: form + form: form[action="takelogin.php"] + inputs: + logintype: username + username: "{{ .Config.username }}" + password: "{{ .Config.password }}" + logout: "" + thispagewidth: yes + error: + - selector: td.embedded:has(h2:contains("姿势不正确")) + test: + path: index.php + selector: a[href="logout.php"] + + search: + paths: + - path: torrents.php + categories: [401, 402, 406, 408, 409, 407] + - path: torrentsasia.php + categories: [403, 404, 405, 411, 412, 413] + inputs: + $raw: "{{ range .Categories }}cat{{.}}=1&{{end}}" + search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{else}}{{ .Keywords }}{{end}}" + # 0 incldead, 1 active, 2 dead, 3 noimdb, 4 onlydead + incldead: 0 + # 0 all, 1 normal, 2 free, 3 2x, 4 2xfree, 5 50%, 6 2x50%, 7 30%, 8 all promotions + spstate: 0 + # 0 all, 1 popular, 2 classic, 3 recommended, 4 normal + picktype: 0 + # 0 title, 3 uploader, 4 movie info, 5 imdbid, 6 torrent hash, 7 activity seed + search_area: "{{ if .Query.IMDBID }}5{{else}}0{{end}}" + # 0 AND 1 OR 2 exact + search_mode: 0 + sort: "{{ .Config.sort }}" + type: "{{ .Config.type }}" + # can search for imdbid but does not show imdb link in search results. + + rows: + selector: table.torrents > tbody > tr:has(a[href^="details.php?id="]), table.torrents > tbody > tr:has(a[href^="comment.php?"]) + after: 1 + + fields: + category: + selector: a[href^="?cat="] + attribute: href + filters: + - name: querystring + args: cat + title: + selector: a[href^="details.php?id="] + title: + optional: true + selector: a[title][href^="details.php?id="] + attribute: title + details: + selector: a[href^="details.php?id="] + attribute: href + download: + # downloads can be missing but we can exclude them due to after:1 + selector: a[href^="download.php?id="] + attribute: href + optional: true + seeders: + selector: td:nth-child(3) + leechers: + selector: td:nth-child(4) + grabs: + selector: td:nth-child(5) + date: + # time type: time elapsed (default) + selector: td:nth-child(9) > span[title] + attribute: title + optional: true + filters: + - name: append + args: " +08:00" + - name: dateparse + args: "2006-01-02 15:04:05 -07:00" + date: + # time added + selector: td:nth-child(9):not(:has(span)) + optional: true + filters: + - name: append + args: " +08:00" + - name: dateparse + args: "2006-01-0215:04:05 -07:00" + size: + selector: td:nth-child(10) + downloadvolumefactor: + case: + img.pro_free: 0 + img.pro_free2up: 0 + img.pro_50pctdown: 0.5 + img.pro_50pctdown2up: 0.5 + img.pro_30pctdown: 0.3 + "*": 1 + uploadvolumefactor: + case: + img.pro_50pctdown2up: 2 + img.pro_free2up: 2 + img.pro_2up: 2 + "*": 1 + description: + selector: td:nth-child(2) + remove: a, img +# NexusPHP V1.5.β5