Compose-ready workspace: packages/zappier (rate card, portal, Stripe), packages/verae-zapier-middleware (timestamp + NATS), packages/verae-zapier (CLI app), vendor/zapier-platform, and research/zapier vendor corpus. Gate 0 structure checks pass. Product code and research are not yet wired.
80 lines
2.3 KiB
JavaScript
80 lines
2.3 KiB
JavaScript
const { randomBytes } = require('crypto');
|
|
const fs = require('fs');
|
|
const os = require('os');
|
|
const path = require('path');
|
|
|
|
const fetch = require('node-fetch');
|
|
const FormData = require('form-data');
|
|
|
|
// Download the HTTP URL to a local temporary file, and make a readable stream
|
|
// from it. This should work compatibly for all core versions. But if you're
|
|
// using core v10+, we recommend to use the implementation of uploadFile_v10.js.
|
|
const makeDownloadStream = async (url) => {
|
|
// Create a temp file to store the downloaded file
|
|
const filename = randomBytes(16).toString('hex');
|
|
const tmpFilePath = path.join(os.tmpdir(), filename);
|
|
const dest = fs.createWriteStream(tmpFilePath);
|
|
|
|
const response = await fetch(url);
|
|
|
|
// Download the file to the temp file. When finished, open a readable stream
|
|
// from that temp file.
|
|
return new Promise((resolve, reject) => {
|
|
response.body
|
|
.pipe(dest)
|
|
.on('close', () => {
|
|
const stream = fs.createReadStream(tmpFilePath).on('close', () => {
|
|
// Delete the file once the stream is read
|
|
fs.unlinkSync(tmpFilePath);
|
|
});
|
|
resolve(stream);
|
|
})
|
|
.on('error', reject);
|
|
});
|
|
};
|
|
|
|
const perform = async (z, bundle) => {
|
|
const form = new FormData();
|
|
|
|
form.append('filename', bundle.inputData.filename);
|
|
|
|
// bundle.inputData.file will in fact be an URL where the file data can be
|
|
// downloaded from which we do via a stream
|
|
const stream = await makeDownloadStream(bundle.inputData.file, z);
|
|
form.append('file', stream);
|
|
|
|
const response = await z.request({
|
|
url: 'https://auth-json-server.zapier-staging.com/upload',
|
|
method: 'POST',
|
|
body: form,
|
|
headers: {
|
|
// DO NOT do auth like this! We do this here because this is a file
|
|
// uploading example so the auth is not the point.
|
|
'x-api-key': 'secret',
|
|
},
|
|
});
|
|
|
|
return response.json;
|
|
};
|
|
|
|
module.exports = {
|
|
key: 'uploadFile_v9',
|
|
noun: 'File',
|
|
display: {
|
|
label: 'Upload File v9',
|
|
description:
|
|
'Uploads a file. Compatible with all versions of zapier-platform-core.',
|
|
},
|
|
operation: {
|
|
inputFields: [
|
|
{ key: 'filename', required: true, type: 'string', label: 'Filename' },
|
|
{ key: 'file', required: true, type: 'file', label: 'File' },
|
|
],
|
|
perform,
|
|
sample: {
|
|
id: 1,
|
|
filename: 'example.pdf',
|
|
file: 'SAMPLE FILE',
|
|
},
|
|
},
|
|
};
|