// ==UserScript==
// @name PT万能签到(不会反复跳转)
// @namespace http://tampermonkey.net/
// @version 2.0.7
// @license MIT
// @author 40
// @description 支持99.999%PT站点签到,兼容大聪明,论坛存在签到字样不会反复跳转。
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_deleteValue
// @grant GM_registerMenuCommand
// @grant GM_xmlhttpRequest
// @connect 192.168.246.53
// @connect movie-pilot.org
// @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAgCAYAAACYTcH3AAAAAXNSR0IArs4c6QAAAbxJREFUWEftlz1IQlEUx/9Xn4hBRGNNBdXQh0a1RIsRfdDmUCQ0CAUt0ahCi0sNrrUEDm4NDQ8iomiwIWjRIKmlpaYc4xVU0vPduI8EET/O1ScOvTs+/uec3/ufc97lMRCPqhspgD8FFOcWMQSqXjgC2FBAccxSYhhFJDSqbnAA19TEfzEpAP6A4iDVIYn+L4w3oq05GHY4x3S1tsX2OvHyXEAy8UntLEKbHejrdyK2+1ErJsO5cZaNd8eYL6xtg+GgXoUWwpilGeOrzBfR0gAm2w3DOc8KGLEldY+wPPdawOV5vq62KFhcdqOn10luLRmGTNCE0IapZp7tjO3MxJQLd+kf8n61bGZWgh6MjCo4Vb/JQC2BKYI8Pug4Of5qnzONgpj3E/U6EJbPL7lxdZGHeONKpxkQKZiBQQXrIY/JIKwvB2oWRApGiIU7omg5kBUg0jCVgIbHXCak7LBWajN5ZkqDSx0Sz60AaciZIpQAmltwI5czpNa31p435Az5wyEptGHsW1tyZMB8Ue0GHDOygVbrGcMt84bfNxjjCauTy+bjQND88R+PvvkBx36t31vZ5BL6DDiS9/Guw1/5Ifek+Vvu+AAAAABJRU5ErkJggg==
// @include http://hdmayi.com/*
// @include http://ihdbits.me/*
// @include https://zhuque.in/*
// @include https://1ptba.com/*
// @include https://audiences.me/*
// @include https://byr.pt/*
// @include https://ccfbits.org/*
// @include https://club.hares.top/*
// @include https://cyanbug.net/*
// @include https://discfan.net/*
// @include https://et8.org/*
// @include https://filelist.io/*
// @include https://hdatmos.club/*
// @include https://hdchina.org/*
// @include https://hdcity.leniter.org/*
// @include https://hdfans.org/*
// @include https://hdhome.org/*
// @include https://hdmayi.com/*
// @include https://hdsky.me/*
// @include https://hdtime.org/*
// @include https://hdvideo.one/*
// @include https://hhanclub.top/*
// @include https://hudbt.hust.edu.cn/*
// @include https://iptorre*
// @include https://kp.m-team.cc/*
// @include https://lemonhd.org/*
// @include https://nanyangpt.com/*
// @include https://npupt.com/*
// @include https://ourbits.club/*
// @include https://piggo.me/*
// @include https://pt.btschool.club/*
// @include https://pt.eastgame.org/*
// @include https://pt.hdbd.us/*
// @include https://ptchina.org/*
// @include https://pterclub.com/*
// @include https://pthome.net/*
// @include https://totheglory.im/*
// @include https://www.beitai.pt/*
// @include https://www.carpet.net/*
// @include https://www.haidan.video/*
// @include https://www.hd.ai/*
// @include https://www.hdarea.co/*
// @include https://hdarea.club/*
// @include https://www.hddolby.com/*
// @include https://www.hdpt.xyz/*
// @include https://www.htpt.cc/*
// @include https://www.icc2022.com/*
// @include https://www.nicept.net/*
// @include https://www.oshen.win/*
// @include https://www.pthome.net/*
// @include https://www.tjupt.org/*
// @include https://www.torrent*
// @include https://zmpt.cc/*
// @include https://carpt.net/*
// @include https://wintersakura.net/*
// @include https://sharkpt.net/*
// @include https://gainbound.net/*
// @include https://hdvideo.one/*
// @include https://pt.2xfree.org/*
// @include http://www.oshen.win/*
// @include http://uploads.ltd/*
// @include https://ubits.club/*
// @include http://hdzone.me/*
// @include https://pt.soulvoice.club/*
// @include https://www.gamegamept.com/*
// @include https://pt.itzmx.com/*
// @include https://pt.0ff.cc/*
// @include https://carpt.net/*
// @include https://www.pttime.org/*
// @include https://rousi.zip/*
// @include https://pandapt.net/*
// @include https://invites.fun/*
// @include https://wukongwendao.top/*
// @include https://hdfun.me/*
// @include https://hhanclub.top/*
// @include https://pt.hd4fans.org/*
// @include https://pt.gtk.pw/*
// @include https://star-space.net/*
// @include https://u2.dmhy.org/*
// @include https://www.agsvpt.com/*
// @include https://www.qingwapt.com/*
// @include https://pt.cdfile.org/*
// @include https://bitporn.eu/*
// @include https://www.haidan.video/*
// @include https://lemonhd.club/*
// ==/UserScript==
(function () {
GM_registerMenuCommand('重新签到', reload);
const host = window.location.host;
const href = window.location.href;
//refresh();
const AttendanceDay = host + 'AttendanceDay';
function formatDate(date) {
let year = date.getFullYear();
let month = (date.getMonth() + 1).toString().padStart(2, '0');
let day = date.getDate().toString().padStart(2, '0');
return `${year}-${month}-${day}`;
}
const today = formatDate(new Date());
function xpath(query,node) {
return document.evaluate(query, node, null,
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
}
function getElementByXPath(xpath) {
const result = document.evaluate(
xpath,
document,
null,
XPathResult.FIRST_ORDERED_NODE_TYPE,
null
);
return result.singleNodeValue;
}
function verify(img){
if(img === null){
const codeList = document.getElementsByTagName('img');
for (var i = 0; i < codeList.length; i++) {
var src = codeList[i].src;
if (codeList[i].alt == "CAPTCHA"){
img = codeList[i];
}
}
}
// console.log("--img:",img.src,img.width,img.height)
if (img.src && img.width != 0 && img.height != 0) {
var canvas = document.createElement("canvas");
var ctx = canvas.getContext("2d");
canvas.width = img.width;
canvas.height = img.height;
ctx.drawImage(img, 0, 0, img.width, img.height);
var code = canvas.toDataURL("image/png");
const datas = {
// "image_file": String(code.split("base64,")[1]),
"base64_img": String(code.split("base64,")[1])
}
GM_xmlhttpRequest({
method: "POST",
//url: "http://192.168.246.53/hh",
url: atob("aHR0cHM6Ly9tb3ZpZS1waWxvdC5vcmcvY2FwdGNoYS9iYXNlNjQ="),
data: JSON.stringify(datas),
headers: {
"Content-Type": "application/json",
},
responseType: "json",
onload: function(response) {
var result = JSON.parse(response.responseText).result
console.log("result:",result);
var resulthash = MD5(result);
var inputList = document.getElementsByTagName('input');
let i = 0;
let j = 0;
for (; j < inputList.length; j++) {
let attr = inputList[j].name;
if (attr == "imagestring") {
inputList[j].value=result;
break;
}
}
for (; i < inputList.length; i++) {
let attr = inputList[i].name;
if (attr == "imagehash") {
if(resulthash == inputList[i].value){
console.log("识别成功");
break;
}else{
reload();
//let s = "ABCDEFGHIJKLMNPQRSTUVWY123456789";
//let result1 = Array(6).join().split(',').map(function() { return s.charAt(Math.floor(Math.random() * s.length)); }).join('');
//console.log("result1",result1);
//inputList[j].value=result1;
//inputList[i].value=MD5(result1);
}
}
}
waitRandomSeconds(1, 3);
var showupbutton = document.getElementById('showupbutton');
showupbutton.click();
},
onerror: function (e){
console.log("error",e);
}
});
return;
}
}
function waitRandomSeconds(min, max) {
var randomTime = Math.random() * (max - min) + min;
randomTime = Math.round(randomTime * 1000); // 转换为毫秒
setTimeout(function() {
console.log('等待了 ' + randomTime + ' 毫秒');
}, randomTime);
}
function toLowerCase(value) {
return value && value.toString().toLowerCase();
}
function refresh(){
if(host.indexOf("lemonhd")!=-1 && href.indexOf("signup.php")!=-1){
let intervalId = setInterval(() => {
try {
var fullXPath = "/html/body/table[2]/tbody/tr/td/table/tbody/tr/td/h2";
var h2Element = getElementByXPath(fullXPath);
console.log(h2Element);
console.log(h2Element.innerText);
if(h2Element.innerText === "对不起"){
window.location.reload();
}else{
console.log('clearing the interval');
clearInterval(intervalId);
}
} catch (error) {
console.error(error);
console.log('clearing the interval');
clearInterval(intervalId);
}
}, 1000);
}
}
function beforeSignupHook(){
// do something before signup
if(host.indexOf("lemonhd")!=-1){
try {
var syElement = getElementByXPath("/html/body/table[2]/tbody/tr[1]/td/table[2]/tbody/tr/td/table/tbody/tr/td[1]/div[1]/a[4]/b");
if(syElement.innerText.indexOf("神游")!=-1 && href.indexOf("lottery.php")==-1){
syElement.click();
return true;
}
var sybuttonElement = getElementByXPath("/html/body/table[2]/tbody/tr[2]/td/table[1]/tbody/tr[4]/td/div/form[1]/button");
if(sybuttonElement.innerText.indexOf("免费")!=-1){
console.log("使用免费神游")
sybuttonElement.click();
}
} catch (error) {
console.error(error);
}
}
return false;
}
function reload(){
GM_deleteValue(AttendanceDay);
window.location.reload();
}
function rhex(num) {
var hex_chr = "0123456789abcdef";
var str = "";
for (var j = 0; j <= 3; j++){
str += hex_chr.charAt((num >> (j * 8 + 4)) & 0x0F) +
hex_chr.charAt((num >> (j * 8)) & 0x0F);
}
return str;
}
function str2blks_MD5(str) {
var nblk = ((str.length + 8) >> 6) + 1;
var blks = new Array(nblk * 16);
for (var i = 0; i < nblk * 16; i++) blks[i] = 0;
for (i = 0; i < str.length; i++){
blks[i >> 2] |= str.charCodeAt(i) << ((i % 4) * 8);
}
blks[i >> 2] |= 0x80 << ((i % 4) * 8);
blks[nblk * 16 - 2] = str.length * 8;
return blks;
}
function add(x, y) {
var lsw = (x & 0xFFFF) + (y & 0xFFFF);
var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
return (msw << 16) | (lsw & 0xFFFF);
}
function rol(num, cnt) {
return (num << cnt) | (num >>> (32 - cnt));
}
function cmn(q, a, b, x, s, t) {
return add(rol(add(add(a, q), add(x, t)), s), b);
}
function ff(a, b, c, d, x, s, t) {
return cmn((b & c) | ((~b) & d), a, b, x, s, t);
}
function gg(a, b, c, d, x, s, t) {
return cmn((b & d) | (c & (~d)), a, b, x, s, t);
}
function hh(a, b, c, d, x, s, t) {
return cmn(b ^ c ^ d, a, b, x, s, t);
}
function ii(a, b, c, d, x, s, t) {
return cmn(c ^ (b | (~d)), a, b, x, s, t);
}
function MD5(str) {
var x = str2blks_MD5(str);
var a = 1732584193;
var b = -271733879;
var c = -1732584194;
var d = 271733878;
for (var i = 0; i < x.length; i += 16) {
var olda = a;
var oldb = b;
var oldc = c;
var oldd = d;
a = ff(a, b, c, d, x[i + 0], 7, -680876936);
d = ff(d, a, b, c, x[i + 1], 12, -389564586);
c = ff(c, d, a, b, x[i + 2], 17, 606105819);
b = ff(b, c, d, a, x[i + 3], 22, -1044525330);
a = ff(a, b, c, d, x[i + 4], 7, -176418897);
d = ff(d, a, b, c, x[i + 5], 12, 1200080426);
c = ff(c, d, a, b, x[i + 6], 17, -1473231341);
b = ff(b, c, d, a, x[i + 7], 22, -45705983);
a = ff(a, b, c, d, x[i + 8], 7, 1770035416);
d = ff(d, a, b, c, x[i + 9], 12, -1958414417);
c = ff(c, d, a, b, x[i + 10], 17, -42063);
b = ff(b, c, d, a, x[i + 11], 22, -1990404162);
a = ff(a, b, c, d, x[i + 12], 7, 1804603682);
d = ff(d, a, b, c, x[i + 13], 12, -40341101);
c = ff(c, d, a, b, x[i + 14], 17, -1502002290);
b = ff(b, c, d, a, x[i + 15], 22, 1236535329);
a = gg(a, b, c, d, x[i + 1], 5, -165796510);
d = gg(d, a, b, c, x[i + 6], 9, -1069501632);
c = gg(c, d, a, b, x[i + 11], 14, 643717713);
b = gg(b, c, d, a, x[i + 0], 20, -373897302);
a = gg(a, b, c, d, x[i + 5], 5, -701558691);
d = gg(d, a, b, c, x[i + 10], 9, 38016083);
c = gg(c, d, a, b, x[i + 15], 14, -660478335);
b = gg(b, c, d, a, x[i + 4], 20, -405537848);
a = gg(a, b, c, d, x[i + 9], 5, 568446438);
d = gg(d, a, b, c, x[i + 14], 9, -1019803690);
c = gg(c, d, a, b, x[i + 3], 14, -187363961);
b = gg(b, c, d, a, x[i + 8], 20, 1163531501);
a = gg(a, b, c, d, x[i + 13], 5, -1444681467);
d = gg(d, a, b, c, x[i + 2], 9, -51403784);
c = gg(c, d, a, b, x[i + 7], 14, 1735328473);
b = gg(b, c, d, a, x[i + 12], 20, -1926607734);
a = hh(a, b, c, d, x[i + 5], 4, -378558);
d = hh(d, a, b, c, x[i + 8], 11, -2022574463);
c = hh(c, d, a, b, x[i + 11], 16, 1839030562);
b = hh(b, c, d, a, x[i + 14], 23, -35309556);
a = hh(a, b, c, d, x[i + 1], 4, -1530992060);
d = hh(d, a, b, c, x[i + 4], 11, 1272893353);
c = hh(c, d, a, b, x[i + 7], 16, -155497632);
b = hh(b, c, d, a, x[i + 10], 23, -1094730640);
a = hh(a, b, c, d, x[i + 13], 4, 681279174);
d = hh(d, a, b, c, x[i + 0], 11, -358537222);
c = hh(c, d, a, b, x[i + 3], 16, -722521979);
b = hh(b, c, d, a, x[i + 6], 23, 76029189);
a = hh(a, b, c, d, x[i + 9], 4, -640364487);
d = hh(d, a, b, c, x[i + 12], 11, -421815835);
c = hh(c, d, a, b, x[i + 15], 16, 530742520);
b = hh(b, c, d, a, x[i + 2], 23, -995338651);
a = ii(a, b, c, d, x[i + 0], 6, -198630844);
d = ii(d, a, b, c, x[i + 7], 10, 1126891415);
c = ii(c, d, a, b, x[i + 14], 15, -1416354905);
b = ii(b, c, d, a, x[i + 5], 21, -57434055);
a = ii(a, b, c, d, x[i + 12], 6, 1700485571);
d = ii(d, a, b, c, x[i + 3], 10, -1894986606);
c = ii(c, d, a, b, x[i + 10], 15, -1051523);
b = ii(b, c, d, a, x[i + 1], 21, -2054922799);
a = ii(a, b, c, d, x[i + 8], 6, 1873313359);
d = ii(d, a, b, c, x[i + 15], 10, -30611744);
c = ii(c, d, a, b, x[i + 6], 15, -1560198380);
b = ii(b, c, d, a, x[i + 13], 21, 1309151649);
a = ii(a, b, c, d, x[i + 4], 6, -145523070);
d = ii(d, a, b, c, x[i + 11], 10, -1120210379);
c = ii(c, d, a, b, x[i + 2], 15, 718787259);
b = ii(b, c, d, a, x[i + 9], 21, -343485551);
a = add(a, olda);
b = add(b, oldb);
c = add(c, oldc);
d = add(d, oldd);
}
return rhex(a) + rhex(b) + rhex(c) + rhex(d);
}
setTimeout(function () {
var attendanceTexts = [
"签 到",
"签到",
"每日打卡",
"attend",
"簽到",
];
const lastAttendanceDay = GM_getValue(AttendanceDay);
if (lastAttendanceDay === today) {
console.log("今日已签到:"+lastAttendanceDay);
return;
}
if (beforeSignupHook()){
return;
}
let tElements = xpath("//text()[contains(translate(normalize-space(.), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'),'签到')]",document).snapshotItem(0);
if (tElements && tElements.data && tElements.data.indexOf("已") != -1) {
console.log("检测到已签到:" + window.location.host);
GM_setValue(AttendanceDay, today);
}
for (var index in attendanceTexts) {
const text = attendanceTexts[index];
const allElements = xpath("//*[contains(translate(normalize-space(text()), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'),'"+text+"')]",document);
for (var i = 0; i < allElements.snapshotLength; i++) {
const ptSignElements = allElements.snapshotItem(i);
if (ptSignElements != null) {
if (toLowerCase(ptSignElements.innerText).indexOf(text) != -1) {
//console.log("触发跳转:"+lastAttendanceDay);
try{
if(href.indexOf("attendance.php")==-1){
if(host.indexOf("ourbits")!=-1 ){
//eslint-disable-next-line no-loop-func
setTimeout(function(){ptSignElements.click();},5000);
}else if(host.indexOf("hdsky")!=-1 ){
//eslint-disable-next-line no-loop-func
setTimeout(function(){ptSignElements.click();},5000);
let firstload = true;
//eslint-disable-next-line no-loop-func
const imgElObserver = new MutationObserver((mutations) => {
mutations.forEach(function(mutation) {
mutation.addedNodes.forEach(node =>{
let img = xpath("//*/img[@id='showupimg']",node);
if(img.snapshotLength === 1 && firstload){
firstload = false;
img = document.getElementById('showupimg');
img.addEventListener('load',() => {
console.log('Image loaded');
verify(img);
});
img.addEventListener('error',() => {
console.log('Error loading image');
})
}
});
});
});
imgElObserver.observe(document.body, {
subtree: true,
childList: true,
attributes: true,
});
}else{
ptSignElements.click();
}
}
console.log("签到:" + window.location.host);
GM_setValue(AttendanceDay, today);
} catch (error) {
// do nothing
console.log("error:"+error);
}
}
}
}
}
}, 1200);
})();