// ==UserScript==
// @name PT万能签到(不会反复跳转)
// @namespace http://tampermonkey.net/
// @version 2.0.1
// @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/*
// ==/UserScript==
(function () {
GM_registerMenuCommand('重新签到', reload);
const host = window.location.host;
const href = window.location.href;
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 verify(img){
if(img === null){
var 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 inputList = document.getElementsByTagName('input');
for (var i = 0; i < inputList.length; i++) {
var attr = inputList[i].name;
if (attr == "imagestring") {
inputList[i].value=result;
}
}
var showupbutton = document.getElementById('showupbutton');
showupbutton.click();
},
onerror: function (e){
console.log("error",e);
}
});
return;
}
}
function toLowerCase(value) {
return value && value.toString().toLowerCase();
}
function reload(){
GM_deleteValue(AttendanceDay);
window.location.reload();
}
setTimeout(function () {
var attendanceTexts = [
"签 到",
"签到",
"每日打卡",
"attend",
"簽到",
];
var lastAttendanceDay = GM_getValue(AttendanceDay);
if (lastAttendanceDay === today) {
console.log("今日已签到:"+lastAttendanceDay);
return;
}
for (var index in attendanceTexts) {
var text = attendanceTexts[index];
var allElements = xpath("//*[contains(translate(text(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'),'"+text+"')]",document);
for (var i = 0; i < allElements.snapshotLength; i++) {
var ptSignElements = allElements.snapshotItem(i);
if (ptSignElements != null) {
//console.log("ptSignElements.innerText",ptSignElements.innerText);
if (toLowerCase(ptSignElements.innerText).indexOf(text) != -1) {
if (ptSignElements.innerText.indexOf("已") != -1 ||ptSignElements.innerText.indexOf("签到详情") != -1 || toLowerCase(ptSignElements.innerText).indexOf("attend got") != -1) {
console.log("已签到:" + window.location.host);
GM_setValue(AttendanceDay, today);
}else {
//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);
var firstload = true;
//eslint-disable-next-line no-loop-func
var imgElObserver = new MutationObserver((mutations) => {
mutations.forEach(function(mutation) {
mutation.addedNodes.forEach(node =>{
var 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);
})();