Files
jackwener--opencli/clis/linux-do/user-posts.js
T
wehub-resource-sync 9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

58 lines
2.0 KiB
JavaScript

import { cli, Strategy } from '@jackwener/opencli/registry';
import { fetchLinuxDoJson } from './feed.js';
function toLocalTime(utcStr) {
if (!utcStr)
return '';
const date = new Date(utcStr);
return Number.isNaN(date.getTime()) ? utcStr : date.toLocaleString();
}
function strip(html) {
return (html || '')
.replace(/<br\s*\/?>/gi, ' ')
.replace(/<\/(p|div|li|blockquote|h[1-6])>/gi, ' ')
.replace(/<[^>]+>/g, '')
.replace(/&nbsp;/g, ' ')
.replace(/&amp;/g, '&')
.replace(/&lt;/g, '<')
.replace(/&gt;/g, '>')
.replace(/&quot;/g, '"')
.replace(/&#(?:(\d+)|x([0-9a-fA-F]+));/g, (_, dec, hex) => {
try {
return String.fromCodePoint(dec !== undefined ? Number(dec) : parseInt(hex, 16));
}
catch {
return '';
}
})
.replace(/\s+/g, ' ')
.trim();
}
cli({
site: 'linux-do',
name: 'user-posts',
access: 'read',
description: 'linux.do 用户的帖子',
domain: 'linux.do',
strategy: Strategy.COOKIE,
browser: true,
args: [
{ name: 'username', required: true, positional: true, help: 'Username' },
{ name: 'limit', type: 'int', default: 20, help: 'Number of posts' },
],
columns: ['index', 'topic_user', 'topic', 'reply', 'time', 'url'],
func: async (page, kwargs) => {
const username = String(kwargs.username);
const limit = kwargs.limit;
const data = await fetchLinuxDoJson(page, `/user_actions.json?username=${encodeURIComponent(username)}&filter=5&offset=0&limit=${limit}`);
const actions = (data?.user_actions || []);
return actions.slice(0, limit).map((a, i) => ({
index: i + 1,
topic_user: a.acting_username || a.username || '',
topic: a.title || '',
reply: strip(a.excerpt).slice(0, 200),
time: toLocalTime(a.created_at),
url: 'https://linux.do/t/topic/' + a.topic_id + '/' + a.post_number,
}));
},
});