Skip to content

Commit 74caf0b

Browse files
committed
update
1 parent bed132d commit 74caf0b

File tree

4 files changed

+40
-10
lines changed

4 files changed

+40
-10
lines changed

src/appmixer/wiz/core/FindCloudResources/FindCloudResources.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ module.exports = {
120120
let records = [];
121121
let nextPageToken = null;
122122
let totalRecordsCount = 0;
123-
const PAGE_SIZE = 5;
123+
const PAGE_SIZE = 500;
124124

125125
do {
126126
const { data } = await lib.makeApiCall({

src/appmixer/wiz/core/FindCloudResources/component.json

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"limit": {
3535
"type": "number",
3636
"label": "Limit",
37+
"defaultValue": 100,
3738
"index": 1
3839
},
3940
"outputType": {

src/appmixer/wiz/core/UploadSecurityScan/UploadSecurityScan.js

+28-8
Original file line numberDiff line numberDiff line change
@@ -102,33 +102,53 @@ async function streamToString(stream) {
102102
return Buffer.concat(chunks).toString('utf-8');
103103
}
104104

105-
const uploadFile = async function(context, { url, fileId }) {
106-
107-
const stream = await context.getFileReadStream(fileId);
105+
const uploadFile = async function(context, { url, fileContent }) {
108106

109107
const upload = await context.httpRequest({
110108
method: 'PUT',
111109
url,
112-
data: await streamToString(stream), // stream upload is not implemented on the wiz side
110+
data: fileContent, // stream upload is not implemented on the wiz side
113111
headers: {
114112
'Content-Type': 'application/json'
115113
}
116114
});
117115
context.log({ stage: 'upload finished', uploadData: upload.statusCode });
118116
};
119117

118+
const getFile = async function(context) {
119+
120+
const { filename, fileId, fileContent } = context.messages.in.content;
121+
122+
let json;
123+
let name;
124+
if (fileId) {
125+
const fileInfo = await context.getFileInfo(fileId);
126+
const stream = await context.getFileReadStream(fileId);
127+
json = await streamToString(stream);
128+
name = filename || fileInfo.filename;
129+
} else {
130+
try {
131+
json = JSON.parse(fileContent);
132+
name = filename || 'incident-report.json';
133+
} catch (e) {
134+
throw new context.CancelError('Invalid Input: FileContent', e);
135+
}
136+
}
137+
138+
return { content: json, name };
139+
};
140+
120141
module.exports = {
121142

122143
// docs: https://win.wiz.io/reference/pull-cloud-resources
123144
async receive(context) {
124145

125-
const { filename, fileId } = context.messages.in.content;
126-
const fileInfo = await context.getFileInfo(fileId);
146+
const { name, fileContent } = await getFile(context);
127147

128-
const { url, systemActivityId } = await requestUpload(context, { filename: filename || fileInfo.filename });
148+
const { url, systemActivityId } = await requestUpload(context, { filename: name });
129149
context.log({ stage: 'requestUpload response ', url, systemActivityId });
130150

131-
await uploadFile(context, { url, fileId });
151+
await uploadFile(context, { url, fileContent });
132152

133153
const status = await getStatus(context, systemActivityId);
134154
return context.sendJson(status, 'out');

src/appmixer/wiz/core/UploadSecurityScan/component.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@
2020
"filename": { "type": "string" },
2121
"fileId": { "type": "string" }
2222
},
23-
"required": [ "fileId"]
23+
"anyOf": [
24+
{ "required": ["fileId"] },
25+
{ "required": ["fileContent"] }
26+
]
2427
},
2528
"inspector": {
2629
"inputs": {
@@ -34,6 +37,12 @@
3437
"index": 1,
3538
"label": "File ID",
3639
"tooltip": "Select an existing file to upload. Or provide File ID of the file you want to upload."
40+
},
41+
"fileContent": {
42+
"type": "textarea",
43+
"index": 1,
44+
"label": "File Content",
45+
"tooltip": "Specify the file content in JSON format <b>(Ignored if 'File ID' is set)</b>."
3746
}
3847
}
3948
}

0 commit comments

Comments
 (0)