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
44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import {
|
|
draftNotFound,
|
|
ensureDraftDbPage,
|
|
findDraftEntry,
|
|
normalizeDraftId,
|
|
normalizeDraftRecord,
|
|
normalizeDraftType,
|
|
readDraftEntries,
|
|
} from './draft-utils.js';
|
|
|
|
cli({
|
|
site: 'xiaohongshu',
|
|
name: 'draft-open',
|
|
access: 'read',
|
|
description: '读取一条小红书本地草稿详情',
|
|
domain: 'creator.xiaohongshu.com',
|
|
strategy: Strategy.COOKIE,
|
|
browser: true,
|
|
navigateBefore: false,
|
|
args: [
|
|
{ name: 'id', positional: true, required: true, help: 'Draft id returned by `opencli xiaohongshu drafts`' },
|
|
{ name: 'type', default: 'image', help: 'Draft type: image, video, article, audio' },
|
|
],
|
|
columns: ['id', 'type', 'title', 'updated_at', 'images', 'content'],
|
|
func: async (page, kwargs) => {
|
|
const id = normalizeDraftId(kwargs.id);
|
|
const draftType = normalizeDraftType(kwargs.type);
|
|
await ensureDraftDbPage(page);
|
|
const entries = await readDraftEntries(page, draftType);
|
|
const entry = findDraftEntry(entries, id);
|
|
if (!entry) throw draftNotFound(id, draftType, 'xiaohongshu/draft-open');
|
|
const row = normalizeDraftRecord(entry.row, entry.key, draftType, 1, { contentLimit: 500 });
|
|
return [{
|
|
id: row.id,
|
|
type: row.type,
|
|
title: row.title,
|
|
updated_at: row.updated_at,
|
|
images: row.images,
|
|
content: row.text_preview,
|
|
}];
|
|
},
|
|
});
|