LibreChat/packages/data-provider/src/actions.ts
Danny Avila a8cdd3460c
🔧 feat: Share Assistant Actions between Users (#2116)
* fix: remove unique field from assistant_id, which can be shared between different users

* refactor: remove unique user fields from actions/assistant queries

* feat: only allow user who saved action to delete it

* refactor: allow deletions for anyone with builder access

* refactor: update user.id when updating assistants/actions records, instead of searching with it

* fix: stringify response data in case it's an object

* fix: correctly handle path input

* fix(decryptV2): handle edge case where value is already decrypted
2024-03-16 16:49:11 -04:00

355 lines
11 KiB
TypeScript

import axios from 'axios';
import { URL } from 'url';
import crypto from 'crypto';
import { load } from 'js-yaml';
import type { FunctionTool, Schema, Reference, ActionMetadata } from './types/assistants';
import type { OpenAPIV3 } from 'openapi-types';
import { Tools, AuthTypeEnum, AuthorizationTypeEnum } from './types/assistants';
export type ParametersSchema = {
type: string;
properties: Record<string, Reference | Schema>;
required: string[];
};
export type ApiKeyCredentials = {
api_key: string;
custom_auth_header?: string;
authorization_type?: AuthorizationTypeEnum;
};
export type OAuthCredentials = {
tokenUrl: string;
clientId: string;
clientSecret: string;
scope: string;
};
export type Credentials = ApiKeyCredentials | OAuthCredentials;
export function sha1(input: string) {
return crypto.createHash('sha1').update(input).digest('hex');
}
export function createURL(domain: string, path: string) {
const myURL = new URL(path, domain);
return myURL.toString();
}
export class FunctionSignature {
name: string;
description: string;
parameters: ParametersSchema;
constructor(name: string, description: string, parameters: ParametersSchema) {
this.name = name;
this.description = description;
if (parameters.properties?.['requestBody']) {
this.parameters = parameters.properties?.['requestBody'] as ParametersSchema;
} else {
this.parameters = parameters;
}
}
toObjectTool(): FunctionTool {
return {
type: Tools.function,
function: {
name: this.name,
description: this.description,
parameters: this.parameters,
},
};
}
}
export class ActionRequest {
domain: string;
path: string;
method: string;
operation: string;
operationHash?: string;
isConsequential: boolean;
contentType: string;
params?: object;
constructor(
domain: string,
path: string,
method: string,
operation: string,
isConsequential: boolean,
contentType: string,
) {
this.domain = domain;
this.path = path;
this.method = method;
this.operation = operation;
this.isConsequential = isConsequential;
this.contentType = contentType;
}
private authHeaders: Record<string, string> = {};
private authToken?: string;
async setParams(params: object) {
this.operationHash = sha1(JSON.stringify(params));
this.params = params;
for (const [key, value] of Object.entries(params)) {
const paramPattern = `{${key}}`;
if (this.path.includes(paramPattern)) {
this.path = this.path.replace(paramPattern, encodeURIComponent(value as string));
delete (this.params as Record<string, unknown>)[key];
}
}
}
async setAuth(metadata: ActionMetadata) {
if (!metadata.auth) {
return;
}
const {
type,
/* API Key */
authorization_type,
custom_auth_header,
/* OAuth */
authorization_url,
client_url,
scope,
token_exchange_method,
} = metadata.auth;
const {
/* API Key */
api_key,
/* OAuth */
oauth_client_id,
oauth_client_secret,
} = metadata;
const isApiKey = api_key && type === AuthTypeEnum.ServiceHttp;
const isOAuth =
oauth_client_id &&
oauth_client_secret &&
type === AuthTypeEnum.OAuth &&
authorization_url &&
client_url &&
scope &&
token_exchange_method;
if (isApiKey && authorization_type === AuthorizationTypeEnum.Basic) {
const basicToken = Buffer.from(api_key).toString('base64');
this.authHeaders['Authorization'] = `Basic ${basicToken}`;
} else if (isApiKey && authorization_type === AuthorizationTypeEnum.Bearer) {
this.authHeaders['Authorization'] = `Bearer ${api_key}`;
} else if (
isApiKey &&
authorization_type === AuthorizationTypeEnum.Custom &&
custom_auth_header
) {
this.authHeaders[custom_auth_header] = api_key;
} else if (isOAuth) {
// TODO: WIP - OAuth support
if (!this.authToken) {
const tokenResponse = await axios.post(
client_url,
{
client_id: oauth_client_id,
client_secret: oauth_client_secret,
scope: scope,
grant_type: 'client_credentials',
},
{
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
},
);
this.authToken = tokenResponse.data.access_token;
}
this.authHeaders['Authorization'] = `Bearer ${this.authToken}`;
}
}
async execute() {
const url = createURL(this.domain, this.path);
const headers = {
...this.authHeaders,
'Content-Type': this.contentType,
};
const method = this.method.toLowerCase();
if (method === 'get') {
return axios.get(url, { headers, params: this.params });
} else if (method === 'post') {
return axios.post(url, this.params, { headers });
} else if (method === 'put') {
return axios.put(url, this.params, { headers });
} else if (method === 'delete') {
return axios.delete(url, { headers, data: this.params });
} else if (method === 'patch') {
return axios.patch(url, this.params, { headers });
} else {
throw new Error(`Unsupported HTTP method: ${this.method}`);
}
}
}
export function resolveRef(
schema: OpenAPIV3.SchemaObject | OpenAPIV3.ReferenceObject | OpenAPIV3.RequestBodyObject,
components?: OpenAPIV3.ComponentsObject,
): OpenAPIV3.SchemaObject {
if ('$ref' in schema && components) {
const refPath = schema.$ref.replace(/^#\/components\/schemas\//, '');
const resolvedSchema = components.schemas?.[refPath];
if (!resolvedSchema) {
throw new Error(`Reference ${schema.$ref} not found`);
}
return resolveRef(resolvedSchema, components);
}
return schema as OpenAPIV3.SchemaObject;
}
/** Function to convert OpenAPI spec to function signatures and request builders */
export function openapiToFunction(openapiSpec: OpenAPIV3.Document): {
functionSignatures: FunctionSignature[];
requestBuilders: Record<string, ActionRequest>;
} {
const functionSignatures: FunctionSignature[] = [];
const requestBuilders: Record<string, ActionRequest> = {};
// Base URL from OpenAPI spec servers
const baseUrl = openapiSpec.servers?.[0]?.url ?? '';
// Iterate over each path and method in the OpenAPI spec
for (const [path, methods] of Object.entries(openapiSpec.paths)) {
for (const [method, operation] of Object.entries(methods as OpenAPIV3.PathsObject)) {
const operationObj = operation as OpenAPIV3.OperationObject & {
'x-openai-isConsequential'?: boolean;
};
// Operation ID is used as the function name
const operationId = operationObj.operationId || `${method}_${path}`;
const description = operationObj.summary || operationObj.description || '';
const parametersSchema: ParametersSchema = { type: 'object', properties: {}, required: [] };
if (operationObj.requestBody) {
const requestBody = operationObj.requestBody as OpenAPIV3.RequestBodyObject;
const content = requestBody.content;
const contentType = Object.keys(content)[0];
const schema = content[contentType]?.schema;
const resolvedSchema = resolveRef(
schema as OpenAPIV3.ReferenceObject | OpenAPIV3.SchemaObject,
openapiSpec.components,
);
parametersSchema.properties['requestBody'] = resolvedSchema;
}
if (operationObj.parameters) {
for (const param of operationObj.parameters) {
const paramObj = param as OpenAPIV3.ParameterObject;
const resolvedSchema = resolveRef(
{ ...paramObj.schema } as OpenAPIV3.ReferenceObject | OpenAPIV3.SchemaObject,
openapiSpec.components,
);
parametersSchema.properties[paramObj.name] = resolvedSchema;
if (paramObj.required) {
parametersSchema.required.push(paramObj.name);
}
if (paramObj.description && !('$$ref' in parametersSchema.properties[paramObj.name])) {
parametersSchema.properties[paramObj.name].description = paramObj.description;
}
}
}
const functionSignature = new FunctionSignature(operationId, description, parametersSchema);
functionSignatures.push(functionSignature);
const actionRequest = new ActionRequest(
baseUrl,
path,
method,
operationId,
!!operationObj['x-openai-isConsequential'], // Custom extension for consequential actions
operationObj.requestBody ? 'application/json' : 'application/x-www-form-urlencoded',
);
requestBuilders[operationId] = actionRequest;
}
}
return { functionSignatures, requestBuilders };
}
export type ValidationResult = {
status: boolean;
message: string;
spec?: OpenAPIV3.Document;
};
export function validateAndParseOpenAPISpec(specString: string): ValidationResult {
try {
let parsedSpec;
try {
parsedSpec = JSON.parse(specString);
} catch {
parsedSpec = load(specString);
}
// Check for servers
if (
!parsedSpec.servers ||
!Array.isArray(parsedSpec.servers) ||
parsedSpec.servers.length === 0
) {
return { status: false, message: 'Could not find a valid URL in `servers`' };
}
if (!parsedSpec.servers[0].url) {
return { status: false, message: 'Could not find a valid URL in `servers`' };
}
// Check for paths
const paths = parsedSpec.paths;
if (!paths || typeof paths !== 'object' || Object.keys(paths).length === 0) {
return { status: false, message: 'No paths found in the OpenAPI spec.' };
}
const components = parsedSpec.components?.schemas || {};
const messages = [];
for (const [path, methods] of Object.entries(paths)) {
for (const [httpMethod, operation] of Object.entries(methods as OpenAPIV3.PathItemObject)) {
// Ensure operation is a valid operation object
const { responses } = operation as OpenAPIV3.OperationObject;
if (typeof operation === 'object' && responses) {
for (const [statusCode, response] of Object.entries(responses)) {
const content = (response as OpenAPIV3.ResponseObject).content;
if (content && content['application/json'] && content['application/json'].schema) {
const schema = content['application/json'].schema;
if ('$ref' in schema && typeof schema.$ref === 'string') {
const refName = schema.$ref.split('/').pop();
if (refName && !components[refName]) {
messages.push(
`In context=('paths', '${path}', '${httpMethod}', '${statusCode}', 'response', 'content', 'application/json', 'schema'), reference to unknown component ${refName}; using empty schema`,
);
}
}
}
}
}
}
}
return {
status: true,
message: messages.join('\n') || 'OpenAPI spec is valid.',
spec: parsedSpec,
};
} catch (error) {
return { status: false, message: 'Error parsing OpenAPI spec.' };
}
}