Skip to content

Commit 5007c6b

Browse files
author
Ace Nassri
authored
Clarify comments + add field handler to multipart sample (#609)
* Clarify comments + add field handler to multipart sample * Address comments
1 parent bce81f4 commit 5007c6b

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

functions/http/index.js

+14-3
Original file line numberDiff line numberDiff line change
@@ -147,21 +147,32 @@ const Busboy = require('busboy');
147147
exports.uploadFile = (req, res) => {
148148
if (req.method === 'POST') {
149149
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 = {};
150154

151155
// This object will accumulate all the uploaded files, keyed by their name.
152156
const uploads = {};
153-
const tmpdir = os.tmpdir();
154157

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.
156166
busboy.on('file', (fieldname, file, filename) => {
157167
// Note: os.tmpdir() points to an in-memory file system on GCF
158168
// Thus, any files in it must fit in the instance's memory.
169+
console.log(`Processed file ${filename}`);
159170
const filepath = path.join(tmpdir, filename);
160171
uploads[fieldname] = filepath;
161172
file.pipe(fs.createWriteStream(filepath));
162173
});
163174

164-
// This callback will be invoked after all uploaded files are saved.
175+
// This event will be triggered after all uploaded files are saved.
165176
busboy.on('finish', () => {
166177
// TODO(developer): Process uploaded files here
167178
for (const name in uploads) {

0 commit comments

Comments
 (0)