Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

80 lines
3.2 KiB
JavaScript

/**
* `opencli suno list` — list recent clips in the user's library. Lets agents
* discover clip ids without needing to remember them, and feed them to
* `opencli suno download`.
*/
import { cli, Strategy } from '@jackwener/opencli/registry';
import { CommandExecutionError, EmptyResultError } from '@jackwener/opencli/errors';
import {
STUDIO_API,
SUNO_DOMAIN,
SUNO_URL,
ensureSunoSession,
requireNonNegativeInt,
requirePositiveInt,
unwrapEvaluateResult,
} from './utils.js';
export const listCommand = cli({
site: 'suno',
name: 'list',
access: 'read',
description: 'List recent Suno clips in your library (id, title, status, created_at, link)',
domain: SUNO_DOMAIN,
strategy: Strategy.COOKIE,
browser: true,
siteSession: 'persistent',
navigateBefore: false,
args: [
{ name: 'limit', type: 'int', default: 20, help: 'Max clips to list (default: 20)' },
{ name: 'page', type: 'int', default: 0, help: 'Pagination offset, 0-based (default: 0)' },
],
columns: ['rank', 'clip', 'title', 'status', 'created', 'link'],
func: async (page, kwargs) => {
const limit = requirePositiveInt(kwargs.limit, '--limit');
const pageOffset = requireNonNegativeInt(kwargs.page ?? 0, '--page');
const session = await ensureSunoSession(page);
const deviceId = session.deviceId;
const result = unwrapEvaluateResult(await page.evaluate(`(async () => {
const browserToken = JSON.stringify({ token: btoa(JSON.stringify({ timestamp: Date.now() })) });
const res = await fetch('${STUDIO_API}/api/feed/v2?page=${pageOffset}', {
headers: {
'Authorization': 'Bearer ' + (await window.Clerk.session.getToken()),
'browser-token': browserToken,
'device-id': ${JSON.stringify(deviceId)},
},
});
if (!res.ok) return { ok: false, status: res.status };
const data = await res.json().catch(() => null);
if (!data || !Array.isArray(data.clips)) return { ok: false, error: 'malformed clips payload' };
return { ok: true, clips: data.clips };
})()`));
if (!result?.ok) {
throw new CommandExecutionError(result?.error || `Suno feed lookup failed (HTTP ${result?.status || '?'}).`);
}
if (!Array.isArray(result.clips)) {
throw new CommandExecutionError('Suno feed lookup returned malformed clips payload');
}
if (result.clips.length === 0) {
throw new EmptyResultError('suno list', 'No Suno clips found in your library.');
}
return result.clips.slice(0, limit).map((c, i) => {
if (!c || typeof c.id !== 'string' || !c.id) {
throw new CommandExecutionError('Suno feed lookup returned malformed clip identity');
}
return {
rank: i + 1 + pageOffset * limit,
clip: c.id.slice(0, 8),
title: c.title || '(untitled)',
status: c.status || '?',
created: (c.created_at || '').replace('T', ' ').replace(/\..*$/, '').replace(/Z$/, ''),
link: `${SUNO_URL}/song/${c.id}`,
};
});
},
});