Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

补充插件支持 #1156

Merged
merged 2 commits into from
Oct 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions resource/sites/world-in-hd.net/browse.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
(function($) {
console.log("this is browse.js");
class App extends window.NexusPHPCommon {
init() {
this.initButtons();
this.initFreeSpaceButton();
// 设置当前页面
PTService.pageApp = this;
}

/**
* 初始化按钮列表
*/
initButtons() {
this.initListButtons();
}

/**
* 获取下载链接
*/
getDownloadURLs() {
let links = $(
"div.download-item a[href*='/torrents/download/']"
).toArray();
let siteURL = PTService.site.url;
if (siteURL.substr(-1) == "/") {
siteURL = siteURL.substr(0,siteURL.length-1);
}

if (links.length == 0) {
// "获取下载链接失败,未能正确定位到链接";
return this.t("getDownloadURLsFailed");
}

let urls = $.map(links, item => {
let link = $(item).attr("href");
if (link && link.substr(0, 4) != "http") {
link = siteURL + link;
}
return link;
});

return urls;
}

/**
* 确认大小是否超限
*/
confirmWhenExceedSize() {
return this.confirmSize(
$("div.torrent-h3 > span").text().split("-")[1].trim().replace('o','B')
);
}

/**
* 获取有效的拖放地址
* @param {*} url
*/
getDroperURL(url) {
if (url.indexOf("download") === -1) {
return "";
}

return url;
}
}
new App().init();
})(jQuery);
9 changes: 9 additions & 0 deletions resource/sites/world-in-hd.net/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@
"tags": ["影视"],
"host": "world-in-hd.net",
"collaborator": "luckiestone",
"plugins": [{
"name": "种子详情页面",
"pages": ["/torrent/view/"],
"scripts": ["/schemas/NexusPHP/common.js", "details.js"]
}, {
"name": "种子列表",
"pages": ["/torrents"],
"scripts": ["/schemas/NexusPHP/common.js", "browse.js"]
}],
"searchEntryConfig": {
"skipIMDbId": true,
"page": "/torrent/ajaxsearchtorrent/$key$",
Expand Down
42 changes: 42 additions & 0 deletions resource/sites/world-in-hd.net/details.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
(function($, window) {
console.log("this is details.js");
class App extends window.NexusPHPCommon {
init() {
this.initButtons();
// 设置当前页面
PTService.pageApp = this;
}
/**
* 初始化按钮列表
*/
initButtons() {
this.initDetailButtons();
}

/**
* 获取下载链接
*/
getDownloadURL() {
let query = $("div.download a[href*='/torrents/download/']");
let url = "";
if (query.length > 0) {
url = query.attr("href");
}

if (!url) {
return "";
}

return `${location.origin}${url}`;
}

/**
* 获取当前种子标题
*/
getTitle() {
let title = $("header.panel-heading h2").text().trim();
return title;
}
}
new App().init();
})(jQuery, window);