@njdamstra/appwrite-utils-cli 1.8.9 → 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/CONFIG_TODO.md +1189 -0
- package/SELECTION_DIALOGS.md +146 -0
- package/SERVICE_IMPLEMENTATION_REPORT.md +462 -0
- package/dist/adapters/index.d.ts +7 -8
- package/dist/adapters/index.js +7 -9
- package/dist/backups/operations/bucketBackup.js +2 -2
- package/dist/backups/operations/collectionBackup.d.ts +1 -1
- package/dist/backups/operations/collectionBackup.js +3 -3
- package/dist/backups/operations/comprehensiveBackup.d.ts +1 -1
- package/dist/backups/operations/comprehensiveBackup.js +2 -2
- package/dist/backups/tracking/centralizedTracking.d.ts +1 -1
- package/dist/backups/tracking/centralizedTracking.js +2 -2
- package/dist/cli/commands/configCommands.js +51 -7
- package/dist/cli/commands/databaseCommands.d.ts +1 -0
- package/dist/cli/commands/databaseCommands.js +119 -9
- package/dist/cli/commands/functionCommands.js +3 -3
- package/dist/cli/commands/importFileCommands.d.ts +7 -0
- package/dist/cli/commands/importFileCommands.js +674 -0
- package/dist/cli/commands/schemaCommands.js +3 -3
- package/dist/cli/commands/storageCommands.js +2 -3
- package/dist/cli/commands/transferCommands.js +3 -5
- package/dist/collections/attributes.d.ts +1 -1
- package/dist/collections/attributes.js +85 -35
- package/dist/collections/indexes.js +2 -4
- package/dist/collections/methods.d.ts +1 -1
- package/dist/collections/methods.js +111 -192
- package/dist/collections/tableOperations.d.ts +1 -0
- package/dist/collections/tableOperations.js +90 -23
- package/dist/collections/transferOperations.d.ts +1 -1
- package/dist/collections/transferOperations.js +3 -4
- package/dist/collections/wipeOperations.d.ts +4 -3
- package/dist/collections/wipeOperations.js +112 -39
- package/dist/databases/methods.js +2 -2
- package/dist/databases/setup.js +2 -2
- package/dist/examples/yamlTerminologyExample.js +2 -2
- package/dist/functions/deployments.d.ts +1 -1
- package/dist/functions/deployments.js +5 -5
- package/dist/functions/fnConfigDiscovery.js +2 -2
- package/dist/functions/methods.js +16 -4
- package/dist/init.js +1 -1
- package/dist/interactiveCLI.d.ts +6 -1
- package/dist/interactiveCLI.js +64 -10
- package/dist/main.js +130 -177
- package/dist/migrations/afterImportActions.js +2 -3
- package/dist/migrations/appwriteToX.d.ts +97 -1
- package/dist/migrations/appwriteToX.js +9 -7
- package/dist/migrations/comprehensiveTransfer.js +3 -5
- package/dist/migrations/dataLoader.d.ts +194 -2
- package/dist/migrations/dataLoader.js +2 -5
- package/dist/migrations/importController.js +3 -4
- package/dist/migrations/importDataActions.js +3 -3
- package/dist/migrations/relationships.js +1 -2
- package/dist/migrations/services/DataTransformationService.js +2 -2
- package/dist/migrations/services/FileHandlerService.js +1 -1
- package/dist/migrations/services/ImportOrchestrator.js +4 -4
- package/dist/migrations/services/RateLimitManager.js +1 -1
- package/dist/migrations/services/RelationshipResolver.js +1 -1
- package/dist/migrations/services/UserMappingService.js +1 -1
- package/dist/migrations/services/ValidationService.js +1 -1
- package/dist/migrations/transfer.d.ts +8 -4
- package/dist/migrations/transfer.js +106 -55
- package/dist/migrations/yaml/YamlImportConfigLoader.js +1 -1
- package/dist/migrations/yaml/YamlImportIntegration.js +2 -2
- package/dist/migrations/yaml/generateImportSchemas.js +1 -1
- package/dist/setupCommands.d.ts +1 -1
- package/dist/setupCommands.js +5 -6
- package/dist/setupController.js +1 -1
- package/dist/shared/backupTracking.d.ts +1 -1
- package/dist/shared/backupTracking.js +2 -2
- package/dist/shared/confirmationDialogs.js +1 -1
- package/dist/shared/migrationHelpers.d.ts +1 -1
- package/dist/shared/migrationHelpers.js +3 -3
- package/dist/shared/operationQueue.d.ts +1 -1
- package/dist/shared/operationQueue.js +2 -3
- package/dist/shared/operationsTable.d.ts +1 -1
- package/dist/shared/operationsTable.js +2 -2
- package/dist/shared/progressManager.js +1 -1
- package/dist/shared/selectionDialogs.js +9 -8
- package/dist/storage/methods.js +4 -4
- package/dist/storage/schemas.d.ts +386 -2
- package/dist/tables/indexManager.d.ts +65 -0
- package/dist/tables/indexManager.js +294 -0
- package/dist/types.d.ts +2 -2
- package/dist/types.js +1 -1
- package/dist/users/methods.js +2 -3
- package/dist/utils/configMigration.js +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.js +1 -1
- package/dist/utils/loadConfigs.d.ts +2 -2
- package/dist/utils/loadConfigs.js +6 -7
- package/dist/utils/setupFiles.js +5 -7
- package/dist/utilsController.d.ts +15 -8
- package/dist/utilsController.js +57 -28
- package/package.json +8 -4
- package/src/adapters/index.ts +8 -34
- package/src/backups/operations/bucketBackup.ts +2 -2
- package/src/backups/operations/collectionBackup.ts +4 -4
- package/src/backups/operations/comprehensiveBackup.ts +3 -3
- package/src/backups/tracking/centralizedTracking.ts +3 -3
- package/src/cli/commands/configCommands.ts +72 -8
- package/src/cli/commands/databaseCommands.ts +161 -9
- package/src/cli/commands/functionCommands.ts +4 -3
- package/src/cli/commands/importFileCommands.ts +815 -0
- package/src/cli/commands/schemaCommands.ts +3 -3
- package/src/cli/commands/storageCommands.ts +2 -3
- package/src/cli/commands/transferCommands.ts +3 -6
- package/src/collections/attributes.ts +155 -39
- package/src/collections/indexes.ts +5 -7
- package/src/collections/methods.ts +115 -150
- package/src/collections/tableOperations.ts +92 -21
- package/src/collections/transferOperations.ts +4 -5
- package/src/collections/wipeOperations.ts +154 -51
- package/src/databases/methods.ts +2 -2
- package/src/databases/setup.ts +2 -2
- package/src/examples/yamlTerminologyExample.ts +2 -2
- package/src/functions/deployments.ts +6 -5
- package/src/functions/fnConfigDiscovery.ts +2 -2
- package/src/functions/methods.ts +19 -6
- package/src/init.ts +1 -1
- package/src/interactiveCLI.ts +78 -13
- package/src/main.ts +143 -287
- package/src/migrations/afterImportActions.ts +2 -3
- package/src/migrations/appwriteToX.ts +12 -8
- package/src/migrations/comprehensiveTransfer.ts +6 -6
- package/src/migrations/dataLoader.ts +2 -5
- package/src/migrations/importController.ts +3 -4
- package/src/migrations/importDataActions.ts +3 -3
- package/src/migrations/relationships.ts +1 -2
- package/src/migrations/services/DataTransformationService.ts +2 -2
- package/src/migrations/services/FileHandlerService.ts +1 -1
- package/src/migrations/services/ImportOrchestrator.ts +4 -4
- package/src/migrations/services/RateLimitManager.ts +1 -1
- package/src/migrations/services/RelationshipResolver.ts +1 -1
- package/src/migrations/services/UserMappingService.ts +1 -1
- package/src/migrations/services/ValidationService.ts +1 -1
- package/src/migrations/transfer.ts +126 -83
- package/src/migrations/yaml/YamlImportConfigLoader.ts +1 -1
- package/src/migrations/yaml/YamlImportIntegration.ts +2 -2
- package/src/migrations/yaml/generateImportSchemas.ts +1 -1
- package/src/setupCommands.ts +5 -6
- package/src/setupController.ts +1 -1
- package/src/shared/backupTracking.ts +3 -3
- package/src/shared/confirmationDialogs.ts +1 -1
- package/src/shared/migrationHelpers.ts +4 -4
- package/src/shared/operationQueue.ts +3 -4
- package/src/shared/operationsTable.ts +3 -3
- package/src/shared/progressManager.ts +1 -1
- package/src/shared/selectionDialogs.ts +9 -8
- package/src/storage/methods.ts +4 -4
- package/src/tables/indexManager.ts +409 -0
- package/src/types.ts +2 -2
- package/src/users/methods.ts +2 -3
- package/src/utils/configMigration.ts +1 -1
- package/src/utils/index.ts +1 -1
- package/src/utils/loadConfigs.ts +15 -7
- package/src/utils/setupFiles.ts +5 -7
- package/src/utilsController.ts +86 -32
- package/dist/adapters/AdapterFactory.d.ts +0 -94
- package/dist/adapters/AdapterFactory.js +0 -405
- package/dist/adapters/DatabaseAdapter.d.ts +0 -233
- package/dist/adapters/DatabaseAdapter.js +0 -50
- package/dist/adapters/LegacyAdapter.d.ts +0 -50
- package/dist/adapters/LegacyAdapter.js +0 -612
- package/dist/adapters/TablesDBAdapter.d.ts +0 -45
- package/dist/adapters/TablesDBAdapter.js +0 -571
- package/dist/config/ConfigManager.d.ts +0 -445
- package/dist/config/ConfigManager.js +0 -625
- package/dist/config/configMigration.d.ts +0 -87
- package/dist/config/configMigration.js +0 -390
- package/dist/config/configValidation.d.ts +0 -66
- package/dist/config/configValidation.js +0 -358
- package/dist/config/index.d.ts +0 -8
- package/dist/config/index.js +0 -7
- package/dist/config/services/ConfigDiscoveryService.d.ts +0 -126
- package/dist/config/services/ConfigDiscoveryService.js +0 -374
- package/dist/config/services/ConfigLoaderService.d.ts +0 -129
- package/dist/config/services/ConfigLoaderService.js +0 -540
- package/dist/config/services/ConfigMergeService.d.ts +0 -208
- package/dist/config/services/ConfigMergeService.js +0 -308
- package/dist/config/services/ConfigValidationService.d.ts +0 -214
- package/dist/config/services/ConfigValidationService.js +0 -310
- package/dist/config/services/SessionAuthService.d.ts +0 -225
- package/dist/config/services/SessionAuthService.js +0 -456
- package/dist/config/services/__tests__/ConfigMergeService.test.d.ts +0 -1
- package/dist/config/services/__tests__/ConfigMergeService.test.js +0 -271
- package/dist/config/services/index.d.ts +0 -13
- package/dist/config/services/index.js +0 -10
- package/dist/config/yamlConfig.d.ts +0 -722
- package/dist/config/yamlConfig.js +0 -702
- package/dist/functions/pathResolution.d.ts +0 -37
- package/dist/functions/pathResolution.js +0 -185
- package/dist/shared/attributeMapper.d.ts +0 -20
- package/dist/shared/attributeMapper.js +0 -203
- package/dist/shared/errorUtils.d.ts +0 -54
- package/dist/shared/errorUtils.js +0 -95
- package/dist/shared/functionManager.d.ts +0 -48
- package/dist/shared/functionManager.js +0 -336
- package/dist/shared/indexManager.d.ts +0 -24
- package/dist/shared/indexManager.js +0 -151
- package/dist/shared/jsonSchemaGenerator.d.ts +0 -50
- package/dist/shared/jsonSchemaGenerator.js +0 -290
- package/dist/shared/logging.d.ts +0 -61
- package/dist/shared/logging.js +0 -116
- package/dist/shared/messageFormatter.d.ts +0 -39
- package/dist/shared/messageFormatter.js +0 -162
- package/dist/shared/pydanticModelGenerator.d.ts +0 -17
- package/dist/shared/pydanticModelGenerator.js +0 -615
- package/dist/shared/schemaGenerator.d.ts +0 -40
- package/dist/shared/schemaGenerator.js +0 -556
- package/dist/utils/ClientFactory.d.ts +0 -87
- package/dist/utils/ClientFactory.js +0 -212
- package/dist/utils/configDiscovery.d.ts +0 -78
- package/dist/utils/configDiscovery.js +0 -472
- package/dist/utils/constantsGenerator.d.ts +0 -31
- package/dist/utils/constantsGenerator.js +0 -321
- package/dist/utils/dataConverters.d.ts +0 -46
- package/dist/utils/dataConverters.js +0 -139
- package/dist/utils/directoryUtils.d.ts +0 -22
- package/dist/utils/directoryUtils.js +0 -59
- package/dist/utils/getClientFromConfig.d.ts +0 -39
- package/dist/utils/getClientFromConfig.js +0 -199
- package/dist/utils/helperFunctions.d.ts +0 -63
- package/dist/utils/helperFunctions.js +0 -156
- package/dist/utils/pathResolvers.d.ts +0 -53
- package/dist/utils/pathResolvers.js +0 -72
- package/dist/utils/projectConfig.d.ts +0 -119
- package/dist/utils/projectConfig.js +0 -171
- package/dist/utils/retryFailedPromises.d.ts +0 -2
- package/dist/utils/retryFailedPromises.js +0 -23
- package/dist/utils/sessionAuth.d.ts +0 -48
- package/dist/utils/sessionAuth.js +0 -164
- package/dist/utils/typeGuards.d.ts +0 -35
- package/dist/utils/typeGuards.js +0 -57
- package/dist/utils/validationRules.d.ts +0 -43
- package/dist/utils/validationRules.js +0 -42
- package/dist/utils/versionDetection.d.ts +0 -58
- package/dist/utils/versionDetection.js +0 -251
- package/dist/utils/yamlConverter.d.ts +0 -100
- package/dist/utils/yamlConverter.js +0 -428
- package/dist/utils/yamlLoader.d.ts +0 -70
- package/dist/utils/yamlLoader.js +0 -267
- package/src/adapters/AdapterFactory.ts +0 -510
- package/src/adapters/DatabaseAdapter.ts +0 -306
- package/src/adapters/LegacyAdapter.ts +0 -841
- package/src/adapters/TablesDBAdapter.ts +0 -773
- package/src/config/ConfigManager.ts +0 -808
- package/src/config/README.md +0 -274
- package/src/config/configMigration.ts +0 -575
- package/src/config/configValidation.ts +0 -445
- package/src/config/index.ts +0 -10
- package/src/config/services/ConfigDiscoveryService.ts +0 -463
- package/src/config/services/ConfigLoaderService.ts +0 -740
- package/src/config/services/ConfigMergeService.ts +0 -388
- package/src/config/services/ConfigValidationService.ts +0 -394
- package/src/config/services/SessionAuthService.ts +0 -565
- package/src/config/services/__tests__/ConfigMergeService.test.ts +0 -351
- package/src/config/services/index.ts +0 -29
- package/src/config/yamlConfig.ts +0 -761
- package/src/functions/pathResolution.ts +0 -227
- package/src/shared/attributeMapper.ts +0 -229
- package/src/shared/errorUtils.ts +0 -110
- package/src/shared/functionManager.ts +0 -525
- package/src/shared/indexManager.ts +0 -254
- package/src/shared/jsonSchemaGenerator.ts +0 -383
- package/src/shared/logging.ts +0 -149
- package/src/shared/messageFormatter.ts +0 -208
- package/src/shared/pydanticModelGenerator.ts +0 -618
- package/src/shared/schemaGenerator.ts +0 -644
- package/src/utils/ClientFactory.ts +0 -240
- package/src/utils/configDiscovery.ts +0 -557
- package/src/utils/constantsGenerator.ts +0 -369
- package/src/utils/dataConverters.ts +0 -159
- package/src/utils/directoryUtils.ts +0 -61
- package/src/utils/getClientFromConfig.ts +0 -257
- package/src/utils/helperFunctions.ts +0 -228
- package/src/utils/pathResolvers.ts +0 -81
- package/src/utils/projectConfig.ts +0 -299
- package/src/utils/retryFailedPromises.ts +0 -29
- package/src/utils/sessionAuth.ts +0 -230
- package/src/utils/typeGuards.ts +0 -65
- package/src/utils/validationRules.ts +0 -88
- package/src/utils/versionDetection.ts +0 -292
- package/src/utils/yamlConverter.ts +0 -542
- package/src/utils/yamlLoader.ts +0 -371
|
@@ -1,405 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* AdapterFactory - Unified Client Creation with Automatic API Detection
|
|
3
|
-
*
|
|
4
|
-
* This factory creates the appropriate database adapter (TablesDB or Legacy)
|
|
5
|
-
* based on version detection and configuration. It handles dynamic SDK imports
|
|
6
|
-
* and provides a single entry point for all database operations.
|
|
7
|
-
*/
|
|
8
|
-
import { detectAppwriteVersionCached, isVersionAtLeast } from "../utils/versionDetection.js";
|
|
9
|
-
import { TablesDBAdapter } from './TablesDBAdapter.js';
|
|
10
|
-
import { LegacyAdapter } from './LegacyAdapter.js';
|
|
11
|
-
import { logger } from '../shared/logging.js';
|
|
12
|
-
import { isValidSessionCookie } from '../utils/sessionAuth.js';
|
|
13
|
-
import { MessageFormatter } from '../shared/messageFormatter.js';
|
|
14
|
-
import { Client } from 'node-appwrite';
|
|
15
|
-
/**
|
|
16
|
-
* AdapterFactory - Main factory class for creating database adapters
|
|
17
|
-
*/
|
|
18
|
-
export class AdapterFactory {
|
|
19
|
-
static cache = new Map();
|
|
20
|
-
static CACHE_DURATION = 5 * 60 * 1000; // 5 minutes
|
|
21
|
-
/**
|
|
22
|
-
* Create a database adapter based on configuration and detection
|
|
23
|
-
*/
|
|
24
|
-
static async create(config) {
|
|
25
|
-
const startTime = Date.now();
|
|
26
|
-
// Validate authentication configuration
|
|
27
|
-
this.validateAuthConfig(config);
|
|
28
|
-
const cacheKey = `${config.appwriteEndpoint}:${config.appwriteProject}:${config.apiMode || 'auto'}`;
|
|
29
|
-
logger.info('Creating database adapter', {
|
|
30
|
-
endpoint: config.appwriteEndpoint,
|
|
31
|
-
project: config.appwriteProject,
|
|
32
|
-
requestedApiMode: config.apiMode || 'auto',
|
|
33
|
-
authMethod: config.authMethod || 'auto',
|
|
34
|
-
hasSessionCookie: !!config.sessionCookie,
|
|
35
|
-
hasPreConfiguredClient: !!config.preConfiguredClient,
|
|
36
|
-
forceRefresh: config.forceRefresh,
|
|
37
|
-
cacheKey,
|
|
38
|
-
operation: 'AdapterFactory.create'
|
|
39
|
-
});
|
|
40
|
-
// Check cache first (unless force refresh)
|
|
41
|
-
if (!config.forceRefresh) {
|
|
42
|
-
const cached = this.getCachedAdapter(cacheKey);
|
|
43
|
-
if (cached) {
|
|
44
|
-
const cacheAge = Date.now() - cached.timestamp;
|
|
45
|
-
logger.info('Using cached adapter', {
|
|
46
|
-
cacheKey,
|
|
47
|
-
cacheAge,
|
|
48
|
-
apiMode: cached.adapter.getApiMode(),
|
|
49
|
-
operation: 'AdapterFactory.create'
|
|
50
|
-
});
|
|
51
|
-
return {
|
|
52
|
-
adapter: cached.adapter,
|
|
53
|
-
apiMode: cached.adapter.getApiMode(),
|
|
54
|
-
client: cached.adapter.getRawClient()
|
|
55
|
-
};
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
// Determine API mode
|
|
59
|
-
let apiMode;
|
|
60
|
-
let detectionResult;
|
|
61
|
-
if (config.apiMode && config.apiMode !== 'auto') {
|
|
62
|
-
// Use explicitly configured mode
|
|
63
|
-
apiMode = config.apiMode;
|
|
64
|
-
logger.info('Using explicitly configured API mode', {
|
|
65
|
-
apiMode,
|
|
66
|
-
endpoint: config.appwriteEndpoint,
|
|
67
|
-
operation: 'AdapterFactory.create'
|
|
68
|
-
});
|
|
69
|
-
}
|
|
70
|
-
else {
|
|
71
|
-
// Auto-detect API mode
|
|
72
|
-
logger.info('Starting API mode auto-detection', {
|
|
73
|
-
endpoint: config.appwriteEndpoint,
|
|
74
|
-
project: config.appwriteProject,
|
|
75
|
-
forceRefresh: config.forceRefresh,
|
|
76
|
-
operation: 'AdapterFactory.create'
|
|
77
|
-
});
|
|
78
|
-
const detectionStartTime = Date.now();
|
|
79
|
-
// For version detection, we need some form of authentication
|
|
80
|
-
const authKey = config.appwriteKey || '';
|
|
81
|
-
detectionResult = await detectAppwriteVersionCached(config.appwriteEndpoint, config.appwriteProject, authKey, config.forceRefresh);
|
|
82
|
-
const detectionDuration = Date.now() - detectionStartTime;
|
|
83
|
-
apiMode = detectionResult.apiMode;
|
|
84
|
-
logger.info('API mode detection completed', {
|
|
85
|
-
apiMode,
|
|
86
|
-
detectionMethod: detectionResult.detectionMethod,
|
|
87
|
-
confidence: detectionResult.confidence,
|
|
88
|
-
serverVersion: detectionResult.serverVersion,
|
|
89
|
-
detectionDuration,
|
|
90
|
-
endpoint: config.appwriteEndpoint,
|
|
91
|
-
operation: 'AdapterFactory.create'
|
|
92
|
-
});
|
|
93
|
-
// Add version-based safety check to prevent using TablesDB on old servers
|
|
94
|
-
if (detectionResult.serverVersion &&
|
|
95
|
-
!isVersionAtLeast(detectionResult.serverVersion, '1.8.0') &&
|
|
96
|
-
apiMode === 'tablesdb') {
|
|
97
|
-
logger.warn('Overriding TablesDB detection - server version too old', {
|
|
98
|
-
serverVersion: detectionResult.serverVersion,
|
|
99
|
-
detectedMode: apiMode,
|
|
100
|
-
overrideMode: 'legacy',
|
|
101
|
-
operation: 'AdapterFactory.create'
|
|
102
|
-
});
|
|
103
|
-
apiMode = 'legacy';
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
// Create appropriate adapter
|
|
107
|
-
logger.info('Creating adapter instance', {
|
|
108
|
-
apiMode,
|
|
109
|
-
endpoint: config.appwriteEndpoint,
|
|
110
|
-
operation: 'AdapterFactory.create'
|
|
111
|
-
});
|
|
112
|
-
const adapterStartTime = Date.now();
|
|
113
|
-
const result = await this.createAdapter(config, apiMode);
|
|
114
|
-
const adapterDuration = Date.now() - adapterStartTime;
|
|
115
|
-
// Cache the result
|
|
116
|
-
this.setCachedAdapter(cacheKey, result.adapter);
|
|
117
|
-
const totalDuration = Date.now() - startTime;
|
|
118
|
-
logger.info('Adapter creation completed', {
|
|
119
|
-
apiMode,
|
|
120
|
-
adapterDuration,
|
|
121
|
-
totalDuration,
|
|
122
|
-
cached: true,
|
|
123
|
-
operation: 'AdapterFactory.create'
|
|
124
|
-
});
|
|
125
|
-
return {
|
|
126
|
-
...result,
|
|
127
|
-
apiMode,
|
|
128
|
-
detectionResult
|
|
129
|
-
};
|
|
130
|
-
}
|
|
131
|
-
/**
|
|
132
|
-
* Create adapter from AppwriteConfig (convenience method)
|
|
133
|
-
*/
|
|
134
|
-
static async createFromConfig(config, forceRefresh) {
|
|
135
|
-
return this.create({
|
|
136
|
-
appwriteEndpoint: config.appwriteEndpoint,
|
|
137
|
-
appwriteProject: config.appwriteProject,
|
|
138
|
-
appwriteKey: config.appwriteKey,
|
|
139
|
-
apiMode: config.apiMode || 'auto', // Cast to access new property
|
|
140
|
-
forceRefresh
|
|
141
|
-
});
|
|
142
|
-
}
|
|
143
|
-
/**
|
|
144
|
-
* Create specific adapter type (internal method)
|
|
145
|
-
*/
|
|
146
|
-
static async createAdapter(config, apiMode) {
|
|
147
|
-
if (apiMode === 'tablesdb') {
|
|
148
|
-
return this.createTablesDBAdapter(config);
|
|
149
|
-
}
|
|
150
|
-
else {
|
|
151
|
-
return this.createLegacyAdapter(config);
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* Create TablesDB adapter with dynamic import
|
|
156
|
-
*/
|
|
157
|
-
static async createTablesDBAdapter(config) {
|
|
158
|
-
const startTime = Date.now();
|
|
159
|
-
try {
|
|
160
|
-
logger.info('Creating TablesDB adapter (static SDK imports)', {
|
|
161
|
-
endpoint: config.appwriteEndpoint,
|
|
162
|
-
operation: 'createTablesDBAdapter'
|
|
163
|
-
});
|
|
164
|
-
// Use pre-configured client or create session-aware client with TablesDB Client
|
|
165
|
-
let client;
|
|
166
|
-
if (config.preConfiguredClient) {
|
|
167
|
-
client = config.preConfiguredClient;
|
|
168
|
-
}
|
|
169
|
-
else {
|
|
170
|
-
client = new Client()
|
|
171
|
-
.setEndpoint(config.appwriteEndpoint)
|
|
172
|
-
.setProject(config.appwriteProject);
|
|
173
|
-
// Set authentication method with mode headers
|
|
174
|
-
// Prefer session with admin mode, fallback to API key with default mode
|
|
175
|
-
if (config.sessionCookie && isValidSessionCookie(config.sessionCookie)) {
|
|
176
|
-
client.setSession(config.sessionCookie);
|
|
177
|
-
client.headers['X-Appwrite-Mode'] = 'admin';
|
|
178
|
-
logger.debug('Using session authentication for TablesDB adapter', {
|
|
179
|
-
project: config.appwriteProject,
|
|
180
|
-
operation: 'createTablesDBAdapter'
|
|
181
|
-
});
|
|
182
|
-
}
|
|
183
|
-
else if (config.appwriteKey) {
|
|
184
|
-
client.setKey(config.appwriteKey);
|
|
185
|
-
client.headers['X-Appwrite-Mode'] = 'default';
|
|
186
|
-
logger.debug('Using API key authentication for TablesDB adapter', {
|
|
187
|
-
project: config.appwriteProject,
|
|
188
|
-
operation: 'createTablesDBAdapter'
|
|
189
|
-
});
|
|
190
|
-
}
|
|
191
|
-
else {
|
|
192
|
-
throw new Error("No authentication available for adapter");
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
const adapter = new TablesDBAdapter(client);
|
|
196
|
-
const totalDuration = Date.now() - startTime;
|
|
197
|
-
logger.info('TablesDB adapter created successfully', {
|
|
198
|
-
totalDuration,
|
|
199
|
-
endpoint: config.appwriteEndpoint,
|
|
200
|
-
operation: 'createTablesDBAdapter'
|
|
201
|
-
});
|
|
202
|
-
return { adapter, client };
|
|
203
|
-
}
|
|
204
|
-
catch (error) {
|
|
205
|
-
const errorDuration = Date.now() - startTime;
|
|
206
|
-
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
|
|
207
|
-
MessageFormatter.warning('Failed to create TablesDB adapter - falling back to legacy', { prefix: "Adapter" });
|
|
208
|
-
logger.warn('TablesDB adapter creation failed, falling back to legacy', {
|
|
209
|
-
error: errorMessage,
|
|
210
|
-
errorDuration,
|
|
211
|
-
endpoint: config.appwriteEndpoint,
|
|
212
|
-
operation: 'createTablesDBAdapter'
|
|
213
|
-
});
|
|
214
|
-
// Fallback to legacy adapter if TablesDB creation fails
|
|
215
|
-
return this.createLegacyAdapter(config);
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
/**
|
|
219
|
-
* Create Legacy adapter with dynamic import
|
|
220
|
-
*/
|
|
221
|
-
static async createLegacyAdapter(config) {
|
|
222
|
-
const startTime = Date.now();
|
|
223
|
-
try {
|
|
224
|
-
logger.info('Creating legacy adapter (static SDK imports)', {
|
|
225
|
-
endpoint: config.appwriteEndpoint,
|
|
226
|
-
operation: 'createLegacyAdapter'
|
|
227
|
-
});
|
|
228
|
-
// Use pre-configured client or create session-aware client with Legacy Client
|
|
229
|
-
let client;
|
|
230
|
-
if (config.preConfiguredClient) {
|
|
231
|
-
client = config.preConfiguredClient;
|
|
232
|
-
}
|
|
233
|
-
else {
|
|
234
|
-
client = new Client()
|
|
235
|
-
.setEndpoint(config.appwriteEndpoint)
|
|
236
|
-
.setProject(config.appwriteProject);
|
|
237
|
-
// Set authentication method with mode headers
|
|
238
|
-
// Prefer session with admin mode, fallback to API key with default mode
|
|
239
|
-
if (config.sessionCookie && isValidSessionCookie(config.sessionCookie)) {
|
|
240
|
-
client.setSession(config.sessionCookie);
|
|
241
|
-
client.headers['X-Appwrite-Mode'] = 'admin';
|
|
242
|
-
logger.debug('Using session authentication for Legacy adapter', {
|
|
243
|
-
project: config.appwriteProject,
|
|
244
|
-
operation: 'createLegacyAdapter'
|
|
245
|
-
});
|
|
246
|
-
}
|
|
247
|
-
else if (config.appwriteKey) {
|
|
248
|
-
client.setKey(config.appwriteKey);
|
|
249
|
-
client.headers['X-Appwrite-Mode'] = 'default';
|
|
250
|
-
logger.debug('Using API key authentication for Legacy adapter', {
|
|
251
|
-
project: config.appwriteProject,
|
|
252
|
-
operation: 'createLegacyAdapter'
|
|
253
|
-
});
|
|
254
|
-
}
|
|
255
|
-
else {
|
|
256
|
-
throw new Error("No authentication available for adapter");
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
const adapter = new LegacyAdapter(client);
|
|
260
|
-
const totalDuration = Date.now() - startTime;
|
|
261
|
-
logger.info('Legacy adapter created successfully', {
|
|
262
|
-
totalDuration,
|
|
263
|
-
endpoint: config.appwriteEndpoint,
|
|
264
|
-
operation: 'createLegacyAdapter'
|
|
265
|
-
});
|
|
266
|
-
return { adapter, client };
|
|
267
|
-
}
|
|
268
|
-
catch (error) {
|
|
269
|
-
const errorDuration = Date.now() - startTime;
|
|
270
|
-
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
|
|
271
|
-
logger.error('Failed to load legacy Appwrite SDK', {
|
|
272
|
-
error: errorMessage,
|
|
273
|
-
errorDuration,
|
|
274
|
-
endpoint: config.appwriteEndpoint,
|
|
275
|
-
operation: 'createLegacyAdapter'
|
|
276
|
-
});
|
|
277
|
-
throw new Error(`Failed to load legacy Appwrite SDK: ${errorMessage}`);
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
/**
|
|
281
|
-
* Get cached adapter if available and not expired
|
|
282
|
-
*/
|
|
283
|
-
static getCachedAdapter(cacheKey) {
|
|
284
|
-
const cached = this.cache.get(cacheKey);
|
|
285
|
-
if (!cached) {
|
|
286
|
-
return null;
|
|
287
|
-
}
|
|
288
|
-
// Check if cache is expired
|
|
289
|
-
if (Date.now() - cached.timestamp > this.CACHE_DURATION) {
|
|
290
|
-
this.cache.delete(cacheKey);
|
|
291
|
-
return null;
|
|
292
|
-
}
|
|
293
|
-
return cached;
|
|
294
|
-
}
|
|
295
|
-
/**
|
|
296
|
-
* Cache adapter instance
|
|
297
|
-
*/
|
|
298
|
-
static setCachedAdapter(cacheKey, adapter) {
|
|
299
|
-
this.cache.set(cacheKey, {
|
|
300
|
-
adapter,
|
|
301
|
-
timestamp: Date.now()
|
|
302
|
-
});
|
|
303
|
-
}
|
|
304
|
-
/**
|
|
305
|
-
* Clear adapter cache (useful for testing)
|
|
306
|
-
*/
|
|
307
|
-
static clearCache() {
|
|
308
|
-
this.cache.clear();
|
|
309
|
-
}
|
|
310
|
-
/**
|
|
311
|
-
* Validate authentication configuration
|
|
312
|
-
*/
|
|
313
|
-
static validateAuthConfig(config) {
|
|
314
|
-
const hasApiKey = config.appwriteKey && config.appwriteKey.trim().length > 0;
|
|
315
|
-
const hasSessionCookie = config.sessionCookie && isValidSessionCookie(config.sessionCookie);
|
|
316
|
-
const hasPreConfiguredClient = !!config.preConfiguredClient;
|
|
317
|
-
// Must have at least one authentication method
|
|
318
|
-
if (!hasApiKey && !hasSessionCookie && !hasPreConfiguredClient) {
|
|
319
|
-
throw new Error(`No valid authentication method provided for project ${config.appwriteProject}. ` +
|
|
320
|
-
`Please provide an API key, session cookie, or pre-configured client.`);
|
|
321
|
-
}
|
|
322
|
-
// Validate session cookie format if provided
|
|
323
|
-
if (config.sessionCookie && !isValidSessionCookie(config.sessionCookie)) {
|
|
324
|
-
throw new Error(`Invalid session cookie format provided for project ${config.appwriteProject}. ` +
|
|
325
|
-
`Session cookie must be a valid JWT token.`);
|
|
326
|
-
}
|
|
327
|
-
logger.debug('Authentication configuration validated', {
|
|
328
|
-
hasApiKey,
|
|
329
|
-
hasSessionCookie,
|
|
330
|
-
hasPreConfiguredClient,
|
|
331
|
-
authMethod: config.authMethod || 'auto',
|
|
332
|
-
operation: 'validateAuthConfig'
|
|
333
|
-
});
|
|
334
|
-
}
|
|
335
|
-
/**
|
|
336
|
-
* Test connection and API capabilities
|
|
337
|
-
*/
|
|
338
|
-
static async testConnection(config) {
|
|
339
|
-
try {
|
|
340
|
-
const result = await this.create({ ...config, forceRefresh: true });
|
|
341
|
-
const metadata = result.adapter.getMetadata();
|
|
342
|
-
// Test basic operations
|
|
343
|
-
const capabilities = [];
|
|
344
|
-
if (metadata.capabilities.bulkOperations) {
|
|
345
|
-
capabilities.push('Bulk Operations');
|
|
346
|
-
}
|
|
347
|
-
if (metadata.capabilities.advancedQueries) {
|
|
348
|
-
capabilities.push('Advanced Queries');
|
|
349
|
-
}
|
|
350
|
-
if (metadata.capabilities.realtime) {
|
|
351
|
-
capabilities.push('Realtime');
|
|
352
|
-
}
|
|
353
|
-
if (metadata.capabilities.transactions) {
|
|
354
|
-
capabilities.push('Transactions');
|
|
355
|
-
}
|
|
356
|
-
return {
|
|
357
|
-
success: true,
|
|
358
|
-
apiMode: result.apiMode,
|
|
359
|
-
capabilities
|
|
360
|
-
};
|
|
361
|
-
}
|
|
362
|
-
catch (error) {
|
|
363
|
-
return {
|
|
364
|
-
success: false,
|
|
365
|
-
apiMode: 'legacy', // Default fallback
|
|
366
|
-
capabilities: [],
|
|
367
|
-
error: error instanceof Error ? error.message : 'Unknown error'
|
|
368
|
-
};
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
/**
|
|
373
|
-
* Convenience function for quick adapter creation
|
|
374
|
-
*/
|
|
375
|
-
export async function createDatabaseAdapter(endpoint, project, apiKey, mode = 'auto', sessionCookie) {
|
|
376
|
-
const result = await AdapterFactory.create({
|
|
377
|
-
appwriteEndpoint: endpoint,
|
|
378
|
-
appwriteProject: project,
|
|
379
|
-
appwriteKey: apiKey,
|
|
380
|
-
apiMode: mode,
|
|
381
|
-
sessionCookie
|
|
382
|
-
});
|
|
383
|
-
return result.adapter;
|
|
384
|
-
}
|
|
385
|
-
/**
|
|
386
|
-
* Helper function to get adapter metadata without creating full adapter
|
|
387
|
-
*/
|
|
388
|
-
export async function getApiCapabilities(endpoint, project, apiKey, sessionCookie) {
|
|
389
|
-
const adapter = await createDatabaseAdapter(endpoint, project, apiKey, 'auto', sessionCookie);
|
|
390
|
-
const metadata = adapter.getMetadata();
|
|
391
|
-
const capabilities = [];
|
|
392
|
-
if (metadata.capabilities.bulkOperations)
|
|
393
|
-
capabilities.push('Bulk Operations');
|
|
394
|
-
if (metadata.capabilities.advancedQueries)
|
|
395
|
-
capabilities.push('Advanced Queries');
|
|
396
|
-
if (metadata.capabilities.realtime)
|
|
397
|
-
capabilities.push('Realtime');
|
|
398
|
-
if (metadata.capabilities.transactions)
|
|
399
|
-
capabilities.push('Transactions');
|
|
400
|
-
return {
|
|
401
|
-
apiMode: metadata.apiMode,
|
|
402
|
-
terminology: metadata.terminology,
|
|
403
|
-
capabilities
|
|
404
|
-
};
|
|
405
|
-
}
|
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* DatabaseAdapter Interface - Unified API for Appwrite Database Operations
|
|
3
|
-
*
|
|
4
|
-
* This interface provides a unified way to interact with both legacy Appwrite
|
|
5
|
-
* (collections/documents) and new TablesDB (tables/rows) APIs. All internal
|
|
6
|
-
* code uses TablesDB-style method signatures for consistency.
|
|
7
|
-
*/
|
|
8
|
-
import type { Client } from "node-appwrite";
|
|
9
|
-
import type { ApiMode } from "../utils/versionDetection.js";
|
|
10
|
-
export interface CreateRowParams {
|
|
11
|
-
databaseId: string;
|
|
12
|
-
tableId: string;
|
|
13
|
-
id: string;
|
|
14
|
-
data: any;
|
|
15
|
-
permissions?: string[];
|
|
16
|
-
}
|
|
17
|
-
export interface UpdateRowParams {
|
|
18
|
-
databaseId: string;
|
|
19
|
-
tableId: string;
|
|
20
|
-
id: string;
|
|
21
|
-
data?: any;
|
|
22
|
-
permissions?: string[];
|
|
23
|
-
}
|
|
24
|
-
export interface ListRowsParams {
|
|
25
|
-
databaseId: string;
|
|
26
|
-
tableId: string;
|
|
27
|
-
queries?: any[];
|
|
28
|
-
}
|
|
29
|
-
export interface DeleteRowParams {
|
|
30
|
-
databaseId: string;
|
|
31
|
-
tableId: string;
|
|
32
|
-
id: string;
|
|
33
|
-
}
|
|
34
|
-
export interface CreateTableParams {
|
|
35
|
-
databaseId: string;
|
|
36
|
-
id: string;
|
|
37
|
-
name: string;
|
|
38
|
-
permissions?: string[];
|
|
39
|
-
documentSecurity?: boolean;
|
|
40
|
-
rowSecurity?: boolean;
|
|
41
|
-
enabled?: boolean;
|
|
42
|
-
}
|
|
43
|
-
export interface UpdateTableParams {
|
|
44
|
-
databaseId: string;
|
|
45
|
-
id: string;
|
|
46
|
-
name: string;
|
|
47
|
-
permissions?: string[];
|
|
48
|
-
documentSecurity?: boolean;
|
|
49
|
-
rowSecurity?: boolean;
|
|
50
|
-
enabled?: boolean;
|
|
51
|
-
}
|
|
52
|
-
export interface ListTablesParams {
|
|
53
|
-
databaseId: string;
|
|
54
|
-
queries?: any[];
|
|
55
|
-
}
|
|
56
|
-
export interface DeleteTableParams {
|
|
57
|
-
databaseId: string;
|
|
58
|
-
tableId: string;
|
|
59
|
-
}
|
|
60
|
-
export interface GetTableParams {
|
|
61
|
-
databaseId: string;
|
|
62
|
-
tableId: string;
|
|
63
|
-
}
|
|
64
|
-
export interface BulkCreateRowsParams {
|
|
65
|
-
databaseId: string;
|
|
66
|
-
tableId: string;
|
|
67
|
-
rows: any[];
|
|
68
|
-
}
|
|
69
|
-
export interface BulkUpsertRowsParams {
|
|
70
|
-
databaseId: string;
|
|
71
|
-
tableId: string;
|
|
72
|
-
rows: any[];
|
|
73
|
-
}
|
|
74
|
-
export interface BulkDeleteRowsParams {
|
|
75
|
-
databaseId: string;
|
|
76
|
-
tableId: string;
|
|
77
|
-
rowIds: string[];
|
|
78
|
-
batchSize?: number;
|
|
79
|
-
}
|
|
80
|
-
export interface CreateIndexParams {
|
|
81
|
-
databaseId: string;
|
|
82
|
-
tableId: string;
|
|
83
|
-
key: string;
|
|
84
|
-
type: string;
|
|
85
|
-
attributes: string[];
|
|
86
|
-
orders?: string[];
|
|
87
|
-
}
|
|
88
|
-
export interface ListIndexesParams {
|
|
89
|
-
databaseId: string;
|
|
90
|
-
tableId: string;
|
|
91
|
-
queries?: any[];
|
|
92
|
-
}
|
|
93
|
-
export interface DeleteIndexParams {
|
|
94
|
-
databaseId: string;
|
|
95
|
-
tableId: string;
|
|
96
|
-
key: string;
|
|
97
|
-
}
|
|
98
|
-
export interface CreateAttributeParams {
|
|
99
|
-
databaseId: string;
|
|
100
|
-
tableId: string;
|
|
101
|
-
key: string;
|
|
102
|
-
type: string;
|
|
103
|
-
size?: number;
|
|
104
|
-
required?: boolean;
|
|
105
|
-
default?: any;
|
|
106
|
-
array?: boolean;
|
|
107
|
-
encrypt?: boolean;
|
|
108
|
-
[key: string]: any;
|
|
109
|
-
}
|
|
110
|
-
export interface UpdateAttributeParams {
|
|
111
|
-
databaseId: string;
|
|
112
|
-
tableId: string;
|
|
113
|
-
key: string;
|
|
114
|
-
type?: string;
|
|
115
|
-
required?: boolean;
|
|
116
|
-
default?: any;
|
|
117
|
-
size?: number;
|
|
118
|
-
min?: number;
|
|
119
|
-
max?: number;
|
|
120
|
-
array?: boolean;
|
|
121
|
-
encrypt?: boolean;
|
|
122
|
-
elements?: string[];
|
|
123
|
-
relatedCollection?: string;
|
|
124
|
-
relationType?: string;
|
|
125
|
-
twoWay?: boolean;
|
|
126
|
-
twoWayKey?: string;
|
|
127
|
-
onDelete?: string;
|
|
128
|
-
}
|
|
129
|
-
export interface DeleteAttributeParams {
|
|
130
|
-
databaseId: string;
|
|
131
|
-
tableId: string;
|
|
132
|
-
key: string;
|
|
133
|
-
}
|
|
134
|
-
export interface ApiResponse<T = any> {
|
|
135
|
-
data?: T;
|
|
136
|
-
total?: number;
|
|
137
|
-
documents?: T[];
|
|
138
|
-
rows?: T[];
|
|
139
|
-
collections?: T[];
|
|
140
|
-
tables?: T[];
|
|
141
|
-
errors?: any[];
|
|
142
|
-
}
|
|
143
|
-
export interface AdapterMetadata {
|
|
144
|
-
apiMode: ApiMode;
|
|
145
|
-
terminology: {
|
|
146
|
-
container: 'collection' | 'table';
|
|
147
|
-
item: 'document' | 'row';
|
|
148
|
-
service: 'Databases' | 'TablesDB';
|
|
149
|
-
};
|
|
150
|
-
capabilities: {
|
|
151
|
-
bulkOperations: boolean;
|
|
152
|
-
advancedQueries: boolean;
|
|
153
|
-
realtime: boolean;
|
|
154
|
-
transactions?: boolean;
|
|
155
|
-
};
|
|
156
|
-
}
|
|
157
|
-
/**
|
|
158
|
-
* Main DatabaseAdapter interface - all implementations must support these methods
|
|
159
|
-
*/
|
|
160
|
-
export interface DatabaseAdapter {
|
|
161
|
-
listRows(params: ListRowsParams): Promise<ApiResponse>;
|
|
162
|
-
createRow(params: CreateRowParams): Promise<ApiResponse>;
|
|
163
|
-
updateRow(params: UpdateRowParams): Promise<ApiResponse>;
|
|
164
|
-
deleteRow(params: DeleteRowParams): Promise<ApiResponse>;
|
|
165
|
-
getRow(params: {
|
|
166
|
-
databaseId: string;
|
|
167
|
-
tableId: string;
|
|
168
|
-
id: string;
|
|
169
|
-
}): Promise<ApiResponse>;
|
|
170
|
-
listTables(params: ListTablesParams): Promise<ApiResponse>;
|
|
171
|
-
createTable(params: CreateTableParams): Promise<ApiResponse>;
|
|
172
|
-
updateTable(params: UpdateTableParams): Promise<ApiResponse>;
|
|
173
|
-
deleteTable(params: DeleteTableParams): Promise<ApiResponse>;
|
|
174
|
-
getTable(params: GetTableParams): Promise<ApiResponse>;
|
|
175
|
-
listIndexes(params: ListIndexesParams): Promise<ApiResponse>;
|
|
176
|
-
createIndex(params: CreateIndexParams): Promise<ApiResponse>;
|
|
177
|
-
deleteIndex(params: DeleteIndexParams): Promise<ApiResponse>;
|
|
178
|
-
createAttribute(params: CreateAttributeParams): Promise<ApiResponse>;
|
|
179
|
-
updateAttribute(params: UpdateAttributeParams): Promise<ApiResponse>;
|
|
180
|
-
deleteAttribute(params: DeleteAttributeParams): Promise<ApiResponse>;
|
|
181
|
-
bulkCreateRows?(params: BulkCreateRowsParams): Promise<ApiResponse>;
|
|
182
|
-
bulkUpsertRows?(params: BulkUpsertRowsParams): Promise<ApiResponse>;
|
|
183
|
-
bulkDeleteRows?(params: BulkDeleteRowsParams): Promise<ApiResponse>;
|
|
184
|
-
getMetadata(): AdapterMetadata;
|
|
185
|
-
supportsBulkOperations(): boolean;
|
|
186
|
-
getApiMode(): ApiMode;
|
|
187
|
-
getTerminology(): AdapterMetadata['terminology'];
|
|
188
|
-
getRawClient(): any;
|
|
189
|
-
}
|
|
190
|
-
/**
|
|
191
|
-
* Base adapter class with common functionality
|
|
192
|
-
*/
|
|
193
|
-
export declare abstract class BaseAdapter implements DatabaseAdapter {
|
|
194
|
-
protected client: Client;
|
|
195
|
-
protected apiMode: ApiMode;
|
|
196
|
-
constructor(client: Client, apiMode: ApiMode);
|
|
197
|
-
abstract listRows(params: ListRowsParams): Promise<ApiResponse>;
|
|
198
|
-
abstract createRow(params: CreateRowParams): Promise<ApiResponse>;
|
|
199
|
-
abstract updateRow(params: UpdateRowParams): Promise<ApiResponse>;
|
|
200
|
-
abstract deleteRow(params: DeleteRowParams): Promise<ApiResponse>;
|
|
201
|
-
abstract getRow(params: {
|
|
202
|
-
databaseId: string;
|
|
203
|
-
tableId: string;
|
|
204
|
-
id: string;
|
|
205
|
-
}): Promise<ApiResponse>;
|
|
206
|
-
abstract listTables(params: ListTablesParams): Promise<ApiResponse>;
|
|
207
|
-
abstract createTable(params: CreateTableParams): Promise<ApiResponse>;
|
|
208
|
-
abstract updateTable(params: UpdateTableParams): Promise<ApiResponse>;
|
|
209
|
-
abstract deleteTable(params: DeleteTableParams): Promise<ApiResponse>;
|
|
210
|
-
abstract getTable(params: GetTableParams): Promise<ApiResponse>;
|
|
211
|
-
abstract listIndexes(params: ListIndexesParams): Promise<ApiResponse>;
|
|
212
|
-
abstract createIndex(params: CreateIndexParams): Promise<ApiResponse>;
|
|
213
|
-
abstract deleteIndex(params: DeleteIndexParams): Promise<ApiResponse>;
|
|
214
|
-
abstract createAttribute(params: CreateAttributeParams): Promise<ApiResponse>;
|
|
215
|
-
abstract updateAttribute(params: UpdateAttributeParams): Promise<ApiResponse>;
|
|
216
|
-
abstract deleteAttribute(params: DeleteAttributeParams): Promise<ApiResponse>;
|
|
217
|
-
abstract getMetadata(): AdapterMetadata;
|
|
218
|
-
getApiMode(): ApiMode;
|
|
219
|
-
getRawClient(): any;
|
|
220
|
-
supportsBulkOperations(): boolean;
|
|
221
|
-
getTerminology(): AdapterMetadata['terminology'];
|
|
222
|
-
}
|
|
223
|
-
/**
|
|
224
|
-
* Error types for adapter operations
|
|
225
|
-
*/
|
|
226
|
-
export declare class AdapterError extends Error {
|
|
227
|
-
readonly code: string;
|
|
228
|
-
readonly originalError?: Error | undefined;
|
|
229
|
-
constructor(message: string, code: string, originalError?: Error | undefined);
|
|
230
|
-
}
|
|
231
|
-
export declare class UnsupportedOperationError extends AdapterError {
|
|
232
|
-
constructor(operation: string, apiMode: ApiMode);
|
|
233
|
-
}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* DatabaseAdapter Interface - Unified API for Appwrite Database Operations
|
|
3
|
-
*
|
|
4
|
-
* This interface provides a unified way to interact with both legacy Appwrite
|
|
5
|
-
* (collections/documents) and new TablesDB (tables/rows) APIs. All internal
|
|
6
|
-
* code uses TablesDB-style method signatures for consistency.
|
|
7
|
-
*/
|
|
8
|
-
/**
|
|
9
|
-
* Base adapter class with common functionality
|
|
10
|
-
*/
|
|
11
|
-
export class BaseAdapter {
|
|
12
|
-
client;
|
|
13
|
-
apiMode;
|
|
14
|
-
constructor(client, apiMode) {
|
|
15
|
-
this.client = client;
|
|
16
|
-
this.apiMode = apiMode;
|
|
17
|
-
}
|
|
18
|
-
// Common implementations
|
|
19
|
-
getApiMode() {
|
|
20
|
-
return this.apiMode;
|
|
21
|
-
}
|
|
22
|
-
getRawClient() {
|
|
23
|
-
return this.client;
|
|
24
|
-
}
|
|
25
|
-
supportsBulkOperations() {
|
|
26
|
-
return this.getMetadata().capabilities.bulkOperations;
|
|
27
|
-
}
|
|
28
|
-
getTerminology() {
|
|
29
|
-
return this.getMetadata().terminology;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* Error types for adapter operations
|
|
34
|
-
*/
|
|
35
|
-
export class AdapterError extends Error {
|
|
36
|
-
code;
|
|
37
|
-
originalError;
|
|
38
|
-
constructor(message, code, originalError) {
|
|
39
|
-
super(message);
|
|
40
|
-
this.code = code;
|
|
41
|
-
this.originalError = originalError;
|
|
42
|
-
this.name = 'AdapterError';
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
export class UnsupportedOperationError extends AdapterError {
|
|
46
|
-
constructor(operation, apiMode) {
|
|
47
|
-
super(`Operation '${operation}' is not supported in ${apiMode} mode`, 'UNSUPPORTED_OPERATION');
|
|
48
|
-
this.name = 'UnsupportedOperationError';
|
|
49
|
-
}
|
|
50
|
-
}
|