mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
84 lines
3.0 KiB
TypeScript
84 lines
3.0 KiB
TypeScript
// Frontend service for the "Join a Google Meet call" feature.
|
|
//
|
|
// Two-phase request:
|
|
// 1. Call the core RPC `openhuman.meet_join_call` to validate inputs and
|
|
// mint a stable `request_id`. The core also logs the request — useful
|
|
// for an eventual call audit trail.
|
|
// 2. Invoke the Tauri command `meet_call_open_window` to actually open
|
|
// the dedicated CEF webview window at the Meet URL.
|
|
//
|
|
// Splitting it this way keeps platform-specific window code in the shell
|
|
// while the validation rules live (and are tested) in the core.
|
|
import { invoke } from '@tauri-apps/api/core';
|
|
|
|
import { isTauri } from '../utils/tauriCommands/common';
|
|
import { callCoreRpc } from './coreRpcClient';
|
|
|
|
export type MeetJoinCallInput = { meetUrl: string; displayName: string };
|
|
|
|
export type MeetJoinCallResult = {
|
|
requestId: string;
|
|
meetUrl: string;
|
|
displayName: string;
|
|
windowLabel: string;
|
|
};
|
|
|
|
type CoreJoinResponse = { ok: boolean; request_id: string; meet_url: string; display_name: string };
|
|
|
|
export async function joinMeetCall(input: MeetJoinCallInput): Promise<MeetJoinCallResult> {
|
|
const meetUrl = input.meetUrl.trim();
|
|
const displayName = input.displayName.trim();
|
|
|
|
if (!meetUrl) throw new Error('Please paste a Google Meet link.');
|
|
if (!displayName) throw new Error('Please enter a display name.');
|
|
// Refuse early outside the desktop shell so the browser dev surface
|
|
// (`pnpm dev`) doesn't mint a stray request_id on the core for a join
|
|
// attempt that has no chance of opening a CEF window.
|
|
if (!isTauri()) {
|
|
throw new Error(
|
|
'Joining a Meet call requires the desktop app. Run `pnpm tauri dev` and try again.'
|
|
);
|
|
}
|
|
|
|
const rpcResult = await callCoreRpc<CoreJoinResponse>({
|
|
method: 'openhuman.meet_join_call',
|
|
params: { meet_url: meetUrl, display_name: displayName },
|
|
});
|
|
|
|
if (!rpcResult?.ok || !rpcResult.request_id) {
|
|
throw new Error('Core rejected the meet_join_call request.');
|
|
}
|
|
|
|
let windowLabel: string;
|
|
try {
|
|
windowLabel = await invoke<string>('meet_call_open_window', {
|
|
args: {
|
|
request_id: rpcResult.request_id,
|
|
meet_url: rpcResult.meet_url,
|
|
display_name: rpcResult.display_name,
|
|
},
|
|
});
|
|
} catch (err) {
|
|
// Tauri v2 rejects with a String (the Err side of `Result<_, String>`),
|
|
// not a JS Error. Wrap so the UI catch block — which checks
|
|
// `instanceof Error` — surfaces the real reason instead of a fallback.
|
|
const reason =
|
|
err instanceof Error ? err.message : typeof err === 'string' ? err : JSON.stringify(err);
|
|
// eslint-disable-next-line no-console
|
|
console.error('[meet-call] meet_call_open_window invoke rejected:', err);
|
|
throw new Error(`meet_call_open_window failed: ${reason}`);
|
|
}
|
|
|
|
return {
|
|
requestId: rpcResult.request_id,
|
|
meetUrl: rpcResult.meet_url,
|
|
displayName: rpcResult.display_name,
|
|
windowLabel,
|
|
};
|
|
}
|
|
|
|
export async function closeMeetCall(requestId: string): Promise<boolean> {
|
|
if (!isTauri()) return false;
|
|
return invoke<boolean>('meet_call_close_window', { requestId });
|
|
}
|