// ==UserScript== // @name PtVicomo-Torrent-Assistant // @namespace http://tampermonkey.net/ // @version 1.1.21 // @description 象岛审种助手 // @author zhattyt & 7ommy // @match *://*.ptvicomo.net/details.php* // @match *://*.ptvicomo.net/web/torrent-approval-page?torrent_id=* // @icon https://ptvicomo.net//favicon.ico // @require https://mirrors.sustech.edu.cn/cdnjs/ajax/libs/jquery/3.5.1/jquery.min.js // @grant GM_setValue // @grant GM_getValue // @grant GM_registerMenuCommand // @grant GM_xmlhttpRequest // @license MIT // @downloadURL https://update.greasyfork.icu/scripts/492321/PtVicomo-Torrent-Assistant.user.js // @updateURL https://update.greasyfork.icu/scripts/492321/PtVicomo-Torrent-Assistant.meta.js // ==/UserScript== /* 感谢原作者的大力支持!*/ /* * 改自Agsv-Torrent-Assistant */ (function () { 'use strict'; // 自定义参数 var review_info_position = 2; // 错误提示信息位置:1:页面最上方,2:主标题正下方,3:主标题正上方 var fontsize = "9pt"; // 一键通过按钮的字体大小 var timeout = 200; // 弹出页内鼠标点击间隔,单位毫秒,设置越小点击越快,但是对网络要求更高 var biggerbuttonsize = "40pt"; // 放大的按钮大小 var autoback = 0; // 一键通过后返回上一页面 let biggerbutton = GM_getValue("biggerbutton"); let autoclose = GM_getValue("autoclose"); let add_link_before_img = GM_getValue("add_link_before_img"); registerMenuCommand(); // 注册脚本菜单 function registerMenuCommand() { GM_registerMenuCommand(`${GM_getValue("biggerbutton", false) ? '✅' : '❌'} 审核按钮放大`, function () { biggerbutton = !biggerbutton; GM_setValue("biggerbutton", biggerbutton); location.reload(); }); GM_registerMenuCommand(`${GM_getValue("autoclose", false) ? '✅' : '❌'} 自动关闭页面`, function () { autoclose = !autoclose; GM_setValue("autoclose", autoclose); location.reload(); }); GM_registerMenuCommand(`${GM_getValue("add_link_before_img", false) ? '✅' : '❌'} 打开图片链接`, function () { add_link_before_img = !add_link_before_img; GM_setValue("add_link_before_img", add_link_before_img); location.reload(); }); } const userAgent = navigator.userAgent; const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(userAgent); if (isMobile) { biggerbuttonsize = "120pt"; autoclose = 0; autoback = 1; } var cat_constant = { 401: '电影', 402: '电视剧', 415: '短剧', 405: '动画', 416: '儿童动画', 403: '综艺', 404: '纪录片', 406: 'MV', 409: '音乐' }; var type_constant = { 8: 'UHD Blu-ray', 9: 'Blu-ray', 10: 'Remux', 11: 'Encode', 17: 'WEB-DL', 12: 'HDTV', 13: 'DVDR', 14: 'DVD', 15: 'CD', 18: 'Track', 16: 'Other' }; var encode_constant = { 7: 'H.266/VVC', 10: 'AV1', 6: 'H.265/HEVC', 1: 'H.264/AVC', 8: 'VP9', 4: 'MPEG-4/Xvid', 9: 'VP8', 2: 'VC-1', 5: 'Other' }; var audio_constant = { 16: 'Dolby TrueHD', 13: 'Dolby Atmos', 14: 'DTS-X', 19: 'DDP/EAC-3', 15: 'DTS-HDMA', 3: 'DTS', 1: 'FLAC', 6: 'AAC', 9: 'DD/AC3', 4: 'MP3', 2: 'APE', 18: 'LPCM', 11: 'WAV', 12: 'WMA', 5: 'OGG', 7: 'Other' }; var resolution_constant = { 6: '8K/4320P', 5: '4K/2160p', 1: '1080p', 2: '1080i', 7: '720p', 8: '480p', 9: 'Other' }; var area_constant = { 30: '中国大陆', 31: '港澳台地区', 32: '欧美', 33: '韩国', 34: '日本', 35: '东南亚', 36: '印度', 37: '其他国家/地区' } var group_constant = { 3: 'Eleph', 2: 'ElephWeb', 8: 'GodDramas', 29: 'HDHome', 27: 'HDH', 28: 'HDHTV', 10: 'FRDS', 11: 'PTerWEB', 12: 'HHWEB', 13: 'HaresWEB', 14: 'QHstudIo', 15: 'HDSky', 16: 'HDSWEB', 18: 'OurTV', 19: 'CHDBits', 23: 'CHDWEB', 17: 'YingWEB', 22: 'ADWeb', 21: 'AGSVWEB', 20: 'CMCT', 26: 'Wiki', 25: 'PTP', 24: 'BeyondHD ', 9: 'UKR', 5: 'Other' } const brief = $("#kdescr").text().toLowerCase(); // 获取简介 const containsIMDbLink = brief.includes("imdb.com"); // 检查内容是否包含 imdb.com 链接 const containsDoubanLink = brief.includes("douban.com"); // 检查内容是否包含 douban.com 链接 const containsTMDBLink = brief.includes("themoviedb.org"); // 检查内容是否包含 themoviedb.org 链接 // console.log(brief); var dbUrl; // 是否包含影片链接 if (containsIMDbLink || containsDoubanLink || containsTMDBLink) { dbUrl = true; // console.log("内容中包含 IMDb 或 Douban 链接"); } else { dbUrl = false; // console.log("内容中不包含 IMDb 或 Douban 链接"); } var isBriefContainsInfo = false; //是否包含Mediainfo if (brief.includes("general") && brief.includes("video") && brief.includes("audio")) { isBriefContainsInfo = true; // console.log("简介中包含Mediainfo"); } // 中文详细info if (brief.includes("概览") && brief.includes("视频") && brief.includes("音频")) { isBriefContainsInfo = true; // console.log("简介中包含Mediainfo"); } if (brief.includes("disc info") || brief.includes("disc size") || brief.includes(".release.info") || brief.includes("general information")) { isBriefContainsInfo = true; } // 杜比官种 if (brief.includes("nfo信息")) { isBriefContainsInfo = true; } // frds官种 if (brief.includes("release date") && brief.includes("source")) { isBriefContainsInfo = true; } if (brief.includes("release.name") || brief.includes("release.size")) { isBriefContainsInfo = true; } // CMCT/HDCTV官种 if ((brief.includes("文件名") || brief.includes("文件名称")) && (brief.includes("体 积") || brief.includes("体  积"))) { isBriefContainsInfo = true; } // HDChina官种 if (brief.includes("source type") || brief.includes("video bitrate")) { isBriefContainsInfo = true; } var isBriefContainsForbidReseed = false; //是否包含禁止转载 if (brief.includes("禁止转载")) { isBriefContainsForbidReseed = true; } var title = $('#top').text(); // 主标题 var exclusive = 0; if (title.indexOf('禁转') >= 0) { exclusive = 1; } title = title.replace(/禁转|\((已审|冻结|待定)\)|\[(免费|50%|2X免费|30%|2X 50%)\]|\(限时\d+.*\)|\[2X\]|\[(推荐|热门|经典|已审)\]/g, '').trim(); title = title.replace(/剩余时间.*/g, '').trim(); title = title.replace("(禁止)", '').trim(); // console.log(title); var title_lowercase = title.toLowerCase(); var officialSeed = 0; //官组种子 var godDramaSeed = 0; //驻站短剧组种子 var officialMusicSeed = 0; //官组音乐种子 if (title_lowercase.includes("eleph")) { officialSeed = 1; //console.log("官种"); } if (title_lowercase.includes("goddramas")) { godDramaSeed = 1; //console.log("短剧种"); } // console.log("title_lowercase:"+title_lowercase); var title_type, title_encode, title_audio, title_resolution, title_group, title_is_complete, title_is_episode, title_x265, title_x264; // 媒介 if(title_lowercase.includes("web-dl") || title_lowercase.includes("webdl")){ title_type = 17; } else if (title_lowercase.includes("remux")) { title_type = 10; } else if (((title_lowercase.includes("blu-ray") || title_lowercase.includes("bluray")) && !(title.includes(" HEVC") || title.includes(" AVC") || title.includes(" VC-1") || title.match(/\bMPEG-?[24]/)))) { title_type = 11; } else if (title_lowercase.includes("webrip") || title_lowercase.includes("web-rip") || title_lowercase.includes("dvdrip") || title_lowercase.includes("bdrip")) { title_type = 11; } else if (title_lowercase.includes("hdtv")) { title_type = 12; } else if (title_lowercase.includes("uhd blu-ray") || title_lowercase.includes("uhd bluray") || title_lowercase.includes(" uhd ")) { title_type = 8; } else if (title_lowercase.includes("blu-ray") || title_lowercase.includes("bluray")) { title_type = 9; } else if (title_lowercase.includes("DVDR") || title_lowercase.includes("DVDR")) { title_type = 13; } else if (title_lowercase.includes("DVD") || title_lowercase.includes("DVD")) { title_type = 14; } else if (title_lowercase.includes("CD") || title_lowercase.includes("CD")) { title_type = 15; } else if (title_lowercase.includes("Track") || title_lowercase.includes("CD")) { title_type = 18; } // 视频编码 if (title_lowercase.includes("264") || title_lowercase.includes("avc")) { title_encode = 1; } else if (title_lowercase.includes("265") || title_lowercase.includes("hevc")) { title_encode = 6; } else if (title_lowercase.includes("266") || title_lowercase.includes("vvc")) { title_encode = 7; } else if (title_lowercase.includes("vc") || title_lowercase.includes("vc-1")) { title_encode = 2; } else if (title_lowercase.includes("Xvid") || title_lowercase.includes("MPEG-4")) { title_encode = 4; } else if (title_lowercase.includes("av1") || title_lowercase.includes("av-1")) { title_encode = 10; } else if (title_lowercase.includes("VP9") || title_lowercase.includes("VP9")) { title_encode = 8; } else if (title_lowercase.includes("VP8") || title_lowercase.includes("VP8")) { title_encode = 9; } //console.log("title_encode:"+title_encode); // 音频 可能有多个音频,选择与标题不一致,跳过 if (title_lowercase.includes("flac")) { title_audio = 1; } else if (title_lowercase.includes("lpcm")) { title_audio = 18; } else if (title_lowercase.includes("ddp") || title_lowercase.includes("dd+") || title.search(/E-?AC-?3/) != -1) { title_audio = 19; } else if (title_lowercase.includes("aac")) { title_audio = 6; } else if (title_lowercase.includes("ac3") || title_lowercase.includes("dd")) { title_audio = 9; } else if (title_lowercase.includes("truehd") && title_lowercase.includes("atmos")) { title_audio = 16; } else if (title_lowercase.includes("dts-hd ma") || title_lowercase.includes("dts-hdma") || title_lowercase.includes("dts-hd")) { title_audio = 15; } else if (title_lowercase.includes("dts:x") || title_lowercase.includes("dts: x")) { title_audio = 14; } else if (title_lowercase.includes("dts") && !title_lowercase.includes("dts-x")) { title_audio = 3; } // 分辨率 if (title_lowercase.includes("1080p")) { title_resolution = 1; } else if (title_lowercase.includes("1080i")) { title_resolution = 2; } else if (title_lowercase.includes("720p") || title_lowercase.includes("720i")) { title_resolution = 7; } else if (title_lowercase.includes("480p") || title_lowercase.includes("480i")) { title_resolution = 8; } else if (title_lowercase.includes("4k") || title_lowercase.includes("2160p") || title_lowercase.includes("2160i") || title_lowercase.includes("uhd")) { title_resolution = 5; } else if (title_lowercase.includes("8k") || title_lowercase.includes("4320p") || title_lowercase.includes("4320i")) { title_resolution = 6; } if (title_lowercase.includes("complete")) { title_is_complete = true; } if (title_lowercase.match(/s\d+e\d+/i) || title_lowercase.match(/ep\d+/i)) { // if (title_lowercase.match(/s\d+e\d+/i)) { title_is_episode = true; // console.log("===============================当前为分集"); } if (title_lowercase.includes("x265")) { title_x265 = true; } if (title_lowercase.includes("x264")) { title_x264 = true; } // 检测标题是否包含不被信任的制作组 const keywords = [ "fgt", "hao4k", "mp4ba", "rarbg", "gpthd", "seeweb", "dreamhd", "blacktv", "xiaomi", "huawei", "momohd", "ddhdtv", "nukehd", "tagweb", "sonyhd", "minihd", "bitstv", "-alt", "rarbg", "mp4ba", "fgt", "hao4k", "batweb", "dbd-raws", "xunlei", "zerotv", "lelvetv" ]; function containsKeyword(text) { const lowerCaseText = text.toLowerCase(); for (let keyword of keywords) { if (lowerCaseText.includes(keyword)) { return true; } } return false; } var is_untrusted_group = false; if (containsKeyword(title_lowercase)) { is_untrusted_group = true; } var subtitle, cat, type, encode, audio, resolution, area, group, anonymous, is_complete, category; var poster; var fixtd, douban, imdb, mediainfo, mediainfo_short, mediainfo_err; var isGroupSelected = false; //是否选择了制作组 var isReseedProhibited = false; //是否选择了禁转标签 var isOfficialSeedLabel = false; //是否选择了官种标签 var isIceSeedLabel = false; //是否选择了官种标签 var isMediainfoEmpty = false; //Mediainfo栏内容是否为空 var isEpisode = false; //电视剧是否为分集 var isTagAudioChinese = false; //标签是否选择国语 var isTagTextChinese = false; //标签是否选择中字 var isTagTextEnglish = false; //标签是否选择英字 var isTagResident = false; //标签是否选择驻站 var isTagBigTorrent = false; //标签是否选择大包 var isBiggerThan1T = false; //种子体积是否大于1T var isAudioChinese = false; var isTextChinese = false; var isTextEnglish = false; var mi_x265 = false; var mi_x264 = false; var isSubtitleAnime = false; //副标题是是否包含动画 var tdlist = $('#outer').find('td'); for (var i = 0; i < tdlist.length; i++) { var td = $(tdlist[i]); if (td.text() == '副标题' || td.text() == '副標題') { subtitle = td.parent().children().last().text(); console.log("============================subtitle:"+subtitle); if (subtitle.includes("动画")) { isSubtitleAnime = true; } } if (td.text() == '添加') { var text = td.parent().children().last().text(); if (text.indexOf('匿名') >= 0) { anonymous = 1; } } if (td.text() == '标签') { var text = td.parent().children().last().text(); // console.log('标签: '+text); if (text.includes("禁转")) { isReseedProhibited = true; // console.log("已选择禁转标签"); } if (text.includes("官方")) { isOfficialSeedLabel = true; // console.log("已选择官方标签"); } if (text.includes("驻站")) { isTagResident = true; // console.log("已选择驻站标签"); } if (text.includes("合集")) { isEpisode = true; // console.log("已选择官方标签"); } if (text.includes("国语")) { isTagAudioChinese = true; // console.log("已选择官方标签"); } if (text.includes("中字")) { isTagTextChinese = true; // console.log("已选择官方标签"); } if (text.includes("特效")) { isTagTextEnglish = true; // console.log("已选择官方标签"); } if (text.includes("Dolby Vison")) { isTagBigTorrent = true; // console.log("已选择杜比标签"); } if (text.includes("HDR")) { isTagBigTorrent = true; // console.log("已选择HDR标签"); } if (text.includes("合集")) { isTagBigTorrent = true; // console.log("已选择合集标签"); } if (text.includes("HDR 10+")) { isTagBigTorrent = true; // console.log("已选择HDR标签"); } if (text.includes("HDR 10")) { isTagBigTorrent = true; // console.log("已选择HDR标签"); } if (text.indexOf('完结') >= 0) { is_complete = true; } } if (td.text() == '基本信息') { var text = td.parent().children().last().text(); if (text.includes("制作组")) { isGroupSelected = true; //console.log("已选择制作组"); } if (text.includes("TB")) { isBiggerThan1T = true; //console.log("种子体积大于1T"); } // console.log(text) // 类型 if (text.indexOf('电影') >= 0) { cat = 401; } else if (text.indexOf('电视剧') >= 0) { cat = 402; } else if (text.indexOf('综艺') >= 0) { cat = 403; } else if (text.indexOf('纪录片') >= 0) { cat = 404; } else if (text.indexOf('动画') >= 0) { cat = 405; } else if (text.indexOf('MV') >= 0) { cat = 406; } else if (text.indexOf('音乐') >= 0) { cat = 409; } else if (text.indexOf('短剧') >= 0) { cat = 415; } else if (text.indexOf('儿童动画') >= 0) { cat = 416; } console.log("============================cat:"+cat); // 格式 if (text.indexOf('UHD Blu-ray') >= 0) { type = 8; } else if (text.indexOf('DVD') >= 0) { type = 14; } else if (text.indexOf('Remux') >= 0) { type = 10; } else if (text.indexOf('HDTV') >= 0) { type = 12; } else if (text.indexOf('Encode') >= 0) { type = 11; } else if (text.indexOf('CD') >= 0) { type = 15; } else if (text.indexOf('WEB-DL') >= 0) { type = 17; } else if (text.indexOf('Blu-ray') >= 0) { type = 9; } else if (text.indexOf('Track') >= 0) { type = 18; } else if (text.indexOf('媒介: Other') >= 0) { type = 16; } // console.log("type:"+type); // 视频编码 if (text.indexOf('H.265/HEVC') >= 0) { encode = 6; } else if (text.indexOf('H.264/AVC') >= 0) { encode = 1; } else if (text.indexOf('VC-1') >= 0) { encode = 2; } else if (text.indexOf('Xvid') >= 0) { encode = 4; } else if (text.indexOf('AV1') >= 0) { encode = 10; } else if (text.indexOf('VP9') >= 0) { encode = 8; } else if (text.indexOf('VP8') >= 0) { encode = 9; } else if (text.indexOf('编码: Other') >= 0) { encode = 5; } // console.log("encode:"+encode); //console.log("audio:"+audio); // 音频编码 if (text.indexOf('DTS-HDMA') >= 0) { audio = 15; } else if (text.indexOf('DTS-HD MA') >= 0) { audio = 15; } else if (text.indexOf('DTS:X') >= 0) { audio = 14; } else if (text.indexOf('DTS') >= 0) { audio = 3; } else if (text.indexOf('Dolby Atmos') >= 0) { audio = 13; } else if (text.indexOf('Dolby TrueHD') >= 0) { audio = 16; } else if (text.indexOf('LPCM') >= 0) { audio = 18; } else if (text.indexOf('DD/AC3') >= 0) { audio = 9; } else if (text.indexOf('AAC') >= 0) { audio = 6; } else if (text.indexOf('FLAC') >= 0) { audio = 1; } else if (text.indexOf('APE') >= 0) { audio = 2; } else if (text.indexOf('WAV') >= 0) { audio = 11; } else if (text.indexOf('MP3') >= 0) { audio = 4; } else if (text.indexOf('M4A') >= 0) { audio = 12; } else if (text.indexOf('DDP/EAC-3') >= 0) { audio = 19; } else if (text.indexOf('OGG') >= 0) { audio = 5; } else if (text.indexOf('音频编码: Other') >= 0) { audio = 7; } // console.log("audio:"+audio); // 分辨率 if (text.indexOf('2160p') >= 0) { resolution = 5; } else if (text.indexOf('1080p') >= 0) { resolution = 1; } else if (text.indexOf('1080i') >= 0) { resolution = 2; } else if (text.indexOf('4320p') >= 0) { resolution = 6; } else if (text.indexOf('720p') >= 0) { resolution = 7; } else if (text.indexOf('480') >= 0) { resolution = 8; } else if (text.indexOf('分辨率: Other') >= 0) { resolution = 9; } // console.log("resolution:"+resolution); // 地区 if (text.indexOf('中国大陆') >= 0) { area = 30; } else if (text.indexOf('港澳台地区') >= 0) { area = 31; } else if (text.indexOf('香港') >= 0) { area = 31; } else if (text.indexOf('澳门') >= 0) { area = 31; } else if (text.indexOf('台湾') >= 0) { area = 31; } else if (text.indexOf('欧美') >= 0) { area = 32; } else if (text.indexOf('欧洲') >= 0) { area = 32; } else if (text.indexOf('美国') >= 0) { area = 32; } else if (text.indexOf('英国') >= 0) { area = 32; } else if (text.indexOf('德国') >= 0) { area = 32; } else if (text.indexOf('意大利') >= 0) { area = 32; } else if (text.indexOf('法国') >= 0) { area = 32; } else if (text.indexOf('俄罗斯') >= 0) { area = 32; } else if (text.indexOf('西班牙') >= 0) { area = 32; } else if (text.indexOf('葡萄牙') >= 0) { area = 32; } else if (text.indexOf('苏联') >= 0) { area = 32; } else if (text.indexOf('日本') >= 0) { area = 34; } else if (text.indexOf('韩国') >= 0) { area = 33; } else if (text.indexOf('印度') >= 0) { area = 36; } else if (text.indexOf('东南亚') >= 0) { area = 35; } else if (text.indexOf('泰国') >= 0) { area = 35; } else if (text.indexOf('新加坡') >= 0) { area = 35; } else if (text.indexOf('越南') >= 0) { area = 35; } else if (text.indexOf('马来西亚') >= 0) { area = 35; } else if (text.indexOf('其他国家/地区') >= 0) { area = 37; } if (text.indexOf('Eleph') >= 0) { category = 3; } else if (text.indexOf('ElephWeb') >= 0) { category = 2; } else if (text.indexOf('GodDramas') >= 0) { category = 8; } else if (text.indexOf('UKR') >= 0) { category = 9; } else if (text.indexOf('制作组: Other') >= 0) { category = 5; } // console.log("category:"+category) } if (td.text() == '行为') { fixtd = td.parent().children().last(); } if (td.text().trim() == '海报') { poster = $('#kposter').children().attr('src'); } /* if (td.text().trim() == "IMDb信息") { if (td.parent().last().find("a").text() == "这里"){ var fullUrl = new URL(href, window.location.origin).toString(); td.parent().find("a").attr("href",fullUrl); let href = td.parent().last().find("a").attr("href").trim(); td.parent().last().find("a").click(); } }*/ if (td.text() == "MediaInfo") { //$(this).find("") let md = td.parent().children().last(); if (md.text() == "") { isMediainfoEmpty = true; //console.log("MediaInfo栏为空"); } //console.log(md.text()) //console.log(md.children('div').length) //console.log(md.children('table').length) if (md.children('div').length > 0) { mediainfo_short = md.text().replace(/\s+/g, ''); mediainfo = md.text().replace(/\s+/g, ''); } else if (md.children('table').length > 0) { mediainfo_short = md.children().children().children().eq(0).text().replace(/\s+/g, ''); mediainfo = md.children().children().children().eq(1).text().replace(/\s+/g, ''); } if ((containsBBCode(mediainfo) || containsBBCode(mediainfo_short)) && mediainfo_short === mediainfo) { mediainfo_err = "MediaInfo中含有bbcode" } // 根据 Mediainfo 判断标签选择 // console.log("===========================mediainfo:"+mediainfo); const audioMatch = mediainfo.match(/Audio.*?Language:(\w+)/); const audioLanguage = audioMatch ? audioMatch[1] : 'Not found'; // console.log(`The language of the audio is: ${audioLanguage}`); if (!audioLanguage.includes("Text") && (audioLanguage.includes("Chinese") || audioLanguage.includes("Mandarin"))) { isAudioChinese = true; } const textMatches = mediainfo.match(/Text.*?Language:(\w+)/g) || []; const textLanguages = textMatches.map(text => { const match = text.match(/Language:(\w+)/); return match ? match[1] : 'Not found'; }); var textLanguage = textLanguages.join(',') // console.log(`The languages of the text are: ${textLanguage}`); if (textLanguage.includes("Chinese")) { isTextChinese = true; } if (textLanguage.includes("English")) { isTextEnglish = true; } if (mediainfo.includes("x264")) { mi_x264 = true; } if (mediainfo.includes("x265")) { mi_x265 = true; } // alert(isAudioChinese.toString() + isTextChinese.toString() + isTextEnglish.toString()); } } function containsBBCode(str) { // 创建一个正则表达式来匹配 [/b]、[/color] 等结束标签 const regex = /\[\/(b|color|i|u|img)\]/; // 使用正则表达式的 test 方法来检查字符串 return regex.test(str); } let imdbUrl = $('#kimdb a').attr("href") /* if (imdbText.indexOf('douban') >= 0) { douban = $(element).attr('title'); } */ // console.log(imdbUrl) /* if (imdbText.indexOf('imdb') >= 0) { imdb = $(element).attr('title'); } */ var screenshot = ''; var pngCount = 0; var imgCount = 0; var isBriefContainsInfoImg = false; //是否包含冗余的影片参数图片 $('#kdescr img').each(function (index, element) { var src = $(element).attr('src'); if (src != undefined) { if (index != 0) { screenshot += '\n'; } screenshot += src.trim(); if (src.includes("img.pterclub.com/images/2024/01/10/49401952f8353abd4246023bff8de2cc.png") || src.includes("Mediainfo.png")) { isBriefContainsInfoImg = true; } } if (src.indexOf('.png') >= 0) { pngCount++; } imgCount++; }); let error = false; let warning = false; switch (review_info_position) { case 1: $('#outer').prepend('

