-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathChatService.ts
More file actions
423 lines (388 loc) · 15.9 KB
/
ChatService.ts
File metadata and controls
423 lines (388 loc) · 15.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { google, chat_v1, people_v1 } from 'googleapis';
import { AuthManager } from '../auth/AuthManager';
import { logToFile } from '../utils/logger';
import { gaxiosOptions } from '../utils/GaxiosConfig';
export class ChatService {
constructor(private authManager: AuthManager) {
}
private async getChatClient(): Promise<chat_v1.Chat> {
const auth = await this.authManager.getAuthenticatedClient();
const options = { ...gaxiosOptions, auth };
return google.chat({ version: 'v1', ...options });
}
private async getPeopleClient(): Promise<people_v1.People> {
const auth = await this.authManager.getAuthenticatedClient();
const options = { ...gaxiosOptions, auth };
return google.people({ version: 'v1', ...options });
}
private async _setupDmSpace(email: string): Promise<chat_v1.Schema$Space> {
const person = {
name: `users/${email}`,
type: 'HUMAN',
};
const chat = await this.getChatClient();
const setupResponse = await chat.spaces.setup({
requestBody: {
space: {
spaceType: 'DIRECT_MESSAGE',
},
memberships: [
{
member: person,
},
],
},
});
const space = setupResponse.data;
if (!space) {
throw new Error('Could not find or create a DM space.');
}
return space;
}
public listSpaces = async () => {
logToFile('Listing chat spaces');
try {
const chat = await this.getChatClient();
const res = await chat.spaces.list({});
const spaces = res.data.spaces || [];
logToFile(`Successfully listed ${spaces.length} chat spaces.`);
return {
content: [{
type: "text" as const,
text: JSON.stringify(spaces)
}]
};
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
logToFile(`Error during chat.listSpaces: ${errorMessage}`);
if (error instanceof Error && error.stack) {
logToFile(`Stack trace: ${error.stack}`);
}
logToFile(`Full error object: ${JSON.stringify(error, null, 2)}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify({
error: 'An error occurred while listing chat spaces.',
details: errorMessage
})
}]
};
}
}
public sendMessage = async ({ spaceName, message }: { spaceName: string, message: string }) => {
logToFile(`Sending message to space: ${spaceName}`);
try {
const chat = await this.getChatClient();
const response = await chat.spaces.messages.create({
parent: spaceName,
requestBody: {
text: message,
},
});
logToFile(`Successfully sent message to space: ${spaceName}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify(response.data)
}]
};
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
logToFile(`Error during chat.sendMessage: ${errorMessage}`);
if (error instanceof Error && error.stack) {
logToFile(`Stack trace: ${error.stack}`);
}
logToFile(`Full error object: ${JSON.stringify(error, null, 2)}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify({
error: 'An error occurred while sending the message.',
details: errorMessage
})
}]
};
}
}
public findSpaceByName = async ({ displayName }: { displayName: string }) => {
logToFile(`Finding space with display name: ${displayName}`);
try {
const chat = await this.getChatClient();
// The Chat API's spaces.list method does not support filtering by
// displayName on the server. We must fetch all spaces and filter locally.
let pageToken: string | undefined = undefined;
let allSpaces: chat_v1.Schema$Space[] = [];
do {
const res: any = await chat.spaces.list({ pageToken });
const spaces = res.data.spaces || [];
allSpaces = allSpaces.concat(spaces);
pageToken = res.data.nextPageToken || undefined;
} while (pageToken);
const foundSpaces = allSpaces.filter(space => space.displayName === displayName);
if (foundSpaces.length > 0) {
logToFile(`Found ${foundSpaces.length} space(s) with display name: ${displayName}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify(foundSpaces)
}]
};
} else {
logToFile(`No space found with display name: ${displayName}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify({
error: `No space found with display name: ${displayName}`
})
}]
};
}
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
logToFile(`Error during chat.findSpaceByName: ${errorMessage}`);
if (error instanceof Error && error.stack) {
logToFile(`Stack trace: ${error.stack}`);
}
logToFile(`Full error object: ${JSON.stringify(error, null, 2)}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify({
error: 'An error occurred while finding the space.',
details: errorMessage
})
}]
};
}
}
public getMessages = async ({ spaceName, unreadOnly, pageSize, pageToken, orderBy }: { spaceName: string, unreadOnly?: boolean, pageSize?: number, pageToken?: string, orderBy?: string }) => {
logToFile(`Listing messages for space: ${spaceName}`);
try {
const chat = await this.getChatClient();
let filter: string | undefined;
if (unreadOnly) {
const people = await this.getPeopleClient();
const person = await people.people.get({
resourceName: 'people/me',
personFields: 'metadata',
});
const userId = person.data.metadata?.sources?.find(s => s.type === 'PROFILE')?.id;
if (!userId) {
throw new Error('Could not determine user ID.');
}
const userMemberName = `users/${userId}`;
const membersRes = await chat.spaces.members.list({
parent: spaceName,
});
// Type assertion needed due to incomplete type definitions
const memberships = (membersRes.data as any).memberships || [];
const currentUserMember = memberships.find((m: any) => m.member?.name === userMemberName);
const lastReadTime = currentUserMember?.lastReadTime;
if (lastReadTime) {
filter = `createTime > "${lastReadTime}"`;
} else {
logToFile(`No last read time found for user in space: ${spaceName}`);
}
}
const res = await chat.spaces.messages.list({
parent: spaceName,
filter,
pageSize,
pageToken,
orderBy,
});
const messages = res.data.messages || [];
const logMessage = unreadOnly
? `Successfully listed ${messages.length} unread messages for space: ${spaceName}`
: `Successfully listed ${messages.length} messages for space: ${spaceName}`;
logToFile(logMessage);
return {
content: [{
type: "text" as const,
text: JSON.stringify({ messages, nextPageToken: res.data.nextPageToken })
}]
};
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
logToFile(`Error during chat.getMessages: ${errorMessage}`);
if (error instanceof Error && error.stack) {
logToFile(`Stack trace: ${error.stack}`);
}
logToFile(`Full error object: ${JSON.stringify(error, null, 2)}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify({
error: 'An error occurred while listing messages.',
details: errorMessage
})
}]
};
}
}
public sendDm = async ({ email, message }: { email: string, message: string }) => {
logToFile(`chat.sendDm called with: email=${email}, message=${message}`);
try {
const space = await this._setupDmSpace(email);
const spaceName = space.name;
if (!spaceName) {
throw new Error('Could not determine the space name for the DM.');
}
const chat = await this.getChatClient();
// Send the message to the DM space.
const messageResponse = await chat.spaces.messages.create({
parent: spaceName,
requestBody: {
text: message,
},
});
logToFile(`Successfully sent DM to: ${email}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify(messageResponse.data)
}]
};
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
logToFile(`Error during chat.sendDm: ${errorMessage}`);
if (error instanceof Error && error.stack) {
logToFile(`Stack trace: ${error.stack}`);
}
logToFile(`Full error object: ${JSON.stringify(error, null, 2)}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify({
error: 'An error occurred while sending the DM.',
details: errorMessage
})
}]
};
}
}
public findDmByEmail = async ({ email }: { email: string }) => {
logToFile(`Finding DM space with user: ${email}`);
try {
const space = await this._setupDmSpace(email);
logToFile(`Found or created DM space: ${space.name}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify(space)
}]
};
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
logToFile(`Error during chat.findDmByEmail: ${errorMessage}`);
if (error instanceof Error && error.stack) {
logToFile(`Stack trace: ${error.stack}`);
}
logToFile(`Full error object: ${JSON.stringify(error, null, 2)}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify({
error: 'An error occurred while finding the DM space.',
details: errorMessage
})
}]
};
}
}
public listThreads = async ({ spaceName, pageSize, pageToken }: { spaceName: string, pageSize?: number, pageToken?: string }) => {
logToFile(`Listing threads for space: ${spaceName}`);
try {
const chat = await this.getChatClient();
const res = await chat.spaces.messages.list({
parent: spaceName,
pageSize,
pageToken,
orderBy: 'createTime desc',
});
const messages = res.data.messages || [];
const threads: chat_v1.Schema$Message[] = [];
const threadIds = new Set<string>();
for (const message of messages) {
if (message.thread?.name && !threadIds.has(message.thread.name)) {
threads.push(message);
threadIds.add(message.thread.name);
}
}
logToFile(`Successfully listed ${threads.length} threads for space: ${spaceName}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify({ threads, nextPageToken: res.data.nextPageToken })
}]
};
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
logToFile(`Error during chat.listThreads: ${errorMessage}`);
if (error instanceof Error && error.stack) {
logToFile(`Stack trace: ${error.stack}`);
}
logToFile(`Full error object: ${JSON.stringify(error, null, 2)}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify({
error: 'An error occurred while listing threads.',
details: errorMessage
})
}]
};
}
}
public setUpSpace = async ({ displayName, userNames }: { displayName: string, userNames: string[] }) => {
logToFile(`Creating space with display name: ${displayName}`);
try {
const memberships = userNames.map(userName => ({
member: {
name: userName,
type: 'HUMAN',
},
}));
const chat = await this.getChatClient();
const response = await chat.spaces.setup({
requestBody: {
space: {
spaceType: 'SPACE',
displayName,
},
memberships: memberships,
},
});
logToFile(`Successfully created space: ${response.data.name}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify(response.data)
}]
};
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
logToFile(`Error during chat.createSpace: ${errorMessage}`);
if (error instanceof Error && error.stack) {
logToFile(`Stack trace: ${error.stack}`);
}
logToFile(`Full error object: ${JSON.stringify(error, null, 2)}`);
return {
content: [{
type: "text" as const,
text: JSON.stringify({
error: 'An error occurred while creating the space.',
details: errorMessage
})
}]
};
}
}
}