75 lines
3.1 KiB
JavaScript
75 lines
3.1 KiB
JavaScript
// ==UserScript==
|
|
// @name 自动抓取用户信息
|
|
// @namespace https://miaowoo.cc/
|
|
// @version 0.1.6
|
|
// @description 自动抓取用户信息
|
|
// @author MiaoWoo
|
|
// @match https://www.mcbbs.net/forum.php?mod=viewthread&tid=**
|
|
// @match https://www.mcbbs.net/thread-**-*-*.html
|
|
// @match https://www.mcbbs.net/home.php?mod=space&uid=**
|
|
// @run-at document-start
|
|
// @grant none
|
|
// ==/UserScript==
|
|
|
|
(function () {
|
|
'use strict'
|
|
let store = window.localStorage
|
|
function postUserInfo(uid, username, glod, emerald) {
|
|
post('update', {
|
|
"uid": parseInt(uid),
|
|
"username": username,
|
|
"glod": parseInt(glod),
|
|
"emerald": parseInt(emerald),
|
|
})
|
|
}
|
|
function readUserInfo(user) {
|
|
var userline = user.querySelector('a.xw1')
|
|
if (!userline) return
|
|
var scoreInfo = user.querySelectorAll('dl.pil')[0]
|
|
postUserInfo(userline.href.split('uid=')[1].split('&')[0], userline.innerText, scoreInfo.children[1].innerText, scoreInfo.children[3].innerText)
|
|
}
|
|
function readAllUserInfo() {
|
|
let errorh1 = document.getElementsByTagName('h1')[0]
|
|
if (errorh1 && errorh1.innerText.startsWith(50)) {
|
|
return location.href = location.href
|
|
}
|
|
if (location.href == 'https://www.mcbbs.net/thread-1121423-1-1.html') {
|
|
console.log("已开启自动刷新...")
|
|
setTimeout(function () {
|
|
location.href = location.href
|
|
}, 20000)
|
|
}
|
|
let users = document.querySelectorAll('div.pls')
|
|
let lastpostuser = users[1].querySelector('a.xw1').innerText
|
|
if (store.lastpostuser == lastpostuser) return
|
|
store.lastpostuser = lastpostuser
|
|
users.forEach(readUserInfo)
|
|
}
|
|
function readSingleUserInfo() {
|
|
var uid = location.href.split('uid=')[1].split('&')[0]
|
|
var username = document.querySelector('.mt').outerText
|
|
var scoreInfo = document.querySelector('#psts').querySelector('.pf_l')
|
|
var glod = scoreInfo.children[3].innerText.replace(scoreInfo.children[3].children[0].innerText, '')
|
|
var emerald = scoreInfo.children[5].innerText.replace(scoreInfo.children[5].children[0].innerText, '')
|
|
postUserInfo(uid, username, glod, emerald)
|
|
}
|
|
window.alert = function (...args) { console.log(args) }
|
|
setTimeout(location.pathname == "/home.php" ? readSingleUserInfo : readAllUserInfo, 2000)
|
|
function updateOldUserInfo() {
|
|
fetch('https://reward.yumc.pw/mcbbs/updateList').then(resp => resp.json()).then(json => document.getElementById('scbar_txt').value = json.data)
|
|
}
|
|
async function post(method, data) {
|
|
return await fetch('https://reward.yumc.pw/mcbbs/' + method, {
|
|
method: "POST",
|
|
headers: {
|
|
'Accept': 'application/json',
|
|
'Content-Type': 'application/json'
|
|
},
|
|
body: JSON.stringify(data)
|
|
}).then(r => r.json())
|
|
}
|
|
if (window.parent == window) {
|
|
setTimeout(updateOldUserInfo, 3000)
|
|
}
|
|
})()
|