cli.js 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. #!/usr/bin/env node
  2. /*
  3. * EJS Embedded JavaScript templates
  4. * Copyright 2112 Matthew Eernisse (mde@fleegix.org)
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. */
  19. let program = require('jake').program;
  20. delete global.jake; // NO NOT WANT
  21. program.setTaskNames = function (n) { this.taskNames = n; };
  22. let ejs = require('../lib/ejs');
  23. let { hyphenToCamel } = require('../lib/utils');
  24. let fs = require('fs');
  25. let args = process.argv.slice(2);
  26. let usage = fs.readFileSync(`${__dirname}/../usage.txt`).toString();
  27. const CLI_OPTS = [
  28. { full: 'output-file',
  29. abbr: 'o',
  30. expectValue: true,
  31. },
  32. { full: 'data-file',
  33. abbr: 'f',
  34. expectValue: true,
  35. },
  36. { full: 'data-input',
  37. abbr: 'i',
  38. expectValue: true,
  39. },
  40. { full: 'delimiter',
  41. abbr: 'm',
  42. expectValue: true,
  43. passThrough: true,
  44. },
  45. { full: 'open-delimiter',
  46. abbr: 'p',
  47. expectValue: true,
  48. passThrough: true,
  49. },
  50. { full: 'close-delimiter',
  51. abbr: 'c',
  52. expectValue: true,
  53. passThrough: true,
  54. },
  55. { full: 'strict',
  56. abbr: 's',
  57. expectValue: false,
  58. allowValue: false,
  59. passThrough: true,
  60. },
  61. { full: 'no-with',
  62. abbr: 'n',
  63. expectValue: false,
  64. allowValue: false,
  65. },
  66. { full: 'locals-name',
  67. abbr: 'l',
  68. expectValue: true,
  69. passThrough: true,
  70. },
  71. { full: 'rm-whitespace',
  72. abbr: 'w',
  73. expectValue: false,
  74. allowValue: false,
  75. passThrough: true,
  76. },
  77. { full: 'debug',
  78. abbr: 'd',
  79. expectValue: false,
  80. allowValue: false,
  81. passThrough: true,
  82. },
  83. { full: 'help',
  84. abbr: 'h',
  85. passThrough: true,
  86. },
  87. { full: 'version',
  88. abbr: 'V',
  89. passThrough: true,
  90. },
  91. // Alias lowercase v
  92. { full: 'version',
  93. abbr: 'v',
  94. passThrough: true,
  95. },
  96. ];
  97. let preempts = {
  98. version: function () {
  99. program.die(ejs.VERSION);
  100. },
  101. help: function () {
  102. program.die(usage);
  103. }
  104. };
  105. let stdin = '';
  106. process.stdin.setEncoding('utf8');
  107. process.stdin.on('readable', () => {
  108. let chunk;
  109. while ((chunk = process.stdin.read()) !== null) {
  110. stdin += chunk;
  111. }
  112. });
  113. function run() {
  114. program.availableOpts = CLI_OPTS;
  115. program.parseArgs(args);
  116. let templatePath = program.taskNames[0];
  117. let pVals = program.envVars;
  118. let pOpts = {};
  119. for (let p in program.opts) {
  120. let name = hyphenToCamel(p);
  121. pOpts[name] = program.opts[p];
  122. }
  123. let opts = {};
  124. let vals = {};
  125. // Same-named 'passthrough' opts
  126. CLI_OPTS.forEach((opt) => {
  127. let optName = hyphenToCamel(opt.full);
  128. if (opt.passThrough && typeof pOpts[optName] != 'undefined') {
  129. opts[optName] = pOpts[optName];
  130. }
  131. });
  132. // Bail out for help/version
  133. for (let p in opts) {
  134. if (preempts[p]) {
  135. return preempts[p]();
  136. }
  137. }
  138. // Default to having views relative from the current working directory
  139. opts.views = ['.'];
  140. // Ensure there's a template to render
  141. if (!templatePath) {
  142. throw new Error('Please provide a template path. (Run ejs -h for help)');
  143. }
  144. if (opts.strict) {
  145. pOpts.noWith = true;
  146. }
  147. if (pOpts.noWith) {
  148. opts._with = false;
  149. }
  150. // Grab and parse any input data, in order of precedence:
  151. // 1. Stdin
  152. // 2. CLI arg via -i
  153. // 3. Data file via -f
  154. // Any individual vals passed at the end (e.g., foo=bar) will override
  155. // any vals previously set
  156. let input;
  157. let err = new Error('Please do not pass data multiple ways. Pick one of stdin, -f, or -i.');
  158. if (stdin) {
  159. input = stdin;
  160. }
  161. else if (pOpts.dataInput) {
  162. if (input) {
  163. throw err;
  164. }
  165. input = decodeURIComponent(pOpts.dataInput);
  166. }
  167. else if (pOpts.dataFile) {
  168. if (input) {
  169. throw err;
  170. }
  171. input = fs.readFileSync(pOpts.dataFile).toString();
  172. }
  173. if (input) {
  174. vals = JSON.parse(input);
  175. }
  176. // Override / set any individual values passed from the command line
  177. for (let p in pVals) {
  178. vals[p] = pVals[p];
  179. }
  180. let template = fs.readFileSync(templatePath).toString();
  181. let output = ejs.render(template, vals, opts);
  182. if (pOpts.outputFile) {
  183. fs.writeFileSync(pOpts.outputFile, output);
  184. }
  185. else {
  186. process.stdout.write(output);
  187. }
  188. process.exit();
  189. }
  190. // Defer execution so that stdin can be read if necessary
  191. setImmediate(run);