9b395f5cc3
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
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
70 lines
2.9 KiB
JavaScript
70 lines
2.9 KiB
JavaScript
/**
|
|
* Weibo feed — for-you or following timeline.
|
|
*/
|
|
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { getSelfUid, requireArrayEvaluateResult, unwrapEvaluateResult } from './utils.js';
|
|
const TIMELINE_ENDPOINTS = {
|
|
'for-you': 'unreadfriendstimeline',
|
|
following: 'friendstimeline',
|
|
};
|
|
cli({
|
|
site: 'weibo',
|
|
name: 'feed',
|
|
access: 'read',
|
|
description: 'Fetch Weibo timeline (for-you or following)',
|
|
domain: 'weibo.com',
|
|
strategy: Strategy.COOKIE,
|
|
args: [
|
|
{
|
|
name: 'type',
|
|
default: 'for-you',
|
|
choices: ['for-you', 'following'],
|
|
help: 'Timeline type: for-you (algorithmic) or following (chronological)',
|
|
},
|
|
{ name: 'limit', type: 'int', default: 15, help: 'Number of posts (max 50)' },
|
|
],
|
|
columns: ['id', 'author', 'text', 'reposts', 'comments', 'likes', 'time', 'url'],
|
|
func: async (page, kwargs) => {
|
|
const count = Math.min(kwargs.limit || 15, 50);
|
|
const timelineType = kwargs.type === 'following' ? 'following' : 'for-you';
|
|
const endpoint = TIMELINE_ENDPOINTS[timelineType];
|
|
await page.goto('https://weibo.com');
|
|
await page.wait(2);
|
|
const uid = await getSelfUid(page);
|
|
const data = requireArrayEvaluateResult(unwrapEvaluateResult(await page.evaluate(`
|
|
(async () => {
|
|
const uid = ${JSON.stringify(uid)};
|
|
const count = ${count};
|
|
const endpoint = ${JSON.stringify(endpoint)};
|
|
const listId = '10001' + uid;
|
|
const strip = (html) => (html || '').replace(/<[^>]+>/g, '').replace(/ /g, ' ').replace(/</g, '<').replace(/>/g, '>').replace(/&/g, '&').trim();
|
|
|
|
const resp = await fetch('/ajax/feed/' + endpoint + '?list_id=' + listId + '&refresh=4&since_id=0&count=' + count, { credentials: 'include' });
|
|
if (!resp.ok) return { error: 'HTTP ' + resp.status };
|
|
const data = await resp.json();
|
|
if (!data.ok) return { error: 'API error: ' + (data.msg || 'unknown') };
|
|
|
|
return (data.statuses || []).slice(0, count).map(s => {
|
|
const u = s.user || {};
|
|
const item = {
|
|
id: s.mblogid || s.idstr || String(s.id || ''),
|
|
author: u.screen_name || '',
|
|
text: (s.text_raw || strip(s.text || '')).substring(0, 200),
|
|
reposts: s.reposts_count || 0,
|
|
comments: s.comments_count || 0,
|
|
likes: s.attitudes_count || 0,
|
|
time: s.created_at || '',
|
|
url: 'https://weibo.com/' + (u.id || '') + '/' + (s.mblogid || ''),
|
|
};
|
|
if (s.retweeted_status) {
|
|
const rt = s.retweeted_status;
|
|
item.retweeted = (rt.user?.screen_name || '[deleted]') + ': ' + (rt.text_raw || strip(rt.text || '')).substring(0, 100);
|
|
}
|
|
return item;
|
|
});
|
|
})()
|
|
`)), 'weibo feed');
|
|
return data;
|
|
},
|
|
});
|