-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsharedFunctions.js
More file actions
279 lines (234 loc) · 6.7 KB
/
sharedFunctions.js
File metadata and controls
279 lines (234 loc) · 6.7 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
// ===================================================================
// Shared Functions for Tool SDK Scripts
// This file contains common utility functions used across
// multiple scripts
// ===================================================================
/**
* Creates a success result with the given data and metadata
* @param {Object} data - The main data to include in the result
* @param {Object} [metadata] - Optional metadata about the operation
* @returns {string} JSON string representing a successful result
*/
function success(data, metadata) {
return createSuccessResult(data, metadata);
}
/**
* Creates an error result with the given message
* @param {string} message - The error message to include in the result
* @returns {string} JSON string representing an error result
*/
function error(message) {
return createErrorResult(message);
}
function copyMetadata(metadata) {
var target = {};
var source = metadata || {};
var key;
for (key in source) {
if (source.hasOwnProperty(key)) {
target[key] = source[key];
}
}
return target;
}
function setToolResultPayload(text, metadata) {
MCPStudio.setToolResult(JSON.stringify({
text: text,
metadata: metadata || {}
}));
return null;
}
function setSuccessResult(data, metadata) {
var resultMetadata = copyMetadata(metadata);
resultMetadata.success = true;
return setToolResultPayload(JSON.stringify(data, null, 2), resultMetadata);
}
function setErrorResult(errorMessage, metadata) {
var resultMetadata = copyMetadata(metadata);
resultMetadata.error = errorMessage;
resultMetadata.success = false;
return setToolResultPayload(errorMessage, resultMetadata);
}
/**
* Ensures that a directory exists, creating it if necessary
* @param {string} path - The path to check or create (required)
*/
function ensureDirectory(path) {
if (!MCPStudio.fileExists(path)) {
MCPStudio.createDirectory(path);
}
}
/**
* Counts the number of words in a string
* @param {string} text - The text to analyze (required)
* @returns {number} Word count
*/
function countWords(text) {
return text.split(/\s+/).filter(function(w) { return w.length > 0; }).length;
}
/**
* Creates a success result with the given data and metadata
* @param {Object} data - The main data to include in the result (required)
* @param {Object} [metadata] - Optional metadata about the operation
* @returns {string} JSON string representing a successful result
*/
function createSuccessResult(data, metadata) {
var result = {
text: JSON.stringify(data, null, 2),
success: true,
metadata: metadata || {}
};
var json = JSON.stringify(result);
console.log("[Script] Result:\n" + json);
return json;
}
/**
* Creates an error result with the given message
* @param {string} message - The error message to include in the result (required)
* @returns {string} JSON string representing an error result
*/
function createErrorResult(errorMessage) {
var result = {
text: errorMessage,
success: false,
metadata: { error: errorMessage }
};
var json = JSON.stringify(result);
console.log("[Script] Result:\n" + json);
return json;
}
function normalizePath(path) {
var value = String(path || "").replace(/\\/g, "/").trim();
var isAbsolute = value.charAt(0) === "/";
var parts = value.split("/");
var normalized = [];
var i;
var part;
for (i = 0; i < parts.length; i += 1) {
part = parts[i];
if (!part || part === ".") {
continue;
}
if (part === "..") {
return null;
}
normalized.push(part);
}
if (normalized.length === 0) {
return isAbsolute ? "/" : "";
}
return (isAbsolute ? "/" : "") + normalized.join("/");
}
function validatePath(rawPath, parameterName, options) {
var settings = options || {};
var label = parameterName || "path";
var value;
var normalized;
if (typeof rawPath !== "string") {
return {
ok: false,
message: label + " must be a string"
};
}
value = rawPath.trim();
if (!value) {
return {
ok: false,
message: label + " is required"
};
}
if (/[\0\r\n]/.test(value)) {
return {
ok: false,
message: label + " contains invalid characters"
};
}
normalized = normalizePath(value);
if (normalized === null) {
return {
ok: false,
message: label + " must not contain parent directory traversal"
};
}
if (settings.absolute === true && normalized.charAt(0) !== "/") {
return {
ok: false,
message: label + " must be an absolute path"
};
}
if (settings.relative === true && normalized.charAt(0) === "/") {
return {
ok: false,
message: label + " must be a relative path"
};
}
return {
ok: true,
value: normalized
};
}
function validateFilePath(rawPath, parameterName, options) {
return validatePath(rawPath, parameterName || "filePath", options);
}
function validateDirectoryPath(rawPath, parameterName, options) {
return validatePath(rawPath, parameterName || "dirPath", options);
}
function joinPath(basePath, childName) {
if (!basePath) {
return String(childName || "");
}
if (!childName) {
return String(basePath);
}
if (basePath.charAt(basePath.length - 1) === "/") {
return basePath + childName;
}
return basePath + "/" + childName;
}
function quoteShellArgument(value) {
return "'" + String(value || "").replace(/'/g, "'\"'\"'") + "'";
}
/**
* Return process stdOut after shell() or process() call
* @returns {Array<string>} Array of stdout messages
*/
function getOutput() {
return getStandardOutput();
}
/**
* Return process stdOut after shell() or process() call
* @returns {Array<string>} Array of stdout messages
*/
function getStandardOutput() {
return stdOut || [];
}
/**
* Return process stdErr after shell() or process() call
* @returns {Array<string>} Array of stderr messages
*/
function getErrorOutput() {
return stdErr || [];
}
// .............................
// Available module entry points
module.exports = {
success,
error,
copyMetadata,
setToolResultPayload,
setSuccessResult,
setErrorResult,
ensureDirectory,
countWords,
createSuccessResult,
createErrorResult,
normalizePath,
validatePath,
validateFilePath,
validateDirectoryPath,
joinPath,
quoteShellArgument,
getOutput,
getStandardOutput,
getErrorOutput,
};