doll.js 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /*
  2. * @File : doll.js
  3. * @Author : jade
  4. * @Date : 2024/1/4 14:15
  5. * @Email : jadehh@1ive.com
  6. * @Software : Samples
  7. * @Desc : doll
  8. */
  9. import {Spider} from "./spider.js";
  10. import {Crypto, load} from "../lib/cat.js";
  11. import {VodDetail, VodShort} from "../lib/vod.js";
  12. import * as Utils from "../lib/utils.js";
  13. class Doll extends Spider {
  14. constructor() {
  15. super();
  16. this.siteUrl = "https://hongkongdollvideo.com"
  17. }
  18. getName() {
  19. return "🔞┃玩偶姐姐┃🔞"
  20. }
  21. getAppName() {
  22. return "玩偶姐姐"
  23. }
  24. getJSName() {
  25. return "doll"
  26. }
  27. getType() {
  28. return 3
  29. }
  30. async parseVodShortListFromDoc($) {
  31. let vod_list = []
  32. let vodElements = $("[class=\"row\"]").find("[class=\"video-detail\"]")
  33. for (const vodElement of vodElements) {
  34. let vodShort = new VodShort()
  35. vodShort.vod_id = $(vodElement).find("a")[0].attribs["href"]
  36. let videoInfoElements = $($(vodElement).find("[class=\"video-info\"]")).find("a")
  37. vodShort.vod_name = videoInfoElements[0].attribs["title"]
  38. vodShort.vod_remarks = $(videoInfoElements[1]).text()
  39. vodShort.vod_pic = $(vodElement).find("img")[0].attribs["data-src"]
  40. vod_list.push(vodShort)
  41. }
  42. return vod_list
  43. }
  44. async parseVodDetailFromDoc($, key) {
  45. let vodDetail = new VodDetail()
  46. let vodElement = $("[class=\"container-fluid\"]")
  47. vodDetail.vod_name = $($(vodElement).find("[class=\"page-title\"]")[0]).text()
  48. vodDetail.vod_remarks = $(vodElement).find("[class=\"tag my-1 text-center\"]")[0].attribs["href"].replaceAll("/", "")
  49. vodDetail.vod_pic = $(vodElement).find("video")[0].attribs["poster"]
  50. let html = $.html()
  51. let voteTag = Utils.getStrByRegex(/var voteTag="(.*?)";/g, html)
  52. let videoInfo = JSON.parse(Utils.getStrByRegex(/<script type="application\/ld\+json">(.*?)<\/script>/g, html))
  53. //
  54. // try {
  55. // let play_url_1 = await this.fetch(videoInfo["contentUrl"], null, this.getHeader())
  56. // await this.jadeLog.debug(`播放链接为:${play_url_1}`)
  57. // } catch (e) {
  58. // await this.jadeLog.error(e)
  59. // }
  60. voteTag = Crypto.enc.Utf8.stringify(Crypto.enc.Base64.parse(voteTag))
  61. let code = []
  62. for (let i = 0; i < voteTag.length; i++) {
  63. let k = i % key.length;
  64. code.push(String.fromCharCode(voteTag.charCodeAt(i) ^ key.charCodeAt(k)))
  65. }
  66. let play_url_2 = decodeURIComponent(Crypto.enc.Utf8.stringify(Crypto.enc.Base64.parse(code.join(""))))
  67. vodDetail.vod_play_from = "玩偶姐姐"
  68. vodDetail.vod_play_url = "玩偶姐姐" + "$" + play_url_2
  69. return vodDetail
  70. }
  71. async setClasses() {
  72. let html = await this.fetch(this.siteUrl, null, this.getHeader())
  73. if (html !== null) {
  74. let $ = load(html)
  75. let navElements = $("[class=\"list-unstyled topnav-menu d-flex d-lg-block align-items-center justify-content-center flex-fill topnav-menu-left m-0\"]").find("li")
  76. let index = 1
  77. let class_id = index.toString()
  78. this.classes = []
  79. this.classes.push({"type_name": "首页", "type_id": "1"})
  80. this.filterObj[class_id] = []
  81. for (const navElement of navElements) {
  82. let type_list = $(navElement).text().split("\n")
  83. let valueElements = $(navElement).find("a")
  84. let valueList = [{"n": "全部", "v": class_id}]
  85. let type_id = index.toString()
  86. for (const valueElement of valueElements) {
  87. let title = $(valueElement).text().replaceAll("\n", "")
  88. let href = valueElement.attribs["href"]
  89. if (href !== undefined) {
  90. valueList.push({"n": title, "v": href})
  91. }
  92. }
  93. type_list = type_list.filter(element => element !== "");
  94. this.filterObj[class_id].push({"key": type_id, "name": type_list[0], "value": valueList})
  95. //下面这段是为了切割使用
  96. // let new_value_list = []
  97. // for (let i = 0; i < valueList.length; i++) {
  98. // new_value_list.push(valueList[i])
  99. // if (i % 8 === 0 && i !== 0) {
  100. // this.filterObj[class_id].push({"key": type_id, "name": type_list[0], "value": new_value_list})
  101. // new_value_list = []
  102. // }
  103. // }
  104. // this.filterObj[class_id].push({"key": type_id, "name": type_list[0], "value": new_value_list})
  105. }
  106. let menuElements = $("[id=\"side-menu\"]").find("li")
  107. for (const menuElement of menuElements) {
  108. let type_id = $(menuElement).find("a")[0].attribs["href"]
  109. if (type_id !== undefined && type_id.indexOf(this.siteUrl) > -1) {
  110. let type_dic = {
  111. "type_name": $(menuElement).text(), "type_id": type_id
  112. }
  113. this.classes.push(type_dic)
  114. }
  115. }
  116. }
  117. }
  118. async setHomeVod() {
  119. let html = await this.fetch(this.siteUrl, null, this.getHeader())
  120. if (html != null) {
  121. let $ = load(html)
  122. this.homeVodList = await this.parseVodShortListFromDoc($)
  123. }
  124. }
  125. async setCategory(tid, pg, filter, extend) {
  126. if (extend["1"] !== undefined) {
  127. if (extend["1"] !== "1") {
  128. tid = extend[1]
  129. }
  130. }
  131. await this.jadeLog.info(`tid = ${tid}`)
  132. let cateUrl = ""
  133. if (tid.indexOf(this.siteUrl) > -1) {
  134. cateUrl = tid + pg.toString() + ".html"
  135. } else {
  136. cateUrl = this.siteUrl
  137. }
  138. this.limit = 36
  139. let html = await this.fetch(cateUrl, null, this.getHeader())
  140. if (html != null) {
  141. let $ = load(html)
  142. this.vodList = await this.parseVodShortListFromDoc($)
  143. }
  144. }
  145. async setDetail(id) {
  146. let html = await this.fetch(id, null, this.getHeader())
  147. if (html != null) {
  148. let $ = load(html)
  149. let key = Utils.getStrByRegex(/video\/(\w+).html/, id)
  150. this.vodDetail = await this.parseVodDetailFromDoc($, key)
  151. }
  152. }
  153. async setPlay(flag, id, flags) {
  154. this.playUrl = id
  155. this.playHeader = {}
  156. }
  157. async setSearch(wd, quick) {
  158. let searchUrl = this.siteUrl + "search/" + encodeURIComponent(wd)
  159. let html = await this.fetch(searchUrl, null, this.getHeader())
  160. if (html !== null) {
  161. let $ = load(html)
  162. this.vodList = await this.parseVodShortListFromDoc($)
  163. }
  164. }
  165. }
  166. let spider = new Doll()
  167. async function init(cfg) {
  168. await spider.init(cfg)
  169. }
  170. async function home(filter) {
  171. return await spider.home(filter)
  172. }
  173. async function homeVod() {
  174. return await spider.homeVod()
  175. }
  176. async function category(tid, pg, filter, extend) {
  177. return await spider.category(tid, pg, filter, extend)
  178. }
  179. async function detail(id) {
  180. return await spider.detail(id)
  181. }
  182. async function play(flag, id, flags) {
  183. return await spider.play(flag, id, flags)
  184. }
  185. async function search(wd, quick) {
  186. return await spider.search(wd, quick)
  187. }
  188. export function __jsEvalReturn() {
  189. return {
  190. init: init, home: home, homeVod: homeVod, category: category, detail: detail, play: play, search: search,
  191. };
  192. }
  193. export {spider}