insomnia/packages/insomnia-app/app/common/send-request.js

38 lines
1.1 KiB
JavaScript
Raw Normal View History

import * as db from './database';
import { types as modelTypes } from '../models';
import { send } from '../network/network';
import { getBodyBuffer } from '../models/response';
export async function getSendRequestCallback(environmentId, memDB) {
// Initialize the DB in-memory and fill it with data
await db.init(modelTypes(), { inMemoryOnly: true }, true);
const docs = [];
for (const type of Object.keys(memDB)) {
for (const doc of memDB[type]) {
docs.push(doc);
}
}
await db.batchModifyDocs({ upsert: docs, remove: [] });
// Return callback helper to send requests
return async function sendRequest(requestId) {
const res = await send(requestId, environmentId);
const headersObj = {};
for (const h of res.headers || []) {
const name = h.name || '';
headersObj[name.toLowerCase()] = h.value || '';
}
const bodyBuffer = await getBodyBuffer(res);
return {
status: res.statusCode,
statusMessage: res.statusMessage,
data: bodyBuffer ? bodyBuffer.toString('utf8') : undefined,
headers: headersObj,
};
};
}