PT站点cookie等信息发送到Ptools
当前为
// ==UserScript==
// @name PtToPtools
// @author ngfchl
// @description PT站点cookie等信息发送到Ptools
// @namespace http://tampermonkey.net/
// @match https://1ptba.com/*
// @match https://52pt.site/*
// @match https://audiences.me/*
// @match https://byr.pt/*
// @match https://ccfbits.org/*
// @match https://club.hares.top/*
// @match https://discfan.net/*
// @match https://et8.org/*
// @match https://filelist.io/*
// @match https://hdatmos.club/*
// @match https://hdchina.org/*
// @match https://hdcity.leniter.org/*
// @match https://hdhome.org/*
// @match https://hdmayi.com/*
// @match https://hdsky.me/*
// @match https://hdtime.org/*
// @match https://hudbt.hust.edu.cn/*
// @match https://iptorrents.com/t
// @match https://kp.m-team.cc/*
// @match https://lemonhd.org/*
// @match https://nanyangpt.com/*
// @match https://npupt.com/*
// @match https://ourbits.club/*
// @match https://pt.btschool.club/*
// @match https://pt.eastgame.org/*
// @match https://pt.hdbd.us/*
// @match https://pt.keepfrds.com/*
// @match https://pterclub.com/*
// @match https://pthome.net/*
// @match https://springsunday.net/*
// @match https://totheglory.im/*
// @match https://u2.dmhy.org/*
// @match https://www.beitai.pt/*
// @match https://www.haidan.video/*
// @match https://www.hdarea.co/*
// @match https://www.hddolby.com/*
// @match https://www.htpt.cc/*
// @match https://www.nicept.net/*
// @match https://www.pthome.net/*
// @match https://www.pttime.org
// @match https://www.tjupt.org/*
// @match https://www.torrentleech.org
// @match https://www.carpet.net/*
// @match https://wintersakura.net/*
// @match https://hhanclub.top/*
// @match https://www.hdpt.xyz/*
// @match https://ptchina.org/*
// @match http://www.oshen.win/*
// @match https://www.hd.ai/*
// @match http://ihdbits.me/*
// @match https://zmpt.cc/*
// @match https://leaves.red/*
// @match https://piggo.me/*
// @match https://pt.2xfree.org/*
// @match https://sharkpt.net/*
// @match https://www.dragonhd.xyz/*
// @match https://oldtoons.world/*
// @match http://hdmayi.com/*
// @match https://www.3wmg.com/*
// @match https://carpt.net/*
// @match https://pt.0ff.cc/*
// @match https://hdpt.xyz/*
// @match https://azusa.wiki/*
// @match https://pt.itzmx.com/*
// @match https://gamegamept.cn/*
// @match https://srvfi.top/*
// @match https://www.icc2022.com/*
// @match http://leaves.red/*
// @match https://xinglin.one/*
// @match http://uploads.ltd/*
// @match https://cyanbug.net/*
// @match https://ptsbao.club/*
// @match https://greatposterwall.com/*
// @match https://gainbound.net/*
// @match http://hdzone.me/*
// @match https://www.pttime.org/*
// @match https://pt.msg.vg/*
// @match https://pt.soulvoice.club/*
// @match https://www.hitpt.com/*
// @match https://hdfans.org/*
// @match https://www.joyhd.net/*
// @match https://hdzone.me/*
// @version 0.0.4
// @grant GM_xmlhttpRequest
// @grant GM_addStyle
// @license GPL-3.0 License
/**
@require file:///Users/ngf/PycharmProjects/ptools/static/test/test.js
*/
// ==/UserScript==
/*
日志:
2023.01.28 优化:无须右键菜单,直接在网页显示悬浮窗,点击运行
2023.01.26 优化:适配站点进一步完善,如遇到PTOOLS支持的站点没有油猴脚本选项,请把网址发给我;优化:取消油猴脚本发送COOKIE的一小时限制
2023.01.26 修复bug,调整为右键菜单启动
2023.01.26 更新逻辑,一小时内不会重复更新
2023.01.25 完成第一版0.0.1
2023.01.24 开始编写第一版脚本
*/
/**
* 小白白们请看这里
* 需要修改的项目
* ptools:ptools本地服务端地址,请在此修改设置ptools的访问地址,如http://192.168.1.2:8000
* token:ptools.toml中设置的token,获取安全密钥token,可以在ptools.toml中自定义,格式 [token] token="ptools"
* @type {string}
*/
var ptools = "http://127.0.0.1:8000/";
var token = "ptools";
// this.$ = this.jQuery = jQuery.noConflict(true);
/**
* 以下内容无需修改
* @type {string}
*/
var path = "tasks/monkey_to_ptools";
var i = 1;
(function () {
'use strict';
if (i == 1) {
// main()
action()
addStyle()
i++;
}
})();
function getSite() {
var data = ''
GM_xmlhttpRequest({
url: `${ptools}${path}?url=${document.location.origin + '/'}&token=${token}`,
method: "GET",
responseType: "json",
onload: function (response) {
let res = response.response
console.log(res)
if (res.code !== 0) {
console.log(res.msg)
data = false
return
} else {
console.log('站点信息获取成功!', res.data)
data = res.data
let params = getData(res.data)
console.log(params)
ajax_post(params)
}
}
})
}
function getData(site_info) {
// var site_info = a_getSite()
console.log(site_info)
if (site_info === false || site_info === '' || site_info == null) return;
console.log(site_info.uid_xpath)
//获取cookie与useragent
let user_agent = window.navigator.userAgent
let cookie = document.cookie
//获取UID
let re = /\d{2,}/;
let href = document.evaluate(site_info.uid_xpath, document).iterateNext().textContent
console.log(href)
let user_id = href.match(re)
console.log(user_id)
let data = `user_id=${user_id[0]}&site_id=${site_info.site_id}&cookie=${cookie}&token=${token}&user_agent=${user_agent}`
return data
}
function main() {
var data = getSite();
console.log(data)
// if (data == false) {
// return;
// } else {
// a_ajax_post(data)
// }
}
function ajax_post(data) {
GM_xmlhttpRequest({
url: `${ptools}${path}`,
method: "POST",
responseType: "json",
headers: {"Content-Type": "application/x-www-form-urlencoded"},
data: data,
onload: function (response) {
console.log(response)
let res = response.response
console.log(res)
if (res.code !== 0) {
console.log(res.msg)
return false
}
console.log('站点信息获取成功!', res.msg)
console.log(res)
alert('PTools提醒您:' + res.msg)
},
onerror: function (response) {
console.log("站点信息获取失败")
}
})
}
function action() {
var wrap = document.createElement("div");
var first = document.body.firstChild;
wrap.innerHTML = `<img src="${ptools}static/logo4.png" style="width: 100%;"><br><label class="ui-upload">同步Cookie
<input id="sync_cookie"/></label>`
wrap.className = 'wrap'
var wraphtml = document.body.insertBefore(wrap, first);
document.getElementById("sync_cookie").onclick = a_main;
}
function addStyle() {
let css = `
.wrap {
z-index:99999;
position: fixed;
width: 85px;
margin-right: 0;
margin-top: 240px;
float: left;
opacity: 0.4;
font-size: 12px;
}
.wrap:hover {
opacity: 1.0;
}
.wrap > img {
border-radius: 5px;
}
.ui-upload {
width: 100%;
height: 22px;
text-align: center;
position: relative;
cursor: pointer;
color: #fff;
background: GoldEnrod;
border-radius: 3px;
overflow: hidden;
display: inline-block;
text-decoration: none;
margin-top: 1px;
line-height: 22px;
}
.ui-upload input {
font-size: 12px;
width: 100%;
height: 100%;
text-align: center;
background: GoldEnrod;
margin-left: -1px;
position: absolute;
opacity: 0;
filter: alpha(opacity=0);
cursor: pointer;
}
`
GM_addStyle(css)
}