mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
67 lines
1.9 KiB
JavaScript
67 lines
1.9 KiB
JavaScript
|
import * as db from '../../database/index';
|
||
|
import {getContentTypeFromHeaders} from '../contentTypes';
|
||
|
|
||
|
const FORMAT_MAP = {
|
||
|
json: 'application/json',
|
||
|
xml: 'application/xml',
|
||
|
form: 'application/x-www-form-urlencoded',
|
||
|
text: 'text/plain'
|
||
|
};
|
||
|
|
||
|
export function importRequestGroupLegacy (importedRequestGroup, parentId, index = 1) {
|
||
|
return db.requestGroupCreate({
|
||
|
parentId,
|
||
|
name: importedRequestGroup.name,
|
||
|
environment: (importedRequestGroup.environments || {}).base || {},
|
||
|
metaCollapsed: true,
|
||
|
metaSortKey: index * 1000
|
||
|
}).then(requestGroup => {
|
||
|
// Sometimes (maybe all the time, I can't remember) requests will be nested
|
||
|
if (importedRequestGroup.hasOwnProperty('requests')) {
|
||
|
// Let's process them oldest to newest
|
||
|
importedRequestGroup.requests.map(
|
||
|
(r, i) => importRequestLegacy(r, requestGroup._id, index * 1000 + i)
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function importRequestLegacy (importedRequest, parentId, index = 1) {
|
||
|
let auth = {};
|
||
|
if (importedRequest.authentication.username) {
|
||
|
auth = {
|
||
|
username: importedRequest.authentication.username,
|
||
|
password: importedRequest.authentication.password
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Add the content type header
|
||
|
const headers = importedRequest.headers || [];
|
||
|
const contentType = getContentTypeFromHeaders(headers);
|
||
|
if (!contentType) {
|
||
|
const derivedContentType = FORMAT_MAP[importedRequest.__insomnia.format];
|
||
|
|
||
|
if (derivedContentType) {
|
||
|
headers.push({
|
||
|
name: 'Content-Type',
|
||
|
value: FORMAT_MAP[importedRequest.__insomnia.format]
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
db.requestCreate({
|
||
|
parentId,
|
||
|
_id: importedRequest._id,
|
||
|
name: importedRequest.name,
|
||
|
url: importedRequest.url,
|
||
|
method: importedRequest.method,
|
||
|
body: importedRequest.body,
|
||
|
headers: headers,
|
||
|
parameters: importedRequest.params || [],
|
||
|
metaSortKey: index * 1000,
|
||
|
contentType: FORMAT_MAP[importedRequest.__insomnia.format] || 'text/plain',
|
||
|
authentication: auth
|
||
|
});
|
||
|
}
|
||
|
|