diff --git a/README.md b/README.md
index 672096a0f..b38597c9d 100644
--- a/README.md
+++ b/README.md
@@ -349,6 +349,7 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
* GreekDiamond
* Greek Team
* HaiDan
+ * Haitang
* HD Dolby
* HD-Bits.com
* HD-Forever (HDF)
diff --git a/src/Jackett.Common/Definitions/haitang.yml b/src/Jackett.Common/Definitions/haitang.yml
new file mode 100644
index 000000000..addaa817f
--- /dev/null
+++ b/src/Jackett.Common/Definitions/haitang.yml
@@ -0,0 +1,168 @@
+---
+id: haitang
+name: Haitang
+description: "海棠PT (Hǎitáng PT) is a CHINESE Private Torrent Tracker for OPERA / CROSSTALK"
+language: zh-cn
+type: private
+encoding: UTF-8
+links:
+ - https://www.htpt.cc/
+
+caps:
+ categorymappings:
+ - {id: 1, cat: Audio, desc: "相声 Crosstalk"}
+ - {id: 4091, cat: Audio, desc: "评书 Storytelling"}
+ - {id: 4097, cat: Audio, desc: "戏曲 Opera"}
+ - {id: 4098, cat: Audio, desc: "鼓/琴 Drum / Piano"}
+ - {id: 4099, cat: Audio, desc: "小曲 Small Song"}
+ - {id: 4101, cat: Audio, desc: "小品 Sketch"}
+ - {id: 4104, cat: Audio, desc: "二人转 Duets"}
+ - {id: 4105, cat: TV, desc: "小剧种 Puppet shows"}
+ - {id: 4103, cat: Audio/Audiobook, desc: "广播剧 Audiobooks"}
+
+ modes:
+ search: [q]
+ tv-search: [q]
+ music-search: [q]
+
+settings:
+ - name: username
+ type: text
+ label: Username
+ - name: password
+ type: password
+ label: Password
+ - name: freeleech
+ type: checkbox
+ label: Search freeleech only
+ default: false
+ - name: info_tpp
+ type: info
+ label: Results Per Page
+ default: For best results, change the Torrents per page: setting to 100 on your account profile.
+ - 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: takelogin.php
+ method: post
+ inputs:
+ username: "{{ .Config.username }}"
+ password: "{{ .Config.password }}"
+ logout: ""
+ securelogin: ""
+ ssl: yes
+ trackerssl: yes
+ error:
+ - selector: td.embedded:has(h2:contains("失败"))
+ - selector: td.embedded:has(h2:contains("failed"))
+ test:
+ path: index.php
+ selector: a[href="logout.php"]
+
+search:
+ paths:
+ - path: torrents.php
+ categories: ["!", 4103]
+ - path: live.php
+ categories: [4103]
+ inputs:
+ $raw: "{{ range .Categories }}cat{{.}}=1&{{end}}"
+ search: "{{ .Keywords }}"
+ # 0 incldead, 1 onlyactive, 2 onlydead
+ incldead: 0
+ # 0 all, 1 normal, 2 free, 3 2x, 4 2xfree, 5 50%, 6 2x50%, 7 30%
+ spstate: "{{ if .Config.freeleech }}2{{ else }}0{{ end }}"
+ # 0 title, 1 descr, 3 uploader
+ search_area: 0
+ # 0 AND, 1 OR, 2 exact
+ search_mode: 0
+ sort: "{{ .Config.sort }}"
+ type: "{{ .Config.type }}"
+
+ rows:
+ selector: table.torrents > tbody > tr:has(table.torrentname)
+
+ 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:
+ selector: a[href^="download.php?id="]
+ attribute: href
+ date:
+ # time type: time elapsed (default)
+ selector: td:nth-child(4) > span[title]
+ attribute: title
+ optional: true
+ filters:
+ - name: append
+ args: " +08:00" # CST
+ - name: dateparse
+ args: "2006-01-02 15:04:05 -07:00"
+ date:
+ # time added
+ selector: td:nth-child(4):not(:has(span))
+ optional: true
+ filters:
+ - name: append
+ args: " +08:00" # CST
+ - name: dateparse
+ args: "2006-01-0215:04:05 -07:00"
+ size:
+ selector: td:nth-child(5)
+ seeders:
+ selector: td:nth-child(6)
+ leechers:
+ selector: td:nth-child(7)
+ grabs:
+ selector: td:nth-child(8)
+ 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
+ minimumratio:
+ text: 1
+ minimumseedtime:
+ # 1 day (as seconds = 24 x 60 x 60)
+ text: 86400
+# NexusPHP v1.0