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

81 lines
2.9 KiB
JavaScript

import { cli, Strategy } from '@jackwener/opencli/registry';
import { CliError } from '@jackwener/opencli/errors';
import { gotoOnesHome, onesFetchInPage } from './common.js';
import { enrichPeekEntriesWithDetails } from './enrich-tasks.js';
import { resolveTaskListLabels } from './resolve-labels.js';
import { defaultPeekBody, flattenPeekGroups, mapTaskEntry, parsePeekLimit } from './task-helpers.js';
function buildQuery(project, assign) {
const must = [];
if (project?.trim()) {
must.push({ in: { 'field_values.field006': [project.trim()] } });
}
if (assign?.trim()) {
must.push({ equal: { assign: assign.trim() } });
}
if (must.length === 0) {
return { must: [] };
}
return { must };
}
cli({
site: 'ones',
name: 'tasks',
access: 'read',
description: 'ONES Project API — list work items (POST team/:team/filters/peek); use token-info -f json for team uuid',
domain: 'ones.cn',
strategy: Strategy.COOKIE,
browser: true,
navigateBefore: false,
args: [
{
name: 'team',
type: 'str',
required: false,
positional: true,
help: 'Team UUID (8 chars), or set ONES_TEAM_UUID',
},
{
name: 'project',
type: 'str',
required: false,
help: 'Filter by project UUID (field006 / 所属项目)',
},
{
name: 'assign',
type: 'str',
required: false,
help: 'Filter by assignee user UUID (负责人 assign)',
},
{
name: 'limit',
type: 'int',
default: 30,
help: 'Max rows after flattening groups (default 30)',
},
],
columns: ['title', 'status', 'project', 'uuid', 'updated', '工时'],
func: async (page, kwargs) => {
const team = kwargs.team?.trim() ||
process.env.ONES_TEAM_UUID?.trim() ||
process.env.ONES_TEAM_ID?.trim();
if (!team) {
throw new CliError('CONFIG', 'team UUID required', 'Pass team as first argument or set ONES_TEAM_UUID (see `opencli ones token-info -f json` → teams[].uuid).');
}
const project = kwargs.project?.trim();
const assign = kwargs.assign?.trim();
const limit = parsePeekLimit(kwargs.limit, 30);
await gotoOnesHome(page);
const body = defaultPeekBody(buildQuery(project, assign));
const path = `team/${team}/filters/peek`;
const parsed = (await onesFetchInPage(page, path, {
method: 'POST',
body: JSON.stringify(body),
skipGoto: true,
}));
const entries = flattenPeekGroups(parsed, limit);
const enriched = await enrichPeekEntriesWithDetails(page, team, entries, true);
const labels = await resolveTaskListLabels(page, team, enriched, true);
return enriched.map((e) => mapTaskEntry(e, labels));
},
});