jackwener--opencli
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
35 行
1.4 KiB
JavaScript
35 行
1.4 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { CliError } from '@jackwener/opencli/errors';
|
|
import { loadXiaoyuzhouCredentials, requestXiaoyuzhouJson } from './auth.js';
|
|
import { formatDuration, formatDate } from './utils.js';
|
|
cli({
|
|
site: 'xiaoyuzhou',
|
|
name: 'episode',
|
|
access: 'read',
|
|
description: 'View details of a Xiaoyuzhou podcast episode',
|
|
domain: 'www.xiaoyuzhoufm.com',
|
|
strategy: Strategy.LOCAL,
|
|
browser: false,
|
|
args: [{ name: 'id', positional: true, required: true, help: 'Episode ID (eid from podcast-episodes output)' }],
|
|
columns: ['title', 'podcast', 'duration', 'plays', 'comments', 'likes', 'date'],
|
|
func: async (args) => {
|
|
const credentials = loadXiaoyuzhouCredentials();
|
|
const response = await requestXiaoyuzhouJson('/v1/episode/get', {
|
|
query: { eid: args.id },
|
|
credentials,
|
|
});
|
|
const ep = response.data;
|
|
if (!ep)
|
|
throw new CliError('NOT_FOUND', 'Episode not found', 'Please check the ID');
|
|
return [{
|
|
title: ep.title,
|
|
podcast: ep.podcast?.title,
|
|
duration: formatDuration(ep.duration),
|
|
plays: ep.playCount,
|
|
comments: ep.commentCount,
|
|
likes: ep.clapCount,
|
|
date: formatDate(ep.pubDate),
|
|
}];
|
|
},
|
|
});
|