'); $('#outer').prepend('

'); break; case 2: $('#top').after('


'); break; case 3: $('#top').before('


'); break; default: $('#top').after('


'); } $('#assistant-tooltips').append('【错误】: '); $('#assistant-tooltips-warning').append('【警告】: '); /* if (/\s+/.test(title)) { $('#assistant-tooltips').append('主标题包含空格
'); error = true; } */ if (!subtitle) { $('#assistant-tooltips').append('副标题为空
'); error = true; } if (isSubtitleAnime && cat !== 405) { $('#assistant-tooltips').append('类型未选择动画
'); error = true; } if (!cat) { $('#assistant-tooltips').append('未选择分类
'); error = true; } if (!type) { $('#assistant-tooltips').append('未选择媒介
'); error = true; } else { // console.log("标题检测格式为" + type_constant[title_type] + ",选择格式为" + type_constant[type]); if (title_type && title_type !== type) { $('#assistant-tooltips').append("标题检测媒介为" + type_constant[title_type] + ",选择媒介为" + type_constant[type] + '
'); error = true; } } if (!encode) { $('#assistant-tooltips').append('未选择主视频编码
'); error = true; } else { if (title_encode && title_encode !== encode) { // console.log("标题检测视频编码为" + encode_constant[title_encode] + ",选择视频编码为" + encode_constant[encode]); $('#assistant-tooltips').append("标题检测视频编码为" + encode_constant[title_encode] + ",选择视频编码为" + encode_constant[encode] + '
'); error = true; } } if (!audio) { $('#assistant-tooltips').append('未选择主音频编码
'); error = true; } else { if (title_audio && title_audio !== audio) { // console.log("标题检测音频编码为" + audio_constant[title_audio] + ",选择音频编码为" + audio_constant[audio]); // $('#assistant-tooltips-warning').append("标题检测音频编码为" + audio_constant[title_audio] + ",选择音频编码为" + audio_constant[audio] + '
'); // warning = true; $('#assistant-tooltips').append("标题检测音频编码为" + audio_constant[title_audio] + ",选择音频编码为" + audio_constant[audio] + '
'); error = true; } } if (!resolution) { $('#assistant-tooltips').append('未选择分辨率
'); error = true; } else { if (title_resolution && title_resolution !== resolution) { $('#assistant-tooltips').append("标题检测分辨率为" + resolution_constant[title_resolution] + ",选择分辨率为" + resolution_constant[resolution] + '
'); error = true; } } if ((resolution === 9 ||resolution === 8 || title_resolution === 8) && !(godDramaSeed || officialSeed)){ $('#assistant-tooltips-warning').append("请检查是否有更高清的资源
"); warning = true; } if (title_is_complete && !is_complete && (cat === 402 || cat === 403 || cat === 404 || cat === 415)) { $('#assistant-tooltips-warning').append("完结电视剧请添加完结标签
"); warning = true; } if (!dbUrl && cat !==415) { $('#assistant-tooltips').append('简介中未检测到IMDb或豆瓣链接
'); error = true; } if(mediainfo_short === mediainfo && officialSeed == true) { $('#assistant-tooltips').append('媒体信息未解析
'); error = true; } if(mediainfo_short === mediainfo && officialSeed == false) { // $('#assistant-tooltips-warning').append('媒体信息未解析
'); // warning = true; } if(mediainfo_err) { $('#assistant-tooltips').append(mediainfo_err).append('
'); error = true; } if (officialSeed && !isGroupSelected) { $('#assistant-tooltips').append('未选择制作组
'); error = true; } if(is_untrusted_group) { $('#assistant-tooltips').append('检测为疑似未信任制作组发布的资源
'); error = true; } if (godDramaSeed && !isReseedProhibited && isBriefContainsForbidReseed) { $('#assistant-tooltips').append('未选择禁转标签
'); error = true; } if (godDramaSeed && cat !== 415) { $('#assistant-tooltips').append('未选择短剧类型
'); error = true; } if (godDramaSeed && !isTagResident) { $('#assistant-tooltips').append('未选择驻站标签
'); error = true; } if (isBriefContainsInfoImg) { $('#assistant-tooltips-warning').append('请删除多余的影片参数/媒体信息图片
'); warning = true; } if (!officialSeed && isOfficialSeedLabel) { $('#assistant-tooltips').append('非官种不可选择官方标签
'); error = true; } if (officialSeed && !isOfficialSeedLabel) { $('#assistant-tooltips').append('官种未选择官方标签
'); error = true; } // if (isBriefContainsInfo) { // $('#assistant-tooltips').append('简介中包含Mediainfo
'); // error = true; // } if(isAudioChinese && !isTagAudioChinese) { $('#assistant-tooltips').append('未选择国语标签
'); error = true; } if(isTextChinese && !isTagTextChinese) { $('#assistant-tooltips-warning').append('未选择中字标签
'); warning = true; } // if(!isBiggerThan1T && isTagBigTorrent) { // $('#assistant-tooltips').append('小于1T的资源无需添加大包标签
'); // error = true; // } /* if (pngCount < 3) { $('#assistant-tooltips').append('PNG格式的图片未满3张
'); error = true; } */ if (imgCount < 1) { $('#assistant-tooltips').append('缺少海报或截图
'); error = true; } if (isMediainfoEmpty) { $('#assistant-tooltips').append('Mediainfo栏为空
'); error = true; } if(mi_x264 && !title_x264 && officialSeed && category === 1){ $('#assistant-tooltips').append('主标题中编码应为 H.264/AVC
'); error = true; } if(mi_x265 && !title_x265 && officialSeed && category === 6){ $('#assistant-tooltips').append('主标题中编码应为 H.265/HEVC
'); error = true; } if (officialMusicSeed) { $('#assistant-tooltips').empty(); error = false; if (!isGroupSelected) { $('#assistant-tooltips').append('未选择制作组
'); error = true; } } //判断排除有声书什么的 // if (cat === 409) { // $('#assistant-tooltips').empty(); // error = false; // $('#assistant-tooltips-warning').empty(); // warning = false; // } if(cat === 409 && !title_lowercase.includes("khz")) { $('#assistant-tooltips').append('主标题缺少采样频率
'); error = true; } if(cat === 409 && !title_lowercase.includes("bit")) { $('#assistant-tooltips').append('主标题缺少比特率
'); error = true; } var isFoundReviewLink = false; // 是否有审核按钮(仅有权限人员可一键填入错误信息) // 添加一键通过按钮到页面 function addApproveLink() { var tdlist = $('#outer').find('td'); var text; for (var i = 0; i < tdlist.length; i++) { var td = $(tdlist[i]); if (td.text() == '行为') { var elements = td.parent().children().last(); elements.contents().each(function () { // console.log(this.textContent); if (isFoundReviewLink) { $(this).before(' |  一键通过'); // Add new hyperlink and separator $('#addcuruser').after(' |  一键通过'); // Add new hyperlink and separator var actionLink = document.querySelector('#approvelink'); var approvelink_foot = document.querySelector('#approvelink_foot'); actionLink.style.fontSize = fontsize; approvelink_foot.style.fontSize = fontsize; actionLink.addEventListener('click', function (event) { if (error) { // alert("当前种子仍有错误!"); GM_setValue('autoFillErrorInfo', false); var popup = document.createElement('div'); popup.id = "popup"; popup.style.fontSize = "20pt"; popup.style.position = "fixed"; popup.style.top = "10%"; popup.style.left = "10%"; popup.style.transform = "translate(-50%, -50%)"; popup.style.backgroundColor = "rgb(234, 32, 39)"; popup.style.color = "white"; popup.style.padding = "15px"; popup.style.borderRadius = "10px"; popup.style.display = "none"; document.body.appendChild(popup); // 弹出悬浮框提示信息 popup.innerText = "当前种子仍有错误!"; popup.style.display = "block"; // 1秒后隐藏悬浮框 setTimeout(function () { popup.style.display = "none"; }, 1000); } event.preventDefault(); // 阻止超链接的默认行为 // 设置标记以供新页面使用 GM_setValue('autoCheckAndConfirm', true); if (autoclose) { GM_setValue('autoClose', true); } if (autoback) { GM_setValue('autoBack', true); } // 找到并点击指定按钮 var specifiedButton = document.querySelector('#approval'); // 替换为实际的按钮选择器 if (specifiedButton) { specifiedButton.click(); } }); approvelink_foot.addEventListener('click', function (event) { if (error) { // alert("当前种子仍有错误!"); GM_setValue('autoFillErrorInfo', false); var popup = document.createElement('div'); popup.id = "popup"; popup.style.fontSize = "20pt"; popup.style.position = "fixed"; popup.style.top = "10%"; popup.style.left = "10%"; popup.style.transform = "translate(-50%, -50%)"; popup.style.backgroundColor = "rgb(234, 32, 39)"; popup.style.color = "white"; popup.style.padding = "15px"; popup.style.borderRadius = "10px"; popup.style.display = "none"; document.body.appendChild(popup); // 弹出悬浮框提示信息 popup.innerText = "当前种子仍有错误!"; popup.style.display = "block"; // 1秒后隐藏悬浮框 setTimeout(function () { popup.style.display = "none"; }, 1000); } event.preventDefault(); // 阻止超链接的默认行为 // 设置标记以供新页面使用 GM_setValue('autoCheckAndConfirm', true); if (autoclose) { GM_setValue('autoClose', true); } if (autoback) { GM_setValue('autoBack', true); } // 找到并点击指定按钮 var specifiedButton = document.querySelector('#approval'); // 替换为实际的按钮选择器 if (specifiedButton) { specifiedButton.click(); } }); $('#approvelink_foot').hide(); return false; // Exit the loop } if (this.textContent.includes('审核')) { // Check for text nodes containing the separator // console.log("找到审核按钮"); isFoundReviewLink = true; } }); } } } // $('#assistant-tooltips').click(function(){ // if (error && isFoundReviewLink) { // GM_setValue('autoFillErrorInfo', true); // // console.log("errorinfo_before:"+$("#approval-comment").html()); // GM_setValue('errorInfo', document.getElementById('assistant-tooltips').innerHTML); // // 找到并点击指定按钮 // var specifiedButton = document.querySelector('#approval'); // 替换为实际的按钮选择器 // if (specifiedButton) { // specifiedButton.click(); // } // } else { // console.log("当前种子无错误或非种审人员,点击无效"); // } // }); // 主页面操作 if (/https:\/\/.*\.ptvicomo\.net\/details\.php\?id=.*/.test(window.location.href)) { addApproveLink(); //console.log("autoFillErrorInfo:"+GM_getValue('autoFillErrorInfo')); //console.log("autoCheckAndConfirm:"+GM_getValue('autoCheckAndConfirm')); if (biggerbutton) { if (!error && isFoundReviewLink) { // console.log("此种子未检测到错误"); document.querySelector('#approvelink').style.fontSize = biggerbuttonsize; document.querySelector('#approvelink_foot').style.fontSize = biggerbuttonsize; } else if ((error && isFoundReviewLink)) { document.querySelector('#approval').style.fontSize = biggerbuttonsize; } } if (GM_getValue('autoClose', false)) { GM_setValue('autoClose', false); window.close(); } if (GM_getValue('autoBack', false)) { GM_setValue('autoBack', false); window.history.back(); } } // 主页面操作 if (window.location.href.includes("ptvicomo.net/details.php?id=")) { console.log("========================addApproveLink"); addApproveLink(); //console.log("autoFillErrorInfo:"+GM_getValue('autoFillErrorInfo')); //console.log("autoCheckAndConfirm:"+GM_getValue('autoCheckAndConfirm')); if (biggerbutton) { if (!error && isFoundReviewLink) { // console.log("此种子未检测到错误"); document.querySelector('#approvelink').style.fontSize = biggerbuttonsize; document.querySelector('#approvelink_foot').style.fontSize = biggerbuttonsize; } else if ((error && isFoundReviewLink)) { document.querySelector('#approval').style.fontSize = biggerbuttonsize; } } if (GM_getValue('autoClose', false)) { GM_setValue('autoClose', false); window.close(); } if (GM_getValue('autoBack', false)) { GM_setValue('autoBack', false); window.history.back(); } } // 弹出页的操作 if (window.location.href.includes("ptvicomo.net/web/torrent-approval-page\?torrent_id=")) { // 使用延迟来等待页面可能的异步加载 setTimeout(function () { //console.log("autoFillErrorInfo:"+GM_getValue('autoFillErrorInfo')); //console.log("autoCheckAndConfirm:"+GM_getValue('autoCheckAndConfirm')); if (GM_getValue('autoCheckAndConfirm', false)) { var radioPassButton = document.querySelector("body > div.form-comments > form > div:nth-child(3) > div > div:nth-child(4) > div").click(); if (radioPassButton) { radioPassButton.checked = true; } var confirmButton = document.querySelector("body > div.form-comments > form > div:nth-child(5) > div > button:nth-child(1)"); if (confirmButton) { // 完成操作后,清除标记 GM_setValue('autoCheckAndConfirm', false); GM_setValue('autoFillErrorInfo', false); confirmButton.click(); } } if (GM_getValue('autoFillErrorInfo', false)) { var radioDenyButton = document.querySelector("body > div.form-comments > form > div:nth-child(3) > div > div:nth-child(6)").click(); if (radioDenyButton) { radioDenyButton.checked = true; } var errorInfo = GM_getValue('errorInfo', ""); // console.log("errorInfo: "+errorInfo); errorInfo = errorInfo.replace("【错误】: ", ""); errorInfo = errorInfo.replace("MediaInfo中含有bbcode", "请将MediaInfo中多余的标签删除,例如:[b][color=royalblue]******[/color][/b]"); errorInfo = errorInfo.replace("简介中包含Mediainfo", "请删去简介中的MediaInfo"); errorInfo = errorInfo.replace("媒体信息未解析", "请使用通过MediaInfo或者PotPlayer获取的正确的mediainfo信息,具体方法详见教程第四步https://www.ptvicomo.net/forums.php?action=viewtopic&forumid=4&topicid=8"); errorInfo = errorInfo.replace("简介中未检测到IMDb或豆瓣链接", "请补充imdb/豆瓣链接"); errorInfo = errorInfo.replace("副标题为空", "请补充副标题"); // console.log("errorInfo: "+errorInfo); $("#approval-comment").text(errorInfo); // 完成操作后,清除标记 // GM_setValue('autoFillErrorInfo', false); // GM_setValue('errorInfo', ""); } }, timeout); // 可能需要根据实际情况调整延迟时间 } // 快捷键 ctrl+e 一键通过 document.addEventListener('keydown', function (e) { if (e.key === 'F4') { if (!error) { let button = document.querySelector('#approvelink'); button.click(); } else { let button = document.querySelector('#approval'); button.click(); } } if (e.key === 'F3') { window.close(); } }); // 种子存在错误便设置变量 if (error && isFoundReviewLink) { GM_setValue('autoFillErrorInfo', true); GM_setValue('errorInfo', document.getElementById('assistant-tooltips').innerHTML); } else if (!error) { GM_setValue('autoFillErrorInfo', false); // GM_setValue('errorInfo', ""); } if (add_link_before_img && isFoundReviewLink) { // 查找ID为kdescr的元素内的所有元素 var images = document.querySelectorAll('#kdescr img'); // 遍历这些图片 images.forEach(function (img) { // 获取每个图片的源链接(src属性) var src = img.getAttribute('src'); // 创建一个新的元素 var link = document.createElement('a'); // 设置元素的href属性为图片的链接 link.setAttribute('href', src); // 设置标签的目标为新标签页打开 link.setAttribute('target', '_blank'); // 插入文字或说明到标签中,如果需要 link.textContent = '打开图片链接 ( 种审用 )'; // 创建一个新的
元素用于分行 var breakLine1 = document.createElement('br'); // 将
元素插入到
元素后面 img.parentNode.insertBefore(breakLine1, img); // 将元素插入到图片元素前面 img.parentNode.insertBefore(link, img); // link.style.color = '#EA2027'; // 创建一个新的
元素用于分行 var breakLine2 = document.createElement('br'); // 将
元素插入到
元素后面 img.parentNode.insertBefore(breakLine2, img); }); // $('img').click(function(event) { // // 阻止默认的点击行为 // event.preventDefault(); // // 获取图片链接 // var imageSrc = $(this).attr('src'); // // 打开图片链接 // window.open(imageSrc, '_blank'); // }); // // 为所有 元素添加鼠标移入事件监听器 // $('img').mouseenter(function() { // // 将鼠标样式设置为手型 // $(this).css('cursor', 'pointer'); // }); // // 为所有 元素添加鼠标移出事件监听器 // $('img').mouseleave(function() { // // 将鼠标样式恢复默认 // $(this).css('cursor', 'auto'); // }); } //console.log("============================error:"+error+"isFoundReviewLink:"+isFoundReviewLink); //console.log("============================autoFillErrorInfo:"+GM_getValue('autoFillErrorInfo')+"errorInfo:"+GM_getValue('errorInfo')); if (error) { $('#assistant-tooltips').css('background', '#EA2027'); } else { $('#assistant-tooltips').empty(); $('#assistant-tooltips').append('此种子未检测到错误'); $('#assistant-tooltips').css('background', '#8BC34A'); } if (!warning) { $('#assistant-tooltips-warning').hide(); } if (!error && warning) { $('#assistant-tooltips').hide(); } // $('#assistant-tooltips-warning').hide(); // console.log("warning:"+warning); })();