File size: 4,961 Bytes
57aa51e | 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 | import { AgentToolInterface } from '@gitroom/nestjs-libraries/chat/agent.tool.interface';
import { createTool } from '@mastra/core/tools';
import { z } from 'zod';
import { Injectable } from '@nestjs/common';
import {
IntegrationManager,
socialIntegrationList,
} from '@gitroom/nestjs-libraries/integrations/integration.manager';
import { IntegrationService } from '@gitroom/nestjs-libraries/database/prisma/integrations/integration.service';
import { RefreshToken } from '@gitroom/nestjs-libraries/integrations/social.abstract';
import { timer } from '@gitroom/helpers/utils/timer';
import { checkAuth } from '@gitroom/nestjs-libraries/chat/auth.context';
import { RefreshIntegrationService } from '@gitroom/nestjs-libraries/integrations/refresh.integration.service';
@Injectable()
export class IntegrationTriggerTool implements AgentToolInterface {
constructor(
private _integrationManager: IntegrationManager,
private _integrationService: IntegrationService,
private _refreshIntegrationService: RefreshIntegrationService
) {}
name = 'triggerTool';
run() {
return createTool({
id: 'triggerTool',
description: `After using the integrationSchema, we sometimes miss details we can\'t ask from the user, like ids.
Sometimes this tool requires to user prompt for some settings, like a word to search for. methodName is required [input:callable-tools]`,
mcp: {
annotations: {
title: 'Trigger Integration Tool',
readOnlyHint: true,
destructiveHint: false,
idempotentHint: false,
openWorldHint: true,
},
},
inputSchema: z.object({
integrationId: z.string().describe('The id of the integration'),
methodName: z
.string()
.describe(
'The methodName from the `integrationSchema` functions in the tools array, required'
),
dataSchema: z.array(
z.object({
key: z.string().describe('Name of the settings key to pass'),
value: z.string().describe('Value of the key'),
})
),
}),
outputSchema: z.object({
output: z.array(z.record(z.string(), z.any())),
}),
execute: async (inputData, context) => {
checkAuth(inputData, context);
console.log('triggerTool', inputData);
const organizationId = JSON.parse(
(context?.requestContext as any)?.get('organization') as string
).id;
const getIntegration =
await this._integrationService.getIntegrationById(
organizationId,
inputData.integrationId
);
if (!getIntegration) {
return {
output: 'Integration not found',
};
}
const integrationProvider = socialIntegrationList.find(
(p) => p.identifier === getIntegration.providerIdentifier
)!;
if (!integrationProvider) {
return {
output: 'Integration not found',
};
}
const tools = this._integrationManager.getAllTools();
if (
// @ts-ignore
!tools[integrationProvider.identifier].some(
(p) => p.methodName === inputData.methodName
) ||
// @ts-ignore
!integrationProvider[inputData.methodName]
) {
return { output: 'tool not found' };
}
while (true) {
try {
// @ts-ignore
const load = await integrationProvider[inputData.methodName](
getIntegration.token,
inputData.dataSchema.reduce(
(all: Record<string, string>, current: { key: string; value: string }) => ({
...all,
[current.key]: current.value,
}),
{} as Record<string, string>
),
getIntegration.internalId,
getIntegration
);
return { output: load };
} catch (err) {
if (err instanceof RefreshToken) {
const data = await this._refreshIntegrationService.refresh(
getIntegration
);
if (!data) {
await this._integrationService.disconnectChannel(
organizationId,
getIntegration
);
return {
output:
'We had to disconnect the channel as the token expired',
};
}
const { accessToken } = data;
if (accessToken) {
getIntegration.token = accessToken;
if (integrationProvider.refreshWait) {
await timer(10000);
}
continue;
} else {
}
}
return { output: 'Unexpected error' };
}
}
},
});
}
}
|