吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 290|回复: 12
上一主题 下一主题
收起左侧

[经验求助] 需要制作一个JavaScript爬取脚本

[复制链接]
跳转到指定楼层
楼主
beat2 发表于 2024-11-5 16:32 回帖奖励
35吾爱币
本帖最后由 beat2 于 2024-11-17 22:54 编辑

这是之前发布的悬赏帖
需要制作一个JavaScript爬取脚本
https://www.52pojie.cn/thread-1972660-1-1.html
(出处: 吾爱破解论坛)

大家帮忙看看不使用下面这个接口有没有办法获取指定的信息
http://service.bot.qch86.top:8100/activation/code/${page}


获取激活码列表中所有2天、1天、0天前更新的激活码的JavaScript




[JavaScript] 纯文本查看 复制代码
const days = 2
const today = new Date(new Date().setHours(0, 0, 0, 0))
const oneDay = 86400 * 1000
const daysMap = {
  "今": today,
  "昨": today - oneDay,
}
let list = []
const activationList = document.querySelectorAll(.activation-list .activation)

async function getList() {
  const activationList = setNewList(document.querySelectorAll(.activation-list .activation))
  list = [...filterData(activationList,days)]
  console.log(list)
  if (!list.length){
    return alert(没有数据)
  } else {
    const result = list.map(item => {
      return item.content
    }).join(n)
    alert(result)
  }
}

const setNewList = (data) => {
  return Array.prototype.map.call(data, item => {
    const createTime = daysMap[item.children[0].innerText.split(天)[0]] ? daysMap[item.children[0].innerText.split(天)[0]] : today - oneDay * item.children[0].innerText.split(天)[0]
    console.log(createTime);
   
    return {
      createTime,
      content: item.children[1].innerText
    }
  })
}

// 过滤掉days之前的数据
const filterData = (data, days) => {
  const dates = new Date(new Date().setHours(0, 0, 0, 0))
  return data.filter(item => {
    console.log(dates - new Date(item.createTime).getTime() < days * oneDay);
   
    return dates - new Date(item.createTime).getTime() < days * oneDay
  })
}
const createObserver =() => {
// 创建观察器
const observer = new MutationObserver(mutations => {
  getList()
})
observer.observe(document.querySelector(.activation-list), {
  childList: true
})
}
window.onload = createObserver()


但是报错;
不通过接口获取激活码.user.js:18 Uncaught SyntaxError: Unexpected token . (at 不通过接口获取激活码.user.js:18:50)
    at async Wt (injected.js:1:8803)
    at async injected.js:1:14574

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

沙发
 楼主| beat2 发表于 2024-11-6 23:56 |楼主
顶ffhfddggfdffdddfffffgffg
3#
 楼主| beat2 发表于 2024-11-10 12:59 |楼主
4#
 楼主| beat2 发表于 2024-11-17 22:53 |楼主
5#
znevue 发表于 2024-11-20 12:44
从接口获取是最方便的,要不就是爬取网站上的信息,得有这个网址啊
6#
 楼主| beat2 发表于 2024-11-22 01:57 |楼主
znevue 发表于 2024-11-20 12:44
从接口获取是最方便的,要不就是爬取网站上的信息,得有这个网址啊

这个是网址
http://bot93001.qch86.top/activation?t=1732211802189
7#
superychen 发表于 2024-11-22 11:29
没太看懂你想要啥,写了个油猴脚本,你看满不满足你需求

会在页面右上角显示个提取按钮,可以输入天数自动提取N天内的激活码,然后一键复制到剪贴板

没有图床就不放截图了

