-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
134 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
// ==MiruExtension== | ||
// @name JAVHD.icu | ||
// @version v0.0.1 | ||
// @author bachig26 | ||
// @lang jp | ||
// @license MIT | ||
// @package javhd.icu | ||
// @type bangumi | ||
// @icon https://javhd.icu/wp-content/uploads/2020/04/javhdicuu-logO.png | ||
// @webSite https://javhd.icu | ||
// @nsfw true | ||
// ==/MiruExtension== | ||
|
||
export default class extends Extension { | ||
async latest(page) { | ||
const res = await this.request("/page/${page}/"); | ||
const bsxList = await this.querySelectorAll(res, "div.col-xl-3.col-lg-3.col-md-6.col-6"); | ||
const novel = []; | ||
for (const element of bsxList) { | ||
const html = await element.content; | ||
const url = await this.getAttributeText(html, "a", "href"); | ||
const title = await this.querySelector(html, "h3.post-title > a").text; | ||
const cover = await this.querySelector(html, "img").getAttributeText("src"); | ||
//console.log(title+cover+url) | ||
novel.push({ | ||
title: title.trim(), | ||
url, | ||
cover, | ||
}); | ||
} | ||
return novel; | ||
} | ||
|
||
async search(kw) { | ||
const kwstring = kw.replace(/ /g, '+'); | ||
const res = await this.request(`/?s=${kwstring}`); | ||
const bsxList = await this.querySelectorAll(res, "div.item.col-xl-4.col-lg-4.col-md-4.col-sm-6"); | ||
const novel = []; | ||
|
||
for (const element of bsxList) { | ||
const html = await element.content; | ||
const url = await this.getAttributeText(html, "a", "href"); | ||
const title = await this.querySelector(html, "h3.post-title > a").text; | ||
const cover = await this.querySelector(html, "img").getAttributeText("src"); | ||
novel.push({ | ||
title: title.trim(), | ||
url, | ||
cover, | ||
}); | ||
} | ||
return novel; | ||
} | ||
|
||
async detail(url) { | ||
const res = await this.request("", { | ||
headers: { | ||
"Miru-Url": url, | ||
}, | ||
}); | ||
|
||
const title = await this.querySelector(res, "h1").text; | ||
const cover = await this.querySelector(res, "meta[property='og:image']").getAttributeText("content"); | ||
const desc = await this.querySelector(res, "div.post-entry > p").text; | ||
|
||
const urlPatterns = [/https:\/\/emturbovid\.[^\s'"]+/]; | ||
|
||
let episodeUrl = ""; | ||
|
||
for (const pattern of urlPatterns) { | ||
const match = res.match(pattern); | ||
if (match) { | ||
episodeUrl = match[0]; | ||
break; | ||
} | ||
} | ||
|
||
function limitWords(text, maxWords) { | ||
const words = text.split(/\s+/); | ||
if (words.length > maxWords) { | ||
return words.slice(0, maxWords).join(" ") + " ..."; | ||
} | ||
return text; | ||
} | ||
|
||
return { | ||
title: limitWords(title.trim(), 10), | ||
cover, | ||
desc, | ||
episodes: [ | ||
{ | ||
title: "Directory", | ||
urls: [ | ||
{ | ||
name: limitWords(title.trim(), 10), | ||
url: episodeUrl, | ||
}, | ||
], | ||
}, | ||
], | ||
}; | ||
} | ||
|
||
async watch(url) { | ||
const res = await this.request("", { | ||
headers: { | ||
"Miru-Url": url, | ||
}, | ||
}); | ||
|
||
let directUrl = ""; | ||
{ | ||
const res = await this.request("", { | ||
headers: { | ||
"Miru-Url": url, | ||
"referer": url.startsWith("https://emturbovid.com/"), | ||
"origin": url.startsWith("https://emturbovid.com"), | ||
}, | ||
method: "Get", | ||
}); | ||
|
||
const directUrlMatch = res.match(/(https:\/\/[^\s'"]*\.m3u8[^\s'"]*)/); | ||
directUrl = directUrlMatch ? directUrlMatch[0] : ""; | ||
} | ||
|
||
return { | ||
type: "hls", | ||
url: directUrl || "", | ||
headers: { | ||
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.142.86 Safari/537.36", | ||
referer: directUrl, | ||
}, | ||
}; | ||
} | ||
} |