httpsnippet-fsless
Version:
HTTP Request snippet generator for *most* languages without using node-fs
117 lines (92 loc) • 3.08 kB
JavaScript
/**
* @description
* HTTP code snippet generator for Node.js using Unirest.
*
* @author
* @AhmadNassri
*
* for any questions or issues regarding the generated code snippet, please open an issue mentioning the author.
*/
var util = require('util')
var CodeBuilder = require('../../helpers/code-builder')
module.exports = function (source, options) {
var opts = util._extend({
indent: ' '
}, options)
var includeFS = false
var code = new CodeBuilder(opts.indent)
code.push('var unirest = require("unirest");')
.blank()
.push('var req = unirest("%s", "%s");', source.method, source.url)
.blank()
if (source.cookies.length) {
code.push('var CookieJar = unirest.jar();')
source.cookies.forEach(function (cookie) {
code.push('CookieJar.add("%s=%s","%s");', encodeURIComponent(cookie.name), encodeURIComponent(cookie.value), source.url)
})
code.push('req.jar(CookieJar);')
.blank()
}
if (Object.keys(source.queryObj).length) {
code.push('req.query(%s);', JSON.stringify(source.queryObj, null, opts.indent))
.blank()
}
if (Object.keys(source.headersObj).length) {
code.push('req.headers(%s);', JSON.stringify(source.headersObj, null, opts.indent))
.blank()
}
switch (source.postData.mimeType) {
case 'application/x-www-form-urlencoded':
if (source.postData.paramsObj) {
code.push('req.form(%s);', JSON.stringify(source.postData.paramsObj, null, opts.indent))
}
break
case 'application/json':
if (source.postData.jsonObj) {
code.push('req.type("json");')
.push('req.send(%s);', JSON.stringify(source.postData.jsonObj, null, opts.indent))
}
break
case 'multipart/form-data':
var multipart = []
source.postData.params.forEach(function (param) {
var part = {}
if (param.fileName && !param.value) {
includeFS = true
part.body = 'fs.createReadStream("' + param.fileName + '")'
} else if (param.value) {
part.body = param.value
}
if (part.body) {
if (param.contentType) {
part['content-type'] = param.contentType
}
multipart.push(part)
}
})
code.push('req.multipart(%s);', JSON.stringify(multipart, null, opts.indent))
break
default:
if (source.postData.text) {
code.push(opts.indent + 'req.send(%s);', JSON.stringify(source.postData.text, null, opts.indent))
}
}
if (includeFS) {
code.unshift('var fs = require("fs");')
}
code.blank()
.push('req.end(function (res) {')
.push(1, 'if (res.error) throw new Error(res.error);')
.blank()
.push(1, 'console.log(res.body);')
.push('});')
.blank()
return code.join().replace(/"fs\.createReadStream\(\\\"(.+)\\\"\)\"/, 'fs.createReadStream("$1")')
}
module.exports.info = {
key: 'unirest',
title: 'Unirest',
link: 'http://unirest.io/nodejs.html',
description: 'Lightweight HTTP Request Client Library'
}