mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-16 12:30:49 +00:00
82 lines
2.6 KiB
TypeScript
82 lines
2.6 KiB
TypeScript
import type { MSTeamsConfig } from "openclaw/plugin-sdk/msteams";
|
|
import { GRAPH_ROOT } from "./attachments/shared.js";
|
|
import { loadMSTeamsSdkWithAuth } from "./sdk.js";
|
|
import { readAccessToken } from "./token-response.js";
|
|
import { resolveMSTeamsCredentials } from "./token.js";
|
|
|
|
export type GraphUser = {
|
|
id?: string;
|
|
displayName?: string;
|
|
userPrincipalName?: string;
|
|
mail?: string;
|
|
};
|
|
|
|
export type GraphGroup = {
|
|
id?: string;
|
|
displayName?: string;
|
|
};
|
|
|
|
export type GraphChannel = {
|
|
id?: string;
|
|
displayName?: string;
|
|
};
|
|
|
|
export type GraphResponse<T> = { value?: T[] };
|
|
|
|
export function normalizeQuery(value?: string | null): string {
|
|
return value?.trim() ?? "";
|
|
}
|
|
|
|
export function escapeOData(value: string): string {
|
|
return value.replace(/'/g, "''");
|
|
}
|
|
|
|
export async function fetchGraphJson<T>(params: {
|
|
token: string;
|
|
path: string;
|
|
headers?: Record<string, string>;
|
|
}): Promise<T> {
|
|
const res = await fetch(`${GRAPH_ROOT}${params.path}`, {
|
|
headers: {
|
|
Authorization: `Bearer ${params.token}`,
|
|
...params.headers,
|
|
},
|
|
});
|
|
if (!res.ok) {
|
|
const text = await res.text().catch(() => "");
|
|
throw new Error(`Graph ${params.path} failed (${res.status}): ${text || "unknown error"}`);
|
|
}
|
|
return (await res.json()) as T;
|
|
}
|
|
|
|
export async function resolveGraphToken(cfg: unknown): Promise<string> {
|
|
const creds = resolveMSTeamsCredentials(
|
|
(cfg as { channels?: { msteams?: unknown } })?.channels?.msteams as MSTeamsConfig | undefined,
|
|
);
|
|
if (!creds) {
|
|
throw new Error("MS Teams credentials missing");
|
|
}
|
|
const { sdk, authConfig } = await loadMSTeamsSdkWithAuth(creds);
|
|
const tokenProvider = new sdk.MsalTokenProvider(authConfig);
|
|
const token = await tokenProvider.getAccessToken("https://graph.microsoft.com");
|
|
const accessToken = readAccessToken(token);
|
|
if (!accessToken) {
|
|
throw new Error("MS Teams graph token unavailable");
|
|
}
|
|
return accessToken;
|
|
}
|
|
|
|
export async function listTeamsByName(token: string, query: string): Promise<GraphGroup[]> {
|
|
const escaped = escapeOData(query);
|
|
const filter = `resourceProvisioningOptions/Any(x:x eq 'Team') and startsWith(displayName,'${escaped}')`;
|
|
const path = `/groups?$filter=${encodeURIComponent(filter)}&$select=id,displayName`;
|
|
const res = await fetchGraphJson<GraphResponse<GraphGroup>>({ token, path });
|
|
return res.value ?? [];
|
|
}
|
|
|
|
export async function listChannelsForTeam(token: string, teamId: string): Promise<GraphChannel[]> {
|
|
const path = `/teams/${encodeURIComponent(teamId)}/channels?$select=id,displayName`;
|
|
const res = await fetchGraphJson<GraphResponse<GraphChannel>>({ token, path });
|
|
return res.value ?? [];
|
|
}
|