|
1 |
| -module.exports = { |
2 |
| - convert: function (request, options) { |
3 |
| - // Use request object and options object to generate code snippet. |
4 |
| - // return (String) snippet |
5 |
| - }, |
| 1 | +var _ = require('./lodash'), |
| 2 | + parseBody = require('./util/parseBody'), |
| 3 | + sanitize = require('./util/sanitize').sanitize, |
| 4 | + sanitizeOptions = require('./util/sanitize').sanitizeOptions, |
| 5 | + self; |
| 6 | + |
| 7 | +/** |
| 8 | + * Used to get the headers and put them in the desired form of the language |
| 9 | + * |
| 10 | + * @param {Object} request - postman SDK-request object |
| 11 | + * @param {String} indentation - used for indenting snippet's structure |
| 12 | + * @returns {String} - request headers in the desired format |
| 13 | + */ |
| 14 | +function getHeaders (request, indentation) { |
| 15 | + var headerArray = request.toJSON().header, |
| 16 | + headerMap; |
| 17 | + |
| 18 | + if (!_.isEmpty(headerArray)) { |
| 19 | + headerArray = _.reject(headerArray, 'disabled'); |
| 20 | + headerMap = _.map(headerArray, function (header) { |
| 21 | + return `${indentation}'${sanitize(header.key, true)}' => ` + |
| 22 | + `'${sanitize(header.value)}'`; |
| 23 | + }); |
| 24 | + return `$request->setHeaders(array(\n${headerMap.join(',\n')}\n));\n`; |
| 25 | + } |
| 26 | + return ''; |
| 27 | +} |
| 28 | +self = module.exports = { |
| 29 | + /** |
| 30 | + * @returns {Array} plugin specific options |
| 31 | + */ |
6 | 32 | getOptions: function () {
|
7 |
| - // Return an array of options supported by this codegen. |
| 33 | + return [ |
| 34 | + { |
| 35 | + name: 'Set indentation count', |
| 36 | + id: 'indentCount', |
| 37 | + type: 'positiveInteger', |
| 38 | + default: 2, |
| 39 | + description: 'Set the number of indentation characters to add per code level' |
| 40 | + }, |
| 41 | + { |
| 42 | + name: 'Set indentation type', |
| 43 | + id: 'indentType', |
| 44 | + type: 'enum', |
| 45 | + default: 'Space', |
| 46 | + availableOptions: ['Tab', 'Space'], |
| 47 | + description: 'Select the character used to indent lines of code' |
| 48 | + }, |
| 49 | + { |
| 50 | + name: 'Set request timeout', |
| 51 | + id: 'requestTimeout', |
| 52 | + type: 'positiveInteger', |
| 53 | + default: 0, |
| 54 | + description: 'Set number of milliseconds the request should wait for a response' + |
| 55 | + ' before timing out (use 0 for infinity)' |
| 56 | + }, |
| 57 | + { |
| 58 | + name: 'Trim request body fields', |
| 59 | + id: 'trimRequestBody', |
| 60 | + type: 'boolean', |
| 61 | + default: false, |
| 62 | + description: 'Remove white space and additional lines that may affect the server\'s response' |
| 63 | + }, |
| 64 | + { |
| 65 | + name: 'Follow redirects', |
| 66 | + id: 'followRedirect', |
| 67 | + type: 'boolean', |
| 68 | + default: true, |
| 69 | + description: 'Automatically follow HTTP redirects' |
| 70 | + } |
| 71 | + ]; |
| 72 | + }, |
| 73 | + convert: function (request, options, callback) { |
| 74 | + if (_.isFunction(options)) { |
| 75 | + callback = options; |
| 76 | + options = {}; |
| 77 | + } |
| 78 | + if (!_.isFunction(callback)) { |
| 79 | + throw new Error('PHP-HttpRequest-Converter: callback is not valid function'); |
| 80 | + } |
| 81 | + options = sanitizeOptions(options, self.getOptions()); |
| 82 | + |
| 83 | + var snippet, indentString; |
| 84 | + indentString = options.indentType === 'Tab' ? '\t' : ' '; |
| 85 | + indentString = indentString.repeat(options.indentCount); |
| 86 | + |
| 87 | + snippet = '<?php\n'; |
| 88 | + snippet += '$request = new HttpRequest();\n'; |
| 89 | + snippet += `$request->setUrl('${request.url.toString()}');\n`; |
| 90 | + snippet += `$request->setMethod(HTTP_METH_${request.method});\n`; |
| 91 | + if (options.requestTimeout !== 0 || !options.followRedirect) { |
| 92 | + snippet += '$request->setOptions(array('; |
| 93 | + snippet += options.requestTimeout === 0 ? '' : `'timeout' => ${options.requestTimeout}`; |
| 94 | + snippet += options.followRedirect ? '' : ', \'redirect\' => false'; |
| 95 | + snippet += '));\n'; |
| 96 | + } |
| 97 | + if (request.body && !request.headers.has('Content-Type')) { |
| 98 | + if (request.body.mode === 'file') { |
| 99 | + request.addHeader({ |
| 100 | + key: 'Content-Type', |
| 101 | + value: 'text/plain' |
| 102 | + }); |
| 103 | + } |
| 104 | + else if (request.body.mode === 'graphql') { |
| 105 | + request.addHeader({ |
| 106 | + key: 'Content-Type', |
| 107 | + value: 'application/json' |
| 108 | + }); |
| 109 | + } |
| 110 | + } |
| 111 | + // add the headers to snippet |
| 112 | + snippet += getHeaders(request, indentString); |
| 113 | + |
| 114 | + // add the body to snippet |
| 115 | + if (!_.isEmpty(request.body)) { |
| 116 | + snippet += `${parseBody(request.toJSON(), indentString, options.trimRequestBody)}`; |
| 117 | + } |
| 118 | + snippet += 'try {\n'; |
| 119 | + snippet += `${indentString}echo $request->send()->getBody();\n`; |
| 120 | + snippet += '} catch(HttpException $ex) {\n'; |
| 121 | + snippet += `${indentString}echo $ex;\n}`; |
| 122 | + return callback(null, snippet); |
8 | 123 | }
|
9 | 124 | };
|
0 commit comments