学习公社刷课专用

刷课专用

目前為 2024-02-24 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         学习公社刷课专用
// @namespace    chengfx
// @version      0.1
// @description  刷课专用
// @author       chengfx
// @match        https://www.ttcdw.cn/p/course/v/v_*?itemId=*&segId=*&projectId=*&orgId=*&type=*
// @match        https://www.ttcdw.cn/p/uc/projectCenter/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=ttcdw.cn
// @grant        none
// @license MIT
// ==/UserScript==

let run_state = true;
const createBroadcastChannel=(cb)=> {
    const broadcastChannel = new BroadcastChannel('chengfx');
    broadcastChannel.onmessage = cb;
    return broadcastChannel;
}

const autoContinue = ()=>{
    const modal = document.querySelector("#layui-layer1");
    if(!modal || modal.style.display === 'none'){
        return;
    }
    const btn = document.querySelector("#comfirmClock");
    btn.click();
}



const autoPlayCourse = ()=>{
    const videos = document.querySelectorAll('video');
    videos.forEach(v=>{
        v.muted=true;
        v.play()
    })
}

const findUnfinishCourseItem = ()=>{
    const allCourseItems = [...document.querySelectorAll(".course-info")];
    const unfinishCourseItem = allCourseItems.find(course=>course.querySelector('.four').innerText !== '100%');
    return unfinishCourseItem;
}

const autoJumpCourse = (unfinishCourseItem)=>{
    if(!unfinishCourseItem){
        console.info("allFinish")
        return false;
    }else{
        unfinishCourseItem.children[0]?.click();
        setTimeout(autoPlayCourse,1000)
        return true;
    }
}

const nextCourse = ()=>{
    const allCourses = [...document.querySelectorAll(".li-item")];
    const activeIndex = allCourses.findIndex(c=>c.style['background-image'].includes('current_seg'));
    if(activeIndex === allCourses.length -1 || activeIndex === -1){
        run_state = false;
        return;
    }
    console.log(activeIndex,allCourses[activeIndex+1])
    allCourses[activeIndex+1]?.click();
}

const nextModule = ()=>{
    const allModules = [...document.querySelectorAll(".item-col")];
    const activeIndex = allModules.findIndex(m=>!!m.querySelector('.is-active'));
    if(activeIndex === allModules.length - 1){
        nextCourse()
    }else{
        allModules[activeIndex+1]?.querySelector('.el-collapse-item__header')?.click();
    }
}

const openUnfinishCourse = ()=>{
    const unfinishCourse = [...document.querySelectorAll(".el-table__row")].find((e)=>e.querySelector(".course_num").innerText !== "课程:100%");
    if(!unfinishCourse){
        return false;
    }
    const learnBtn = unfinishCourse.querySelector(".to-study");
    learnBtn.click();
    return true;
}

(function() {
    'use strict';
    const init = async ()=>{
        console.info("success")
        const isPlayPage = location.href.startsWith("https://www.ttcdw.cn/p/course");
        if(isPlayPage){
            const bc = createBroadcastChannel((msg)=>{
                console.log(msg);
            });
            console.log("im play page");
            let lastCourse = null;
            setInterval(autoContinue,1000);
            setInterval(()=>{
                const course = findUnfinishCourseItem();
                if(!course){
                    bc.postMessage({cmd:"next"});
                    window.close();
                    return;
                }
                if(lastCourse === course){
                    return;
                }
                autoJumpCourse(course);
                lastCourse = course;
            },1000)

        }else{
            console.log("im not play page");
            while(!openUnfinishCourse()){
                if(!run_state){
                    break;
                }
                nextModule()
                await new Promise((res,rej)=>{setTimeout(res,1000)});
            }
            const bc = createBroadcastChannel((msg)=>{
                switch(msg.data.cmd){
                    case 'next':{
                        console.log("next");
                        location.reload();
                        break;
                    }
                }
            });
            bc.postMessage({a:1})
        }

    }
    setTimeout(init,2000)
})();