d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
115 lines
3.4 KiB
TypeScript
115 lines
3.4 KiB
TypeScript
import type {
|
|
MicrosoftGraphDriveItem,
|
|
OneDriveSearchResponse,
|
|
OneDriveToolParams,
|
|
} from '@/tools/onedrive/types'
|
|
import { escapeODataStringLiteral } from '@/tools/onedrive/utils'
|
|
import { assertGraphNextPageUrl, getGraphNextPageUrl } from '@/tools/sharepoint/utils'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const searchTool: ToolConfig<OneDriveToolParams, OneDriveSearchResponse> = {
|
|
id: 'onedrive_search',
|
|
name: 'Search OneDrive Files',
|
|
description:
|
|
'Search for files and folders across OneDrive by name, metadata, or content (recursive)',
|
|
version: '1.0',
|
|
|
|
oauth: {
|
|
required: true,
|
|
provider: 'onedrive',
|
|
},
|
|
|
|
params: {
|
|
accessToken: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'hidden',
|
|
description: 'The access token for the OneDrive API',
|
|
},
|
|
query: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'Search text matched against file name, metadata, and content. Not required when paginating with pageToken',
|
|
},
|
|
pageSize: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Maximum number of results to return (e.g., 10, 50, 100)',
|
|
},
|
|
pageToken: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
"Continuation URL from a previous response's nextPageToken, used to fetch the next page",
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: (params) => {
|
|
const pageToken = params.pageToken?.trim()
|
|
if (pageToken) {
|
|
return assertGraphNextPageUrl(pageToken)
|
|
}
|
|
|
|
const query = params.query?.trim()
|
|
if (!query) {
|
|
throw new Error('A search query is required')
|
|
}
|
|
|
|
const url = new URL(
|
|
`https://graph.microsoft.com/v1.0/me/drive/root/search(q='${encodeURIComponent(escapeODataStringLiteral(query))}')`
|
|
)
|
|
url.searchParams.append(
|
|
'$select',
|
|
'id,name,file,folder,webUrl,size,createdDateTime,lastModifiedDateTime,parentReference,@microsoft.graph.downloadUrl'
|
|
)
|
|
if (params.pageSize) {
|
|
url.searchParams.append('$top', Number(params.pageSize).toString())
|
|
}
|
|
return url.toString()
|
|
},
|
|
method: 'GET',
|
|
headers: (params) => ({
|
|
Authorization: `Bearer ${params.accessToken}`,
|
|
}),
|
|
},
|
|
|
|
transformResponse: async (response: Response) => {
|
|
const data = await response.json()
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
files: (data.value || []).map((item: MicrosoftGraphDriveItem) => ({
|
|
id: item.id,
|
|
name: item.name,
|
|
mimeType: item.file?.mimeType || (item.folder ? 'application/folder' : 'unknown'),
|
|
webViewLink: item.webUrl,
|
|
webContentLink: item['@microsoft.graph.downloadUrl'],
|
|
size: item.size?.toString() || '0',
|
|
createdTime: item.createdDateTime,
|
|
modifiedTime: item.lastModifiedDateTime,
|
|
parents: item.parentReference ? [item.parentReference.id] : [],
|
|
})),
|
|
nextPageToken: getGraphNextPageUrl(data),
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
success: { type: 'boolean', description: 'Whether the search completed successfully' },
|
|
files: {
|
|
type: 'array',
|
|
description: 'Array of file and folder objects matching the search query',
|
|
},
|
|
nextPageToken: {
|
|
type: 'string',
|
|
description: 'Token for retrieving the next page of results (optional)',
|
|
},
|
|
},
|
|
}
|