mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-01 08:15:44 +08:00
## Summary Implement a flexible sandbox provider system supporting both self-managed (Docker) and SaaS (Aliyun Code Interpreter) backends for secure code execution in agent workflows. **Key Changes:** - ✅ Aliyun Code Interpreter provider using official `agentrun-sdk>=0.0.16` - ✅ Self-managed provider with gVisor (runsc) security - ✅ Arguments parameter support for dynamic code execution - ✅ Database-only configuration (removed fallback logic) - ✅ Configuration scripts for quick setup Issue #12479 ## Features ### 🔌 Provider Abstraction Layer **1. Self-Managed Provider** (`agent/sandbox/providers/self_managed.py`) - Wraps existing executor_manager HTTP API - gVisor (runsc) for secure container isolation - Configurable pool size, timeout, retry logic - Languages: Python, Node.js, JavaScript - ⚠️ **Requires**: gVisor installation, Docker, base images **2. Aliyun Code Interpreter** (`agent/sandbox/providers/aliyun_codeinterpreter.py`) - SaaS integration using official agentrun-sdk - Serverless microVM execution with auto-authentication - Hard timeout: 30 seconds max - Credentials: `AGENTRUN_ACCESS_KEY_ID`, `AGENTRUN_ACCESS_KEY_SECRET`, `AGENTRUN_ACCOUNT_ID`, `AGENTRUN_REGION` - Automatically wraps code to call `main()` function **3. E2B Provider** (`agent/sandbox/providers/e2b.py`) - Placeholder for future integration ### ⚙️ Configuration System - `conf/system_settings.json`: Default provider = `aliyun_codeinterpreter` - `agent/sandbox/client.py`: Enforces database-only configuration - Admin UI: `/admin/sandbox-settings` - Configuration validation via `validate_config()` method - Health checks for all providers ### 🎯 Key Capabilities **Arguments Parameter Support:** All providers support passing arguments to `main()` function: ```python # User code def main(name: str, count: int) -> dict: return {"message": f"Hello {name}!" * count} # Executed with: arguments={"name": "World", "count": 3} # Result: {"message": "Hello World!Hello World!Hello World!"} ``` **Self-Describing Providers:** Each provider implements `get_config_schema()` returning form configuration for Admin UI **Error Handling:** Structured `ExecutionResult` with stdout, stderr, exit_code, execution_time ## Configuration Scripts Two scripts for quick Aliyun sandbox setup: **Shell Script (requires jq):** ```bash source scripts/configure_aliyun_sandbox.sh ``` **Python Script (interactive):** ```bash python3 scripts/configure_aliyun_sandbox.py ``` ## Testing ```bash # Unit tests uv run pytest agent/sandbox/tests/test_providers.py -v # Aliyun provider tests uv run pytest agent/sandbox/tests/test_aliyun_codeinterpreter.py -v # Integration tests (requires credentials) uv run pytest agent/sandbox/tests/test_aliyun_codeinterpreter_integration.py -v # Quick SDK validation python3 agent/sandbox/tests/verify_sdk.py ``` **Test Coverage:** - 30 unit tests for provider abstraction - Provider-specific tests for Aliyun - Integration tests with real API - Security tests for executor_manager ## Documentation - `docs/develop/sandbox_spec.md` - Complete architecture specification - `agent/sandbox/tests/MIGRATION_GUIDE.md` - Migration from legacy sandbox - `agent/sandbox/tests/QUICKSTART.md` - Quick start guide - `agent/sandbox/tests/README.md` - Testing documentation ## Breaking Changes ⚠️ **Migration Required:** 1. **Directory Move**: `sandbox/` → `agent/sandbox/` - Update imports: `from sandbox.` → `from agent.sandbox.` 2. **Mandatory Configuration**: - SystemSettings must have `sandbox.provider_type` configured - Removed fallback default values - Configuration must exist in database (from `conf/system_settings.json`) 3. **Aliyun Credentials**: - Requires `AGENTRUN_*` environment variables (not `ALIYUN_*`) - `AGENTRUN_ACCOUNT_ID` is now required (Aliyun primary account ID) 4. **Self-Managed Provider**: - gVisor (runsc) must be installed for security - Install: `go install gvisor.dev/gvisor/runsc@latest` ## Database Schema Changes ```python # SystemSettings.value: CharField → TextField api/db/db_models.py: Changed for unlimited config length # SystemSettingsService.get_by_name(): Fixed query precision api/db/services/system_settings_service.py: startswith → exact match ``` ## Files Changed ### Backend (Python) - `agent/sandbox/providers/base.py` - SandboxProvider ABC interface - `agent/sandbox/providers/manager.py` - ProviderManager - `agent/sandbox/providers/self_managed.py` - Self-managed provider - `agent/sandbox/providers/aliyun_codeinterpreter.py` - Aliyun provider - `agent/sandbox/providers/e2b.py` - E2B provider (placeholder) - `agent/sandbox/client.py` - Unified client (enforces DB-only config) - `agent/tools/code_exec.py` - Updated to use provider system - `admin/server/services.py` - SandboxMgr with registry & validation - `admin/server/routes.py` - 5 sandbox API endpoints - `conf/system_settings.json` - Default: aliyun_codeinterpreter - `api/db/db_models.py` - TextField for SystemSettings.value - `api/db/services/system_settings_service.py` - Exact match query ### Frontend (TypeScript/React) - `web/src/pages/admin/sandbox-settings.tsx` - Settings UI - `web/src/services/admin-service.ts` - Sandbox service functions - `web/src/services/admin.service.d.ts` - Type definitions - `web/src/utils/api.ts` - Sandbox API endpoints ### Documentation - `docs/develop/sandbox_spec.md` - Architecture spec - `agent/sandbox/tests/MIGRATION_GUIDE.md` - Migration guide - `agent/sandbox/tests/QUICKSTART.md` - Quick start - `agent/sandbox/tests/README.md` - Testing guide ### Configuration Scripts - `scripts/configure_aliyun_sandbox.sh` - Shell script (jq) - `scripts/configure_aliyun_sandbox.py` - Python script ### Tests - `agent/sandbox/tests/test_providers.py` - 30 unit tests - `agent/sandbox/tests/test_aliyun_codeinterpreter.py` - Provider tests - `agent/sandbox/tests/test_aliyun_codeinterpreter_integration.py` - Integration tests - `agent/sandbox/tests/verify_sdk.py` - SDK validation ## Architecture ``` Admin UI → Admin API → SandboxMgr → ProviderManager → [SelfManaged|Aliyun|E2B] ↓ SystemSettings ``` ## Usage ### 1. Configure Provider **Via Admin UI:** 1. Navigate to `/admin/sandbox-settings` 2. Select provider (Aliyun Code Interpreter / Self-Managed) 3. Fill in configuration 4. Click "Test Connection" to verify 5. Click "Save" to apply **Via Configuration Scripts:** ```bash # Aliyun provider export AGENTRUN_ACCESS_KEY_ID="xxx" export AGENTRUN_ACCESS_KEY_SECRET="yyy" export AGENTRUN_ACCOUNT_ID="zzz" export AGENTRUN_REGION="cn-shanghai" source scripts/configure_aliyun_sandbox.sh ``` ### 2. Restart Service ```bash cd docker docker compose restart ragflow-server ``` ### 3. Execute Code in Agent ```python from agent.sandbox.client import execute_code result = execute_code( code='def main(name: str) -> dict: return {"message": f"Hello {name}!"}', language="python", timeout=30, arguments={"name": "World"} ) print(result.stdout) # {"message": "Hello World!"} ``` ## Troubleshooting ### "Container pool is busy" (Self-Managed) - **Cause**: Pool exhausted (default: 1 container in `.env`) - **Fix**: Increase `SANDBOX_EXECUTOR_MANAGER_POOL_SIZE` to 5+ ### "Sandbox provider type not configured" - **Cause**: Database missing configuration - **Fix**: Run config script or set via Admin UI ### "gVisor not found" - **Cause**: runsc not installed - **Fix**: `go install gvisor.dev/gvisor/runsc@latest && sudo cp ~/go/bin/runsc /usr/local/bin/` ### Aliyun authentication errors - **Cause**: Wrong environment variable names - **Fix**: Use `AGENTRUN_*` prefix (not `ALIYUN_*`) ## Checklist - [x] All tests passing (30 unit tests + integration tests) - [x] Documentation updated (spec, migration guide, quickstart) - [x] Type definitions added (TypeScript) - [x] Admin UI implemented - [x] Configuration validation - [x] Health checks implemented - [x] Error handling with structured results - [x] Breaking changes documented - [x] Configuration scripts created - [x] gVisor requirements documented Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
324 lines
14 KiB
TypeScript
324 lines
14 KiB
TypeScript
let api_host = `/v1`;
|
|
const ExternalApi = `/api`;
|
|
|
|
export { api_host };
|
|
|
|
export default {
|
|
// user
|
|
login: `${api_host}/user/login`,
|
|
logout: `${api_host}/user/logout`,
|
|
register: `${api_host}/user/register`,
|
|
setting: `${api_host}/user/setting`,
|
|
user_info: `${api_host}/user/info`,
|
|
tenant_info: `${api_host}/user/tenant_info`,
|
|
set_tenant_info: `${api_host}/user/set_tenant_info`,
|
|
login_channels: `${api_host}/user/login/channels`,
|
|
login_channel: (channel: string) => `${api_host}/user/login/${channel}`,
|
|
|
|
// team
|
|
addTenantUser: (tenantId: string) => `${api_host}/tenant/${tenantId}/user`,
|
|
listTenantUser: (tenantId: string) =>
|
|
`${api_host}/tenant/${tenantId}/user/list`,
|
|
deleteTenantUser: (tenantId: string, userId: string) =>
|
|
`${api_host}/tenant/${tenantId}/user/${userId}`,
|
|
listTenant: `${api_host}/tenant/list`,
|
|
agreeTenant: (tenantId: string) => `${api_host}/tenant/agree/${tenantId}`,
|
|
|
|
// llm model
|
|
factories_list: `${api_host}/llm/factories`,
|
|
llm_list: `${api_host}/llm/list`,
|
|
my_llm: `${api_host}/llm/my_llms`,
|
|
set_api_key: `${api_host}/llm/set_api_key`,
|
|
add_llm: `${api_host}/llm/add_llm`,
|
|
delete_llm: `${api_host}/llm/delete_llm`,
|
|
enable_llm: `${api_host}/llm/enable_llm`,
|
|
deleteFactory: `${api_host}/llm/delete_factory`,
|
|
|
|
// data source
|
|
dataSourceSet: `${api_host}/connector/set`,
|
|
dataSourceList: `${api_host}/connector/list`,
|
|
dataSourceDel: (id: string) => `${api_host}/connector/${id}/rm`,
|
|
dataSourceResume: (id: string) => `${api_host}/connector/${id}/resume`,
|
|
dataSourceRebuild: (id: string) => `${api_host}/connector/${id}/rebuild`,
|
|
dataSourceLogs: (id: string) => `${api_host}/connector/${id}/logs`,
|
|
dataSourceDetail: (id: string) => `${api_host}/connector/${id}`,
|
|
googleWebAuthStart: (type: 'google-drive' | 'gmail') =>
|
|
`${api_host}/connector/google/oauth/web/start?type=${type}`,
|
|
googleWebAuthResult: (type: 'google-drive' | 'gmail') =>
|
|
`${api_host}/connector/google/oauth/web/result?type=${type}`,
|
|
boxWebAuthStart: () => `${api_host}/connector/box/oauth/web/start`,
|
|
boxWebAuthResult: () => `${api_host}/connector/box/oauth/web/result`,
|
|
|
|
// plugin
|
|
llm_tools: `${api_host}/plugin/llm_tools`,
|
|
|
|
sequence2txt: `${api_host}/conversation/sequence2txt`,
|
|
|
|
// knowledge base
|
|
|
|
check_embedding: `${api_host}/kb/check_embedding`,
|
|
kb_list: `${api_host}/kb/list`,
|
|
create_kb: `${api_host}/kb/create`,
|
|
update_kb: `${api_host}/kb/update`,
|
|
rm_kb: `${api_host}/kb/rm`,
|
|
get_kb_detail: `${api_host}/kb/detail`,
|
|
getKnowledgeGraph: (knowledgeId: string) =>
|
|
`${api_host}/kb/${knowledgeId}/knowledge_graph`,
|
|
getMeta: `${api_host}/kb/get_meta`,
|
|
getKnowledgeBasicInfo: `${api_host}/kb/basic_info`,
|
|
// data pipeline log
|
|
fetchDataPipelineLog: `${api_host}/kb/list_pipeline_logs`,
|
|
get_pipeline_detail: `${api_host}/kb/pipeline_log_detail`,
|
|
fetchPipelineDatasetLogs: `${api_host}/kb/list_pipeline_dataset_logs`,
|
|
runGraphRag: `${api_host}/kb/run_graphrag`,
|
|
traceGraphRag: `${api_host}/kb/trace_graphrag`,
|
|
runRaptor: `${api_host}/kb/run_raptor`,
|
|
traceRaptor: `${api_host}/kb/trace_raptor`,
|
|
unbindPipelineTask: ({ kb_id, type }: { kb_id: string; type: string }) =>
|
|
`${api_host}/kb/unbind_task?kb_id=${kb_id}&pipeline_task_type=${type}`,
|
|
pipelineRerun: `${api_host}/canvas/rerun`,
|
|
getMetaData: `${api_host}/document/metadata/summary`,
|
|
updateMetaData: `${api_host}/document/metadata/update`,
|
|
kbUpdateMetaData: `${api_host}/kb/update_metadata_setting`,
|
|
documentUpdateMetaData: `${api_host}/document/update_metadata_setting`,
|
|
|
|
// tags
|
|
listTag: (knowledgeId: string) => `${api_host}/kb/${knowledgeId}/tags`,
|
|
listTagByKnowledgeIds: `${api_host}/kb/tags`,
|
|
removeTag: (knowledgeId: string) => `${api_host}/kb/${knowledgeId}/rm_tags`,
|
|
renameTag: (knowledgeId: string) =>
|
|
`${api_host}/kb/${knowledgeId}/rename_tag`,
|
|
|
|
// chunk
|
|
chunk_list: `${api_host}/chunk/list`,
|
|
create_chunk: `${api_host}/chunk/create`,
|
|
set_chunk: `${api_host}/chunk/set`,
|
|
get_chunk: `${api_host}/chunk/get`,
|
|
switch_chunk: `${api_host}/chunk/switch`,
|
|
rm_chunk: `${api_host}/chunk/rm`,
|
|
retrieval_test: `${api_host}/chunk/retrieval_test`,
|
|
knowledge_graph: `${api_host}/chunk/knowledge_graph`,
|
|
|
|
// document
|
|
get_document_list: `${api_host}/document/list`,
|
|
document_change_status: `${api_host}/document/change_status`,
|
|
document_rm: `${api_host}/document/rm`,
|
|
document_delete: `${api_host}/api/document`,
|
|
document_rename: `${api_host}/document/rename`,
|
|
document_create: `${api_host}/document/create`,
|
|
document_run: `${api_host}/document/run`,
|
|
document_change_parser: `${api_host}/document/change_parser`,
|
|
document_thumbnails: `${api_host}/document/thumbnails`,
|
|
get_document_file: `${api_host}/document/get`,
|
|
get_document_file_download: (docId: string) =>
|
|
`${api_host}/document/download/${docId}`,
|
|
document_upload: `${api_host}/document/upload`,
|
|
web_crawl: `${api_host}/document/web_crawl`,
|
|
document_infos: `${api_host}/document/infos`,
|
|
upload_and_parse: `${api_host}/document/upload_info`,
|
|
parse: `${api_host}/document/parse`,
|
|
setMeta: `${api_host}/document/set_meta`,
|
|
get_dataset_filter: `${api_host}/document/filter`,
|
|
|
|
// chat
|
|
setDialog: `${api_host}/dialog/set`,
|
|
getDialog: `${api_host}/dialog/get`,
|
|
removeDialog: `${api_host}/dialog/rm`,
|
|
listDialog: `${api_host}/dialog/list`,
|
|
setConversation: `${api_host}/conversation/set`,
|
|
getConversation: `${api_host}/conversation/get`,
|
|
getConversationSSE: (dialogId: string) =>
|
|
`${api_host}/conversation/getsse/${dialogId}`,
|
|
listConversation: `${api_host}/conversation/list`,
|
|
removeConversation: `${api_host}/conversation/rm`,
|
|
completeConversation: `${api_host}/conversation/completion`,
|
|
deleteMessage: `${api_host}/conversation/delete_msg`,
|
|
thumbup: `${api_host}/conversation/thumbup`,
|
|
tts: `${api_host}/conversation/tts`,
|
|
ask: `${api_host}/conversation/ask`,
|
|
mindmap: `${api_host}/conversation/mindmap`,
|
|
getRelatedQuestions: `${api_host}/conversation/related_questions`,
|
|
// chat for external
|
|
createToken: `${api_host}/api/new_token`,
|
|
listToken: `${api_host}/api/token_list`,
|
|
removeToken: `${api_host}/api/rm`,
|
|
getStats: `${api_host}/api/stats`,
|
|
createExternalConversation: `${api_host}/api/new_conversation`,
|
|
getExternalConversation: `${api_host}/api/conversation`,
|
|
completeExternalConversation: `${api_host}/api/completion`,
|
|
uploadAndParseExternal: `${api_host}/api/document/upload_and_parse`,
|
|
|
|
// next chat
|
|
listNextDialog: `${api_host}/dialog/next`,
|
|
fetchExternalChatInfo: (id: string) =>
|
|
`${ExternalApi}${api_host}/chatbots/${id}/info`,
|
|
|
|
// file manager
|
|
listFile: `${api_host}/file/list`,
|
|
uploadFile: `${api_host}/file/upload`,
|
|
removeFile: `${api_host}/file/rm`,
|
|
renameFile: `${api_host}/file/rename`,
|
|
getAllParentFolder: `${api_host}/file/all_parent_folder`,
|
|
createFolder: `${api_host}/file/create`,
|
|
connectFileToKnowledge: `${api_host}/file2document/convert`,
|
|
getFile: `${api_host}/file/get`,
|
|
moveFile: `${api_host}/file/mv`,
|
|
|
|
// system
|
|
getSystemVersion: `${api_host}/system/version`,
|
|
getSystemStatus: `${api_host}/system/status`,
|
|
getSystemTokenList: `${api_host}/system/token_list`,
|
|
createSystemToken: `${api_host}/system/new_token`,
|
|
listSystemToken: `${api_host}/system/token_list`,
|
|
removeSystemToken: `${api_host}/system/token`,
|
|
getSystemConfig: `${api_host}/system/config`,
|
|
setLangfuseConfig: `${api_host}/langfuse/api_key`,
|
|
|
|
// flow
|
|
listTemplates: `${api_host}/canvas/templates`,
|
|
listCanvas: `${api_host}/canvas/list`,
|
|
getCanvas: `${api_host}/canvas/get`,
|
|
getCanvasSSE: (canvasId: string) => `${api_host}/canvas/getsse/${canvasId}`,
|
|
removeCanvas: `${api_host}/canvas/rm`,
|
|
setCanvas: `${api_host}/canvas/set`,
|
|
settingCanvas: `${api_host}/canvas/setting`,
|
|
getListVersion: `${api_host}/canvas/getlistversion`,
|
|
getVersion: `${api_host}/canvas/getversion`,
|
|
resetCanvas: `${api_host}/canvas/reset`,
|
|
runCanvas: `${api_host}/canvas/completion`,
|
|
testDbConnect: `${api_host}/canvas/test_db_connect`,
|
|
getInputElements: `${api_host}/canvas/input_elements`,
|
|
debug: `${api_host}/canvas/debug`,
|
|
uploadCanvasFile: `${api_host}/canvas/upload`,
|
|
trace: `${api_host}/canvas/trace`,
|
|
cancelCanvas: (taskId: string) => `${api_host}/canvas/cancel/${taskId}`, // cancel conversation
|
|
// agent
|
|
inputForm: `${api_host}/canvas/input_form`,
|
|
fetchVersionList: (id: string) => `${api_host}/canvas/getlistversion/${id}`,
|
|
fetchVersion: (id: string) => `${api_host}/canvas/getversion/${id}`,
|
|
fetchCanvas: (id: string) => `${api_host}/canvas/get/${id}`,
|
|
fetchAgentAvatar: (id: string) => `${api_host}/canvas/getsse/${id}`,
|
|
uploadAgentFile: (id?: string) => `${api_host}/canvas/upload/${id}`,
|
|
fetchAgentLogs: (canvasId: string) =>
|
|
`${api_host}/canvas/${canvasId}/sessions`,
|
|
fetchExternalAgentInputs: (canvasId: string) =>
|
|
`${ExternalApi}${api_host}/agentbots/${canvasId}/inputs`,
|
|
prompt: `${api_host}/canvas/prompts`,
|
|
cancelDataflow: (id: string) => `${api_host}/canvas/cancel/${id}`,
|
|
downloadFile: `${api_host}/canvas/download`,
|
|
testWebhook: (id: string) => `${ExternalApi}${api_host}/webhook_test/${id}`,
|
|
fetchWebhookTrace: (id: string) =>
|
|
`${ExternalApi}${api_host}/webhook_trace/${id}`,
|
|
|
|
// mcp server
|
|
listMcpServer: `${api_host}/mcp_server/list`,
|
|
getMcpServer: `${api_host}/mcp_server/detail`,
|
|
createMcpServer: `${api_host}/mcp_server/create`,
|
|
updateMcpServer: `${api_host}/mcp_server/update`,
|
|
deleteMcpServer: `${api_host}/mcp_server/rm`,
|
|
importMcpServer: `${api_host}/mcp_server/import`,
|
|
exportMcpServer: `${api_host}/mcp_server/export`,
|
|
listMcpServerTools: `${api_host}/mcp_server/list_tools`,
|
|
testMcpServerTool: `${api_host}/mcp_server/test_tool`,
|
|
cacheMcpServerTool: `${api_host}/mcp_server/cache_tools`,
|
|
testMcpServer: `${api_host}/mcp_server/test_mcp`,
|
|
|
|
// next-search
|
|
createSearch: `${api_host}/search/create`,
|
|
getSearchList: `${api_host}/search/list`,
|
|
deleteSearch: `${api_host}/search/rm`,
|
|
getSearchDetail: `${api_host}/search/detail`,
|
|
getSearchDetailShare: `${ExternalApi}${api_host}/searchbots/detail`,
|
|
updateSearchSetting: `${api_host}/search/update`,
|
|
askShare: `${ExternalApi}${api_host}/searchbots/ask`,
|
|
mindmapShare: `${ExternalApi}${api_host}/searchbots/mindmap`,
|
|
getRelatedQuestionsShare: `${ExternalApi}${api_host}/searchbots/related_questions`,
|
|
retrievalTestShare: `${ExternalApi}${api_host}/searchbots/retrieval_test`,
|
|
|
|
// memory
|
|
createMemory: `${ExternalApi}${api_host}/memories`,
|
|
getMemoryList: `${ExternalApi}${api_host}/memories`,
|
|
getMemoryConfig: (id: string) =>
|
|
`${ExternalApi}${api_host}/memories/${id}/config`,
|
|
deleteMemory: (id: string) => `${ExternalApi}${api_host}/memories/${id}`,
|
|
getMemoryDetail: (id: string) => `${ExternalApi}${api_host}/memories/${id}`,
|
|
updateMemorySetting: (id: string) =>
|
|
`${ExternalApi}${api_host}/memories/${id}`,
|
|
deleteMemoryMessage: (data: { memory_id: string; message_id: string }) =>
|
|
`${ExternalApi}${api_host}/messages/${data.memory_id}:${data.message_id}`,
|
|
getMessageContent: (data: { memory_id: string; message_id: string }) =>
|
|
`${ExternalApi}${api_host}/messages/${data.memory_id}:${data.message_id}/content`,
|
|
updateMessageState: (data: { memory_id: string; message_id: string }) =>
|
|
`${ExternalApi}${api_host}/messages/${data.memory_id}:${data.message_id}`,
|
|
|
|
// data pipeline
|
|
fetchDataflow: (id: string) => `${api_host}/dataflow/get/${id}`,
|
|
setDataflow: `${api_host}/dataflow/set`,
|
|
removeDataflow: `${api_host}/dataflow/rm`,
|
|
listDataflow: `${api_host}/dataflow/list`,
|
|
runDataflow: `${api_host}/dataflow/run`,
|
|
|
|
// admin
|
|
adminLogin: `${ExternalApi}${api_host}/admin/login`,
|
|
adminLogout: `${ExternalApi}${api_host}/admin/logout`,
|
|
adminListUsers: `${ExternalApi}${api_host}/admin/users`,
|
|
adminCreateUser: `${ExternalApi}${api_host}/admin/users`,
|
|
adminSetSuperuser: (username: string) =>
|
|
`${ExternalApi}${api_host}/admin/users/${username}/admin`,
|
|
adminGetUserDetails: (username: string) =>
|
|
`${ExternalApi}${api_host}/admin/users/${username}`,
|
|
adminUpdateUserStatus: (username: string) =>
|
|
`${ExternalApi}${api_host}/admin/users/${username}/activate`,
|
|
adminUpdateUserPassword: (username: string) =>
|
|
`${ExternalApi}${api_host}/admin/users/${username}/password`,
|
|
adminDeleteUser: (username: string) =>
|
|
`${ExternalApi}${api_host}/admin/users/${username}`,
|
|
adminListUserDatasets: (username: string) =>
|
|
`${ExternalApi}${api_host}/admin/users/${username}/datasets`,
|
|
adminListUserAgents: (username: string) =>
|
|
`${ExternalApi}${api_host}/admin/users/${username}/agents`,
|
|
|
|
adminListServices: `${ExternalApi}${api_host}/admin/services`,
|
|
adminShowServiceDetails: (serviceId: string) =>
|
|
`${ExternalApi}${api_host}/admin/services/${serviceId}`,
|
|
|
|
adminListRoles: `${ExternalApi}${api_host}/admin/roles`,
|
|
adminListRolesWithPermission: `${ExternalApi}${api_host}/admin/roles_with_permission`,
|
|
adminGetRolePermissions: (roleName: string) =>
|
|
`${ExternalApi}${api_host}/admin/roles/${roleName}/permissions`,
|
|
adminAssignRolePermissions: (roleName: string) =>
|
|
`${ExternalApi}${api_host}/admin/roles/${roleName}/permission`,
|
|
adminRevokeRolePermissions: (roleName: string) =>
|
|
`${ExternalApi}${api_host}/admin/roles/${roleName}/permission`,
|
|
adminCreateRole: `${ExternalApi}${api_host}/admin/roles`,
|
|
adminDeleteRole: (roleName: string) =>
|
|
`${ExternalApi}${api_host}/admin/roles/${roleName}`,
|
|
adminUpdateRoleDescription: (roleName: string) =>
|
|
`${ExternalApi}${api_host}/admin/roles/${roleName}`,
|
|
|
|
adminUpdateUserRole: (username: string) =>
|
|
`${ExternalApi}${api_host}/admin/users/${username}/role`,
|
|
adminGetUserPermissions: (username: string) =>
|
|
`${ExternalApi}${api_host}/admin/users/${username}/permissions`,
|
|
|
|
adminListResources: `${ExternalApi}${api_host}/admin/roles/resource`,
|
|
|
|
adminListWhitelist: `${ExternalApi}${api_host}/admin/whitelist`,
|
|
adminCreateWhitelistEntry: `${ExternalApi}${api_host}/admin/whitelist/add`,
|
|
adminUpdateWhitelistEntry: (id: number) =>
|
|
`${ExternalApi}${api_host}/admin/whitelist/${id}`,
|
|
adminDeleteWhitelistEntry: (email: string) =>
|
|
`${ExternalApi}${api_host}/admin/whitelist/${email}`,
|
|
adminImportWhitelist: `${ExternalApi}${api_host}/admin/whitelist/batch`,
|
|
|
|
adminGetSystemVersion: `${ExternalApi}${api_host}/admin/version`,
|
|
|
|
// Sandbox settings
|
|
adminListSandboxProviders: `${ExternalApi}${api_host}/admin/sandbox/providers`,
|
|
adminGetSandboxProviderSchema: (providerId: string) =>
|
|
`${ExternalApi}${api_host}/admin/sandbox/providers/${providerId}/schema`,
|
|
adminGetSandboxConfig: `${ExternalApi}${api_host}/admin/sandbox/config`,
|
|
adminSetSandboxConfig: `${ExternalApi}${api_host}/admin/sandbox/config`,
|
|
adminTestSandboxConnection: `${ExternalApi}${api_host}/admin/sandbox/test`,
|
|
};
|