9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
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
31 lines
1.3 KiB
JavaScript
31 lines
1.3 KiB
JavaScript
import { ArgumentError, AuthRequiredError, CommandExecutionError, ConfigError } from '@jackwener/opencli/errors';
|
|
import { SLOCK_DOMAIN } from './shared.js';
|
|
|
|
// EvaluateResult is the envelope every in-page snippet returns. Kinds:
|
|
// { kind: 'ok', rows, meta? }
|
|
// { kind: 'auth', detail }
|
|
// { kind: 'http', status, where }
|
|
// { kind: 'no-server', detail }
|
|
// { kind: 'unresolvable', detail }
|
|
// { kind: 'no-thread', parent } // handled by caller, never reaches dispatcher
|
|
export function dispatchEvaluateResult(r) {
|
|
switch (r && r.kind) {
|
|
case 'ok':
|
|
return r.rows;
|
|
case 'auth':
|
|
throw new AuthRequiredError(SLOCK_DOMAIN, r.detail);
|
|
case 'http':
|
|
throw new CommandExecutionError(`HTTP ${r.status} from ${r.where}`);
|
|
case 'no-server':
|
|
throw new ConfigError(r.detail, 'Run `opencli slock server-use <slug>` to set the active server.');
|
|
case 'unresolvable':
|
|
throw new ArgumentError(r.detail);
|
|
case 'no-thread':
|
|
// caller decides what to do (returns a 0-row hint); should never reach here
|
|
throw new CommandExecutionError(`no-thread should be handled by caller, not dispatcher: ${r.parent}`);
|
|
default:
|
|
// unknown / null envelope = contract drift; fail loud (reddit precedent)
|
|
throw new CommandExecutionError(`unexpected evaluate envelope: ${JSON.stringify(r)}`);
|
|
}
|
|
}
|