@@ -147,21 +147,32 @@ const Busboy = require('busboy');
147
147
exports . uploadFile = ( req , res ) => {
148
148
if ( req . method === 'POST' ) {
149
149
const busboy = new Busboy ( { headers : req . headers } ) ;
150
+ const tmpdir = os . tmpdir ( ) ;
151
+
152
+ // This object will accumulate all the fields, keyed by their name
153
+ const fields = { } ;
150
154
151
155
// This object will accumulate all the uploaded files, keyed by their name.
152
156
const uploads = { } ;
153
- const tmpdir = os . tmpdir ( ) ;
154
157
155
- // This callback will be invoked for each file uploaded.
158
+ // This code will process each non-file field in the form.
159
+ busboy . on ( 'field' , ( fieldname , val ) => {
160
+ // TODO(developer): Process submitted field values here
161
+ console . log ( `Processed field ${ fieldname } : ${ val } .` ) ;
162
+ fields [ fieldname ] = val ;
163
+ } ) ;
164
+
165
+ // This code will process each file uploaded.
156
166
busboy . on ( 'file' , ( fieldname , file , filename ) => {
157
167
// Note: os.tmpdir() points to an in-memory file system on GCF
158
168
// Thus, any files in it must fit in the instance's memory.
169
+ console . log ( `Processed file ${ filename } ` ) ;
159
170
const filepath = path . join ( tmpdir , filename ) ;
160
171
uploads [ fieldname ] = filepath ;
161
172
file . pipe ( fs . createWriteStream ( filepath ) ) ;
162
173
} ) ;
163
174
164
- // This callback will be invoked after all uploaded files are saved.
175
+ // This event will be triggered after all uploaded files are saved.
165
176
busboy . on ( 'finish' , ( ) => {
166
177
// TODO(developer): Process uploaded files here
167
178
for ( const name in uploads ) {
0 commit comments