mirror of
https://github.com/jackwener/OpenCLI.git
synced 2026-09-14 18:25:42 +08:00
d2974a9ff6
* refactor(adapters): convert adapter layer from TypeScript to JavaScript Core framework stays TypeScript; adapter layer moves to JS-first. Adapters are essentially "executable config + browser scripts" that barely use TS features — this simplifies the build/distribution pipeline by removing the dist/clis/ intermediate compilation step. Changes: - Convert all 753 adapter files in clis/ from .ts to .js - Update tsconfig to exclude clis/ from compilation - Simplify build-manifest to scan clis/*.js directly (no dist/clis/) - Update discovery, main, fetch-adapters to load JS adapters from clis/ - Update generate-verified to output .js artifacts - Update package.json files field: dist/clis/ → clis/ - Fix all test files for the .ts → .js transition * fix(main): use findPackageRoot for BUILTIN_CLIS path The previous relative path (../../clis from __dirname) only worked for dist/src/main.js but broke dev mode (tsx src/main.ts) where __dirname is <repo>/src — resolving to /clis instead of <repo>/clis. Use findPackageRoot() which works for both dev and prod paths.
75 lines
2.9 KiB
JavaScript
75 lines
2.9 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { getCourses, initSession, enterCourse, getTabIframeUrl, parseExamsFromDom, sleep, } from './utils.js';
|
|
cli({
|
|
site: 'chaoxing',
|
|
name: 'exams',
|
|
description: '学习通考试列表',
|
|
domain: 'mooc2-ans.chaoxing.com',
|
|
strategy: Strategy.COOKIE,
|
|
timeoutSeconds: 90,
|
|
args: [
|
|
{ name: 'course', type: 'string', help: '按课程名过滤(模糊匹配)' },
|
|
{
|
|
name: 'status',
|
|
type: 'string',
|
|
default: 'all',
|
|
choices: ['all', 'upcoming', 'ongoing', 'finished'],
|
|
help: '按状态过滤',
|
|
},
|
|
{ name: 'limit', type: 'int', default: 20, help: '最大返回数量' },
|
|
],
|
|
columns: ['rank', 'course', 'title', 'start', 'end', 'status', 'score'],
|
|
func: async (page, kwargs) => {
|
|
const { course: courseFilter, status: statusFilter = 'all', limit = 20 } = kwargs;
|
|
// 1. Establish session
|
|
await initSession(page);
|
|
// 2. Get courses
|
|
const courses = await getCourses(page);
|
|
if (!courses.length)
|
|
throw new Error('未获取到课程列表,请确认已登录学习通');
|
|
const filtered = courseFilter
|
|
? courses.filter(c => c.title.includes(courseFilter))
|
|
: courses;
|
|
if (courseFilter && !filtered.length) {
|
|
throw new Error(`未找到匹配「${courseFilter}」的课程`);
|
|
}
|
|
// 3. Per-course: enter → click 考试 tab → navigate to iframe → parse
|
|
const allRows = [];
|
|
for (const c of filtered) {
|
|
try {
|
|
await enterCourse(page, c);
|
|
const iframeUrl = await getTabIframeUrl(page, '考试');
|
|
if (!iframeUrl)
|
|
continue;
|
|
await page.goto(iframeUrl);
|
|
await page.wait(2);
|
|
const rows = await parseExamsFromDom(page, c.title);
|
|
allRows.push(...rows);
|
|
}
|
|
catch {
|
|
// Single course failure: skip, continue
|
|
}
|
|
if (filtered.length > 1)
|
|
await sleep(600);
|
|
}
|
|
// 4. Sort: upcoming first
|
|
allRows.sort((a, b) => {
|
|
const order = (s) => s === '未开始' ? 0 : s === '进行中' ? 1 : s === '已结束' ? 2 : s === '已完成' ? 3 : 4;
|
|
return order(a.status) - order(b.status);
|
|
});
|
|
// 5. Filter by status
|
|
const statusMap = {
|
|
upcoming: ['未开始'],
|
|
ongoing: ['进行中'],
|
|
finished: ['已结束', '已完成'],
|
|
};
|
|
const finalRows = statusFilter === 'all'
|
|
? allRows
|
|
: allRows.filter(r => statusMap[statusFilter]?.includes(r.status));
|
|
return finalRows.slice(0, Number(limit)).map((item, i) => ({
|
|
rank: i + 1,
|
|
...item,
|
|
}));
|
|
},
|
|
});
|