@@ -102,33 +102,53 @@ async function streamToString(stream) {
102
102
return Buffer . concat ( chunks ) . toString ( 'utf-8' ) ;
103
103
}
104
104
105
- const uploadFile = async function ( context , { url, fileId } ) {
106
-
107
- const stream = await context . getFileReadStream ( fileId ) ;
105
+ const uploadFile = async function ( context , { url, fileContent } ) {
108
106
109
107
const upload = await context . httpRequest ( {
110
108
method : 'PUT' ,
111
109
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
113
111
headers : {
114
112
'Content-Type' : 'application/json'
115
113
}
116
114
} ) ;
117
115
context . log ( { stage : 'upload finished' , uploadData : upload . statusCode } ) ;
118
116
} ;
119
117
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
+
120
141
module . exports = {
121
142
122
143
// docs: https://win.wiz.io/reference/pull-cloud-resources
123
144
async receive ( context ) {
124
145
125
- const { filename, fileId } = context . messages . in . content ;
126
- const fileInfo = await context . getFileInfo ( fileId ) ;
146
+ const { name, fileContent } = await getFile ( context ) ;
127
147
128
- const { url, systemActivityId } = await requestUpload ( context , { filename : filename || fileInfo . filename } ) ;
148
+ const { url, systemActivityId } = await requestUpload ( context , { filename : name } ) ;
129
149
context . log ( { stage : 'requestUpload response ' , url, systemActivityId } ) ;
130
150
131
- await uploadFile ( context , { url, fileId } ) ;
151
+ await uploadFile ( context , { url, fileContent } ) ;
132
152
133
153
const status = await getStatus ( context , systemActivityId ) ;
134
154
return context . sendJson ( status , 'out' ) ;
0 commit comments