forked from dipseth/dataproc-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplating.ts
More file actions
427 lines (328 loc) · 8.66 KB
/
templating.ts
File metadata and controls
427 lines (328 loc) · 8.66 KB
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/**
* Core types for MCP Resource Templating Infrastructure
* Implements RFC 6570 URI templating with parameter inheritance chains
*/
/**
* Template definition interface for URI templates
*/
export interface TemplateDefinition {
/** Unique identifier for the template */
id: string;
/** RFC 6570 URI template pattern */
pattern: string;
/** Human-readable description */
description: string;
/** Template category for organization */
category: 'gcp' | 'cluster' | 'job' | 'knowledge' | 'profile';
/** Parent template ID for inheritance */
parentTemplate?: string;
/** Template-specific parameters */
parameters: TemplateParameter[];
/** Query parameters with RFC 6570 expansion */
queryParameters?: QueryParameter[];
/** Template validation rules */
validation?: TemplateValidation;
/** Additional metadata */
metadata?: Record<string, unknown>;
}
/**
* Template parameter definition
*/
export interface TemplateParameter {
/** Parameter name */
name: string;
/** Parameter type */
type: 'string' | 'number' | 'boolean';
/** Whether parameter is required */
required: boolean;
/** Default value if not provided */
defaultValue?: unknown;
/** Parameter source in inheritance chain */
source: 'gcp' | 'profile' | 'template' | 'tool';
/** Parameter validation rules */
validation?: ParameterValidation;
/** Human-readable description */
description?: string;
}
/**
* Query parameter definition for RFC 6570 expansion
*/
export interface QueryParameter {
/** Parameter name */
name: string;
/** Parameter type */
type: 'string' | 'number' | 'boolean' | 'array';
/** RFC 6570 expansion type */
expansion: 'simple' | 'form' | 'reserved';
/** Whether parameter is required */
required: boolean;
/** Default value if not provided */
defaultValue?: unknown;
/** Human-readable description */
description?: string;
}
/**
* Template validation rules
*/
export interface TemplateValidation {
/** Required parameters that must be present */
requiredParameters?: string[];
/** Parameter constraints */
parameterConstraints?: Record<string, ParameterValidation>;
/** Security validation rules */
securityRules?: SecurityValidation[];
/** Custom validation function */
customValidator?: (context: TemplateResolutionContext) => ValidationResult;
}
/**
* Parameter validation rules
*/
export interface ParameterValidation {
/** Minimum value (for numbers) or length (for strings) */
min?: number;
/** Maximum value (for numbers) or length (for strings) */
max?: number;
/** Regular expression pattern (for strings) */
pattern?: string;
/** Allowed values (enum) */
enum?: unknown[];
/** Custom validation function */
customValidator?: (value: unknown) => boolean;
}
/**
* Security validation rules
*/
export interface SecurityValidation {
/** Rule type */
type: 'pattern' | 'blacklist' | 'whitelist' | 'custom';
/** Rule pattern or values */
rule: string | string[] | ((value: string) => boolean);
/** Error message if validation fails */
message: string;
}
/**
* Template resolution context
*/
export interface TemplateResolutionContext {
/** Template being resolved */
templateId: string;
/** Tool requesting the resolution */
toolName: string;
/** Current environment */
environment?: string;
/** Profile ID if applicable */
profileId?: string;
/** User-provided parameter overrides */
userOverrides: Record<string, unknown>;
/** Security context for validation */
securityContext: SecurityContext;
/** Additional metadata */
metadata?: Record<string, unknown>;
}
/**
* Security context for template resolution
*/
export interface SecurityContext {
/** User or service account identifier */
userId?: string;
/** Request source information */
source: 'mcp' | 'api' | 'internal';
/** Rate limiting information */
rateLimiting?: {
requestCount: number;
windowStart: Date;
};
/** Additional security metadata */
metadata?: Record<string, unknown>;
}
/**
* Parameter inheritance chain definition
*/
export interface ParameterInheritanceChain {
/** GCP default parameters (lowest priority) */
gcpDefaults: Record<string, unknown>;
/** Profile parameters */
profileParameters: Record<string, unknown>;
/** Template parameters */
templateParameters: Record<string, unknown>;
/** Tool override parameters (highest priority) */
toolOverrides: Record<string, unknown>;
/** Final resolved parameters */
resolved: Record<string, unknown>;
/** Parameter source mapping */
sources: Record<string, ParameterSource>;
/** Resolution metadata */
metadata: ResolutionMetadata;
}
/**
* Parameter source information
*/
export interface ParameterSource {
/** Source type */
type: 'gcp' | 'profile' | 'template' | 'tool';
/** Source identifier */
sourceId: string;
/** Original value before any transformations */
originalValue: unknown;
/** Whether value was transformed */
transformed: boolean;
/** Transformation applied if any */
transformation?: string;
}
/**
* Resolution metadata
*/
export interface ResolutionMetadata {
/** Resolution timestamp */
timestamp: Date;
/** Template used for resolution */
templateId: string;
/** Tool that requested resolution */
toolName: string;
/** Environment used */
environment?: string;
/** Profile used */
profileId?: string;
/** Resolution performance metrics */
performance: {
resolutionTimeMs: number;
cacheHit: boolean;
parameterCount: number;
};
/** Validation results */
validation: ValidationResult;
}
/**
* Validation result
*/
export interface ValidationResult {
/** Whether validation passed */
valid: boolean;
/** Validation errors if any */
errors: ValidationError[];
/** Validation warnings if any */
warnings: ValidationWarning[];
/** Validation metadata */
metadata?: Record<string, unknown>;
}
/**
* Validation error
*/
export interface ValidationError {
/** Error code */
code: string;
/** Error message */
message: string;
/** Parameter that caused the error */
parameter?: string;
/** Error severity */
severity: 'error' | 'critical';
/** Additional error context */
context?: Record<string, unknown>;
}
/**
* Validation warning
*/
export interface ValidationWarning {
/** Warning code */
code: string;
/** Warning message */
message: string;
/** Parameter that caused the warning */
parameter?: string;
/** Additional warning context */
context?: Record<string, unknown>;
}
/**
* Parsed template structure
*/
export interface ParsedTemplate {
/** Original template pattern */
pattern: string;
/** Extracted variables */
variables: TemplateVariable[];
/** Query parameters */
queryParameters: TemplateVariable[];
/** Template compilation result */
compiled: unknown; // Will be the compiled template from uri-templates library
/** Parsing metadata */
metadata: {
parseTimeMs: number;
variableCount: number;
queryParameterCount: number;
rfc6570Level: 1 | 2 | 3 | 4;
};
}
/**
* Template variable definition
*/
export interface TemplateVariable {
/** Variable name */
name: string;
/** Variable type based on RFC 6570 expansion */
type: 'simple' | 'reserved' | 'fragment' | 'label' | 'path' | 'query' | 'form';
/** Whether variable is required */
required: boolean;
/** Variable modifiers (explode, prefix) */
modifiers?: {
explode?: boolean;
prefix?: number;
};
/** Variable position in template */
position: number;
}
/**
* Template expansion result
*/
export interface TemplateExpansionResult {
/** Expanded URI */
uri: string;
/** Parameters used in expansion */
parameters: Record<string, unknown>;
/** Unused parameters */
unusedParameters: Record<string, unknown>;
/** Expansion metadata */
metadata: {
expansionTimeMs: number;
templateId: string;
cacheHit: boolean;
};
}
/**
* Template cache entry
*/
export interface TemplateCacheEntry {
/** Cached parsed template */
parsedTemplate: ParsedTemplate;
/** Cache timestamp */
timestamp: Date;
/** Cache hit count */
hitCount: number;
/** Last access time */
lastAccess: Date;
/** Cache entry TTL */
ttl: number;
}
/**
* Template manager configuration
*/
export interface TemplateManagerConfig {
/** Cache configuration */
cache: {
maxEntries: number;
ttlMs: number;
enableMetrics: boolean;
};
/** Validation configuration */
validation: {
enableSecurity: boolean;
strictMode: boolean;
customValidators: boolean;
};
/** Performance configuration */
performance: {
enableProfiling: boolean;
maxResolutionTimeMs: number;
enableCaching: boolean;
};
}