[JavaScript] 纯文本查看 复制代码
// ==UserScript==
// [url=home.php?mod=space&uid=170990]@name[/url]         自动提取激活码
// [url=home.php?mod=space&uid=467642]@namespace[/url]    http://tampermonkey.net/
// [url=home.php?mod=space&uid=1248337]@version[/url]      0.1
// @description  自动提取激活码
// [url=home.php?mod=space&uid=686208]@AuThor[/url]       superychen
// [url=home.php?mod=space&uid=195849]@match[/url]        http://bot93001.qch86.top/activation
// @match        http://bot93001.qch86.top/activation?*
// [url=home.php?mod=space&uid=609072]@grant[/url]        none
// ==/UserScript==

(function () {
    'use strict';

    // 创建UI元素的通用函数
    function createUIElement(type, options) {
        const element = document.createElement(type);
        Object.assign(element, options.props || {});
        element.style.cssText = options.style || '';
        if (options.text) element.textContent = options.text;
        return element;
    }

    // 创建UI组件
    const ui = {
        button: createUIElement('button', {
            text: '开始提取',
            style: `
                position: fixed;
                right: 20px;
                top: 20px;
                z-index: 9999;
                padding: 10px;
                background: #4CAF50;
                color: white;
                border: none;
                border-radius: 4px;
                cursor: pointer;
            `
        }),
        input: createUIElement('input', {
            props: { type: 'number', value: '2', min: '1' },
            style: `
                position: fixed;
                right: 120px;
                top: 20px;
                z-index: 9999;
                padding: 8px;
                width: 60px;
                border: 1px solid #ccc;
                border-radius: 4px;
            `
        }),
        label: createUIElement('span', {
            text: '天数:',
            style: `
                position: fixed;
                right: 190px;
                top: 23px;
                z-index: 9999;
                color: #666;
            `
        }),
        resultArea: createUIElement('div', {
            style: `
                position: fixed;
                right: 20px;
                top: 70px;
                width: 300px;
                max-height: 80vh;
                background: white;
                border: 1px solid #ccc;
                border-radius: 4px;
                padding: 10px;
                overflow-y: auto;
                z-index: 9999;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                display: none;
            `
        }),
        copyButton: createUIElement('button', {
            text: '一键复制',
            style: `
                padding: 4px 8px;
                background: #4CAF50;
                color: white;
                border: none;
                border-radius: 4px;
                cursor: pointer;
                display: none;
            `
        }),
        resultCount: createUIElement('div', {
            style: 'font-weight: bold;'
        })
    };

    // 状态管理
    const state = {
        isScrolling: false,
        scrollInterval: null,
        processedItems: new Set(),
        totalProcessed: 0
    };

    // 工具函数
    const utils = {
        parseTimeText(timeText) {
            if (timeText.includes('今天')) return 0;
            if (timeText === '昨天更新' || timeText === '1天前更新') return 1;
            if (timeText === '前天更新' || timeText === '2天前更新' || timeText === '两天前更新') return 2;
            const match = timeText.match(/^(\d+)天前更新$/);
            return match ? parseInt(match[1]) : 999;
        },

        copyToClipboard(text) {
            const textarea = createUIElement('textarea', {
                props: { value: text },
                style: 'position: fixed; left: -9999px;'
            });
            document.body.appendChild(textarea);
            try {
                textarea.select();
                return document.execCommand('copy');
            } finally {
                document.body.removeChild(textarea);
            }
        },

        updateResultCount(message) {
            ui.resultCount.textContent = message;
        },

        stopScrolling() {
            clearInterval(state.scrollInterval);
            state.isScrolling = false;
            ui.button.textContent = '开始提取';
            ui.button.style.background = '#4CAF50';
            utils.updateResultCount(state.totalProcessed > 0
                ? `已完成, 总共找到 ${state.totalProcessed} 条数据`
                : '没有满足条件的数据');
            if (!state.totalProcessed) ui.copyButton.style.display = 'none';
        }
    };

    // 初始化结果区域
    const resultHeader = createUIElement('div', {
        style: `
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        `
    });
    resultHeader.append(ui.resultCount, ui.copyButton);
    ui.resultArea.appendChild(resultHeader);

    // 事件处理
    ui.copyButton.addEventListener('click', () => {
        const contents = Array.from(state.processedItems)
            .map(key => {
                const [time, content] = key.split('-');
                return `${time} ${content}`;
            })
            .join('\n');

        if (utils.copyToClipboard(contents)) {
            const originalText = ui.copyButton.textContent;
            ui.copyButton.textContent = '已复制!';
            ui.copyButton.style.background = '#666';
            setTimeout(() => {
                ui.copyButton.textContent = originalText;
                ui.copyButton.style.background = '#4CAF50';
            }, 1000);
        }
    });

    ui.button.addEventListener('click', () => {
        if (!state.isScrolling) {
            // 重置状态
            state.processedItems.clear();
            state.totalProcessed = 0;
            ui.resultArea.innerHTML = '';
            ui.resultArea.appendChild(resultHeader);
            ui.copyButton.style.display = 'none';
            ui.resultArea.style.display = 'block';
            window.scrollTo(0, 0);

            const daysLimit = parseInt(ui.input.value) || 2;
            state.isScrolling = true;
            ui.button.textContent = '停止滚动';
            ui.button.style.background = '#f44336';
            utils.updateResultCount('正在查找...');

            let foundOutOfRange = false;

            state.scrollInterval = setInterval(() => {
                const isLoading = document.querySelector('.van-list')?.getAttribute('aria-busy') === 'true';
                const isFinished = document.querySelector('.van-list__finished-text')?.textContent.includes('没有更多了');

                if (isFinished) {
                    utils.stopScrolling();
                    return;
                }

                document.querySelectorAll('.activation').forEach(item => {
                    const content = item.querySelector('.content').textContent;
                    const time = item.querySelector('.time').textContent;
                    const days = utils.parseTimeText(time);
                    const key = `${time}-${content}`;

                    if (!state.processedItems.has(key)) {
                        if (days < daysLimit) {
                            state.totalProcessed++;
                            utils.updateResultCount(`正在查找, 已找到 ${state.totalProcessed} 条数据`);
                            ui.copyButton.style.display = 'block';

                            const resultItem = createUIElement('div', {
                                style: `
                                    margin-bottom: 10px;
                                    padding: 8px;
                                    background: #f5f5f5;
                                    border-radius: 4px;
                                `,
                                props: {
                                    innerHTML: `
                                        <div style="color: #666; font-size: 12px;">${time}</div>
                                        <div style="margin-top: 4px;">${content}</div>
                                    `
                                }
                            });
                            ui.resultArea.appendChild(resultItem);
                            state.processedItems.add(key);
                        } else {
                            foundOutOfRange = true;
                        }
                    }
                });

                if (foundOutOfRange) {
                    utils.stopScrolling();
                    return;
                }

                if (!isLoading && !foundOutOfRange) {
                    window.scrollBy(0, 100);
                }
            }, 100);
        } else {
            utils.stopScrolling();
        }
    });

    // 添加元素到页面
    document.body.append(ui.label, ui.input, ui.button, ui.resultArea);
})();
8#
superychen 发表于 2024-11-22 11:33
superychen 发表于 2024-11-22 11:29
没太看懂你想要啥,写了个油猴脚本,你看满不满足你需求

会在页面右上角显示个提取按钮,可以输入天数自 ...

贴的代码不知道为啥头里的内容格式乱了,看这里吧 https://netcut.cn/p/df3050bd66abfbf9
9#
znevue 发表于 2024-11-22 18:49
我用插件弄了个网页监听,会将更新的内容推送到微信,如果能满足你的要求可以回我
10#
 楼主| beat2 发表于 2024-11-23 06:09 |楼主
znevue 发表于 2024-11-22 18:49
我用插件弄了个网页监听,会将更新的内容推送到微信,如果能满足你的要求可以回我

没看见页面右上角显示提取按钮
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 03:51

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表