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
55 lines
2.2 KiB
JavaScript
55 lines
2.2 KiB
JavaScript
import { ArgumentError, CommandExecutionError } from '@jackwener/opencli/errors';
|
|
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { DRIVE_API, apiPost, findFolder, pollTask } from './utils.js';
|
|
cli({
|
|
site: 'quark',
|
|
name: 'mv',
|
|
access: 'write',
|
|
description: 'Move files to a folder in your Quark Drive',
|
|
domain: 'pan.quark.cn',
|
|
strategy: Strategy.COOKIE,
|
|
defaultFormat: 'json',
|
|
args: [
|
|
{ name: 'fids', required: true, positional: true, help: 'File IDs to move (comma-separated)' },
|
|
{ name: 'to', default: '', help: 'Destination folder path (required unless --to-fid is set)' },
|
|
{ name: 'to-fid', default: '', help: 'Destination folder ID (overrides --to)' },
|
|
{ name: 'timeout', type: 'int', required: false, default: 120, help: 'Max seconds for the overall command (default: 120)' },
|
|
],
|
|
func: async (page, kwargs) => {
|
|
const to = kwargs.to;
|
|
const toFid = kwargs['to-fid'];
|
|
const fids = kwargs.fids;
|
|
const fidList = [...new Set(fids.split(',').map(id => id.trim()).filter(Boolean))];
|
|
if (fidList.length === 0)
|
|
throw new ArgumentError('No fids provided');
|
|
if (!to && !toFid)
|
|
throw new ArgumentError('Either --to or --to-fid is required');
|
|
if (to && toFid)
|
|
throw new ArgumentError('Cannot use both --to and --to-fid');
|
|
const targetFid = toFid || await findFolder(page, to);
|
|
const data = await apiPost(page, `${DRIVE_API}/move?pr=ucpro&fr=pc`, {
|
|
filelist: fidList,
|
|
to_pdir_fid: targetFid,
|
|
});
|
|
const result = {
|
|
status: 'pending',
|
|
count: fidList.length,
|
|
destination: to || toFid,
|
|
task_id: data.task_id,
|
|
completed: false,
|
|
};
|
|
if (data.task_id) {
|
|
const completed = await pollTask(page, data.task_id);
|
|
result.completed = completed;
|
|
result.status = completed ? 'ok' : 'error';
|
|
if (!completed)
|
|
throw new CommandExecutionError('quark: Move task timed out');
|
|
}
|
|
else {
|
|
result.status = 'ok';
|
|
result.completed = true;
|
|
}
|
|
return result;
|
|
},
|
|
});
|