You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 31KB

6 years ago
4 years ago
4 years ago
4 years ago
6 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
6 years ago
4 years ago
6 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
6 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
6 years ago
4 years ago
6 years ago
4 years ago
6 years ago
6 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841
  1. 
  2. // --------------
  3. // elxr
  4. // A cli tool for elixr.
  5. // PB : TODO --
  6. // runas bypass non elevated tasks when we request privelege
  7. // runas message is always error needs to be fixed.
  8. // runas wait needs to be parallelized.
  9. // suppress elevation check error messages
  10. // support runas lauched directly from shell.
  11. // pass in environment in hta to shellexecute.
  12. const { existsSync } = require('fs');
  13. const fs = require('fs')
  14. const { spawn, spawnSync } = require('child_process');
  15. const cliargs = require('../elxr/cliargs'); // Use minimist...
  16. const processedArgs = cliargs(process.argv.slice(2));
  17. console.dir(processedArgs)
  18. var globSync = require('glob').sync;
  19. var path = require('path');
  20. const { isMaster } = require('cluster');
  21. // Serialize a set of functions that will execute to return a promises one after the other.
  22. // Will stop when any one fails unless continueOnFailure is true.
  23. // All tasks in iterables can be functions or promises.
  24. // promises as usual can return other promises or resolve to either truthy or falsy values.
  25. // functions must return a promise
  26. function any(iterable, continueOnFailure) {
  27. return iterable.reduce(
  28. (p, fn, i ,a) => {
  29. // console.log('accumulator :');
  30. // console.log(p);
  31. if(Promise.resolve(p) === p ) {
  32. return p.then((pVal) => {
  33. // Falsy values are task failure.
  34. if(!pVal) {
  35. console.warn('Possible failure for result : ' + pVal)
  36. console.warn(a[i-1])
  37. fn ? console.error("Fn : " + fn.toString()) : null;
  38. }
  39. // Truthy values are failures if obj has error=true.
  40. if(pVal && pVal.error) { console.error('Failed : ' + pVal.message + ' ' + pVal) }
  41. if(Promise.resolve(pVal) === pVal) {
  42. // Passed in function retured a promise. We still need to wait for it.
  43. pVal.then((pVal)=>{
  44. // console.log('Then --pVal = ' + pVal + ' bContinue = ' + continueOnFailure ); console.log(p);
  45. if(!pVal && !continueOnFailure) {
  46. console.error(`E1 : i = ${i} : pVal :` + pVal);
  47. console.error('debugData 2 -------------------');
  48. console.log("Cancelling remaining...");
  49. throw 'Failed in reduce 1 '
  50. }
  51. if(!fn && !continueOnFailure) { console.error('Error : No task specified.'); throw false;}
  52. else if(!fn) return false;
  53. return (Promise.resolve(fn) === fn ) ? fn : fn() ;
  54. })
  55. }
  56. else {
  57. // We will stop on null resolved values on any one task unless continueOnFailure is true.
  58. // console.log('Then --pVal = ' + pVal + ' bContinue = ' + continueOnFailure ); console.log(p);
  59. if(!pVal && !continueOnFailure) {
  60. console.error(`E2 : i = ${i} : pVal :` + pVal);
  61. console.error('debugData 2 -------------------');
  62. console.log("Cancelling remaining...");
  63. throw 'Failed in reduce 2 '
  64. }
  65. if(!fn && !continueOnFailure) { console.error('Error : No task specified.'); throw false;}
  66. else if(!fn) return false;
  67. return (Promise.resolve(fn) === fn ) ? fn : fn() ;
  68. }
  69. }).catch((error) => {
  70. console.error(`E3 : i = ${i} `);
  71. fn ? console.error("Fn : " + fn.toString()) : null;
  72. console.error('debugData 3-------------------------');
  73. throw 'Failed in reduce 3 '
  74. })
  75. }
  76. else if(!p) {
  77. console.log("Bypass on failure");
  78. return false;
  79. }
  80. }
  81. , Promise.resolve(true)
  82. );
  83. }
  84. var __isElevated = null;
  85. var isRunningElevated = ()=>{
  86. if(__isElevated === null) {
  87. return nodeShellExec( "fsutil", ["dirty", "query", "C:"], {
  88. inherit : true
  89. // , shell: true
  90. , stdio: 'ignore'
  91. , env: process.env
  92. , title : `check privileged execution mode using "fsutil dirty query C:"`
  93. }).then((exitcode)=>{
  94. console.log('Elevated')
  95. __isElevated = true;
  96. return true;
  97. }).catch(()=>{
  98. __isElevated = false;
  99. console.log('Not Elevated');
  100. throw false;
  101. });
  102. }
  103. else return Promise.resolve(__isElevated);
  104. }
  105. var cli = 'elxr';
  106. var ver = '#unversioned';
  107. var help = '#unkown list of commands... please refer dveloper documentation for ' + cli;
  108. // grep -qxF 'alias elxr="node elxr/index.js"' ~/.bash_profile || echo 'alias elxr="node elxr/index.js"' >> ~/.bash_profile
  109. // nodeShellExec('echo', ['elxr'], { inherit : true}) //, {stdio: "inherit"}
  110. var dbForLabel = function(label){
  111. var dbsForLabel = {
  112. devmysql : 'mysql'
  113. , development : 'mssql'
  114. , production : 'mssql'
  115. }
  116. return dbsForLabel[label] || 'mysql'
  117. }
  118. // Relevant git repos
  119. var gitRepos = [
  120. 'ember-masonry-grid'
  121. , 'bbhverse'
  122. , 'clientverse'
  123. , 'serververse'
  124. , 'client'
  125. // , 'client/server'
  126. , 'elxr'
  127. , 'ember-searchable-select'
  128. , 'loopback-component-jsonapi'
  129. , 'elixir-config-development'
  130. , 'elixir-config-test'
  131. , 'cihsr-config'
  132. , 'cihsr-data'
  133. , 'elixir-data'
  134. , 'loopback-connector-ds'
  135. , 'chess-server-lib'
  136. , 'setup'
  137. , 'elixir-client-todos'
  138. , 'elixir-client-unlinked'
  139. , 'elixir-client'
  140. , 'ember-service-worker'
  141. , 'ember-service-worker-asset-cache'
  142. , 'ember-service-worker-cache-fallback'
  143. , 'ember-service-worker-index'
  144. , 'ember-sw-client-route'
  145. , 'global-this'
  146. ]
  147. // Repositiories that have symlinks that required elevated priviletes in windows to create symlinks
  148. //
  149. var elevatedRunasRepos = [
  150. 'elixir-server'
  151. , 'cihsr-server'
  152. , 'chess-server'
  153. ]
  154. var productionRepos = [
  155. 'elixir-config-production'
  156. ]
  157. var productionIsAllowed = true;
  158. if(productionIsAllowed) gitRepos = gitRepos.concat(productionRepos)
  159. var env = Object.assign({}, process.env); // Shallow clone it.
  160. var __runcmd = function(label){
  161. var op = {
  162. 'h' : ()=>{ console.log(cli + ' ' + ver + ' ' + help); return '-h' }
  163. , 'undefined' : ()=>{ return op.h(); }
  164. , 'upgrade' : ()=>{
  165. console.log('upgrade.......')
  166. var tasks = [
  167. ()=>{
  168. var p = nodeShellExec('npm', ['i', '-g', 'npm-upgrade'], {
  169. inherit : true, shell: true
  170. , env: process.env
  171. }).catch((e)=>{ console.error(e) })
  172. p.position = 1;
  173. console.log('One')
  174. return p;
  175. }
  176. , ()=>{
  177. var p = nodeShellExec('npm', ['cache', 'clean', '-f'], {
  178. inherit : true, shell: true
  179. , env: process.env
  180. }).catch((e)=>{ console.error(e) })
  181. p.position = 2;
  182. console.log('Two')
  183. return p;
  184. }
  185. , ()=>{
  186. var p = nodeShellExec('npm', ['install', '-g', 'n'], {
  187. inherit : true, shell: true
  188. , env: process.env
  189. }).catch((e)=>{ console.error(e) })
  190. p.position = 3;
  191. console.log('Three')
  192. return p;
  193. }
  194. , ()=>{
  195. var p = nodeShellExec('n', ['latest'], {
  196. inherit : true, shell: true
  197. , env: process.env
  198. }).catch((e)=>{ console.error(e) })
  199. p.position = 4;
  200. console.log('Four')
  201. return p;
  202. }
  203. ]
  204. any(tasks)
  205. console.log('.......done')
  206. console.log('Running exlr upgrade in : ' + path.dirname(__dirname))
  207. console.log('Currently only upgrades ember : ' + path.dirname(__dirname));
  208. console.info('Uninstalling existing ember globally') ;
  209. var step1 = nodeShellExec('cmd', ['/c', 'npm', 'uninstall', '-g', 'ember-cli'], {
  210. stdio: ['pipe', process.stdout, process.stderr],
  211. inherit : true,
  212. shell: true,
  213. cwd : path.dirname(__dirname),
  214. env: env
  215. })
  216. step1.on('close', ()=>{
  217. console.info('Installing ember globally') ;
  218. var step2 = nodeShellExec('cmd', ['/c', 'npm', 'install', '-g', 'ember-cli'], {
  219. stdio: ['pipe', process.stdout, process.stderr],
  220. inherit : true,
  221. shell: true,
  222. cwd : path.dirname(__dirname),
  223. env: env
  224. })
  225. step2.on('close', ()=>{
  226. nodeShellExec('cmd', ['/c', 'ember', '--version'], {
  227. stdio: ['pipe', process.stdout, process.stderr],
  228. inherit : true,
  229. shell: true,
  230. cwd : path.dirname(__dirname),
  231. env: env
  232. })
  233. })
  234. })
  235. }
  236. , 'runas' : ()=>{
  237. return isRunningElevated().then(
  238. (isElevated) => {
  239. if(isElevated) {
  240. try {
  241. op[ processedArgs.label || processedArgs._[0] || 'h']()
  242. }
  243. catch(e){
  244. console.error('Error Invalid command : ' + e)
  245. fs.writeFileSync('run.done', 'success')
  246. }
  247. finally {
  248. }
  249. } else throw false;
  250. }
  251. )
  252. .catch(()=>{
  253. console.log('Requesting Elevated Privileges');
  254. // Wait for the runas to complete before we read it.
  255. try {
  256. fs.unlinkSync('run.done')
  257. fs.unlinkSync('run.log')
  258. }
  259. catch(e) { } //Ignore
  260. // PB : TODO -- Convert all the cli args back to string.
  261. var namedArgs = [];
  262. Object.keys(processedArgs).forEach((v)=>{ v!='_' ? namedArgs.push('--'+v+'='+processedArgs[v]) : null; })
  263. //console.log(' namedArgs : ' + namedArgs)
  264. process.env.NODE_ENV = process.env.NODE_ENV || 'development';
  265. var args = [__dirname + '/windowselevate.hta'].concat(processedArgs._).concat(namedArgs.join(' ')); args.push('--runas=self');
  266. nodeShellExec('MSHTA', [`"${args.join('" "')}"`]
  267. , {
  268. inherit : true
  269. , shell: true
  270. , env: process.env
  271. , runas : 'self'
  272. , title : `runas`
  273. }
  274. ).then(()=>{
  275. // runas returned.
  276. var runaslog = JSON.parse('[ { "success" : true, "result" : "runas Log" }' + fs.readFileSync('run.log', { flags : 'a+'}) + ']');
  277. runaslog.forEach((logEntry)=>{
  278. logEntry.success ? (console.log(['success :' + logEntry.result]), console.log((logEntry.messages || []).join(' '))) : console.error(['error :' + logEntry.result]), console.error((logEntry.messages || []).join(' '))
  279. })
  280. })
  281. .catch(err => console.error('Elevation failed : ' + err));
  282. })
  283. }
  284. , 'push' : ()=>{
  285. if(!processedArgs._[1]) { console.error('push all not supported. Specify repo name'); return }
  286. // init remote bare from local
  287. // pushandinitremotebare
  288. // https://www.jeffgeerling.com/blogs/jeff-geerling/push-your-git-repositories
  289. // connect to repo server -- net use 172.16.0.27
  290. // cd 172.16.0.27/repos/
  291. // mkdir repo.git
  292. // cd repo.git
  293. // git init --bare
  294. // cd localrepo
  295. // git remote rename origin githubclone
  296. // git remote add origin //172.16.0.27/repos/repo.git
  297. // git push origin master
  298. var repo = processedArgs._[1];
  299. var defaultRepoServer = '//172.16.0.27/repos'
  300. var sequentialTaskShellCommands = [];
  301. if(!existsSync(`Z:/${repo}.git`)){
  302. sequentialTaskShellCommands = [
  303. // ['net', ['use', 'Z:', defaultRepoServer.replace('/','\\')], {
  304. // inherit : true, shell: true
  305. // , env: process.env
  306. // }]
  307. ['pwd', { cwd : 'Z:', inherit : true}]
  308. , ['mkdir', [`${repo}.git`], {
  309. cwd : `Z:`
  310. , inherit : true, shell: true
  311. , env: process.env
  312. }]
  313. , ['pwd', { cwd : `Z:/${repo}.git`, inherit : true}]
  314. , ['git', ['init', '--bare'], { cwd : `Z:/${repo}.git`
  315. , inherit : true, shell: true
  316. , env: process.env
  317. }]
  318. , ['git', ['remote', 'rename', 'origin', 'githubclone'], { cwd : `${repo}`}, (err)=>{
  319. console.log('Ignoring origin rename error : ' + err); return true; //return true to continue.
  320. } ] // PB ; Todo -- new repositories created locally will not have origin. Handle this failure.
  321. , ['git', ['remote', 'add', 'origin', `${defaultRepoServer}/${repo}.git`], { cwd : `${repo}`}]
  322. ]
  323. if(!existsSync(`Z:`)){
  324. sequentialTaskShellCommands.splice(0,0, ['net', ['use', 'Z:', defaultRepoServer.replace(/\//gm,'\\')], {
  325. inherit : true, shell: true
  326. , env: process.env
  327. }])
  328. console.warn('Adding network drive z: for repo server. ' + sequentialTaskShellCommands[0])
  329. // throw 'done'
  330. }
  331. }
  332. sequentialTaskShellCommands.push(['git', ['push', 'origin', 'master'], { cwd : `${repo}`}])
  333. // console.dir(sequentialTaskShellCommands);
  334. var tasks = [];
  335. sequentialTaskShellCommands.forEach(shellcmd => {
  336. // console.log(shellcmd)
  337. tasks.push(()=>{
  338. var p = nodeShellExec.apply(null, shellcmd.slice(0,3)).catch((e)=>{ if(shellcmd[3]) { return shellcmd[3]() } else { console.error(e);} })
  339. return p;
  340. })
  341. })
  342. any(tasks);
  343. }
  344. , 'pull' : (label) => {
  345. // Usage :
  346. // elxr pull -- Defaults to run config
  347. var env = Object.assign({}, process.env); // Shallow clone it.
  348. // console.dir(env)
  349. console.log('Running exlr pull : ' + path.dirname(__dirname))
  350. // nodeShellExec('cmd', ['/c', 'setup\\utility\\chess.bat', 'pull'], {
  351. // // nodeShellExec('cmd', ['/c', '..\\setup\\utility\\chess.bat', 'pull'], {
  352. // stdio: ['pipe', process.stdout, process.stderr],
  353. // inherit : true,
  354. // shell: true,
  355. // cwd : path.dirname(__dirname),
  356. // env: env
  357. // })
  358. var performPull = repo => {
  359. if(existsSync(repo)) {
  360. console.log('pulling ' + repo)
  361. return nodeShellExec('git', ['pull'], {
  362. inherit : true, shell: true,
  363. cwd : repo
  364. // , env: process.env
  365. , runas : processedArgs.runas
  366. , title : `git pull ${repo}`
  367. }).catch((e)=>{ console.error(e) })
  368. }
  369. else {
  370. console.log('cloning ' + repo)
  371. return nodeShellExec('git', ['clone', '//172.16.0.27/repos/' + repo + '.git'],
  372. {
  373. inherit : true, shell: true,
  374. env: process.env
  375. , runas : processedArgs.runas
  376. , title : `git clone ${'//172.16.0.27/repos/' + repo + '.git'}`
  377. }).catch((e)=>{ console.error(e) })
  378. }
  379. }
  380. if(!processedArgs.runas) gitRepos.forEach(performPull)
  381. return isRunningElevated().then(
  382. (isElevated) => {
  383. if(isElevated) {
  384. any(elevatedRunasRepos.map((repo)=>performPull(repo))).then(()=>{
  385. fs.writeFileSync('run.done', 'success')
  386. }).catch(()=>{
  387. fs.writeFileSync('run.done', 'error')
  388. })
  389. }
  390. else throw false;
  391. }
  392. ).catch(
  393. () => {
  394. op['runas']()
  395. }
  396. )
  397. }
  398. , 'npmi' : ()=>{
  399. var tasks = [];
  400. gitRepos.forEach(repo => {
  401. console.log('npm i for ' + repo)
  402. // nodeShellExec('pwd', [], {
  403. // // inherit : true, shell: true
  404. // cwd : repo
  405. // // , env: process.env
  406. // , title : `pwd for ${repo}`
  407. // }).catch((e)=>{ console.error(e) })
  408. nodeShellExec('rm', ['package-lock.json'], {
  409. inherit : true, shell: true
  410. , cwd : repo
  411. , env: process.env
  412. , title : `rm 'package-lock.json' for ${repo}`
  413. }).catch((e)=>{ console.error(e) })
  414. tasks.push(()=>{
  415. var p = nodeShellExec('npm', ['i'], {
  416. inherit : true, shell: true
  417. , cwd : repo
  418. , env: process.env
  419. , title : `npm i for ${repo}`
  420. }).catch((e)=>{ console.error(e) })
  421. return p;
  422. })
  423. })
  424. any(tasks);
  425. }
  426. , 'start' : (label)=>{
  427. console.log('Starting Elixir Server.');
  428. var env = Object.assign({}, process.env); // Shallow clone it.
  429. // console.dir(env)
  430. env.NODE_ENV = process.env.NODE_ENV || 'development';
  431. env.DEBUG = 'loopback:connector:' + dbForLabel(label)
  432. var cmd = env.NODE_ENV === 'development' ? 'nodemon' : 'node';
  433. // cmd = 'node'
  434. var childPromise = nodeShellExec(cmd, ['--inspect=9228', 'elixir/server.js'], {
  435. // inherit : true,
  436. shell: true,
  437. detached: true,
  438. stdio: 'ignore',
  439. cwd : 'elixir-server'
  440. , env: env
  441. })
  442. var child = childPromise.process;
  443. if (typeof child.pid !== 'undefined') {
  444. fs.writeFileSync('.elixir-server.elixir.server.pid', child.pid, {
  445. encoding: 'utf8'
  446. })
  447. }
  448. // nodeShellExec('node', ['--inspect=9226', ' bin/www'], {
  449. // inherit : true,
  450. // shell: true, detached: true,
  451. // cwd : 'qms/server',
  452. // env: env,
  453. // shell : true
  454. // })
  455. // nodeShellExec('ember', ['s'], {
  456. // // inherit : true,
  457. // shell: true, detached: true,
  458. // cwd : 'client/',
  459. // env: env
  460. // })
  461. var childPromise = nodeShellExec('ember', ['s'], {
  462. // var childPromise = nodeShellExec('node', ['--inspect=9227', './node_modules/.bin/ember', 's'], {
  463. // PB : TODO -- ember debugging.
  464. // inherit : true,
  465. shell: true,
  466. detached: true,
  467. stdio: 'ignore',
  468. cwd : 'client'
  469. , env: env
  470. })
  471. // .catch(e=>console.error(e))
  472. child = childPromise.process;
  473. if (typeof child.pid !== 'undefined') {
  474. fs.writeFileSync('.client.server.pid', child.pid, {
  475. encoding: 'utf8'
  476. })
  477. }
  478. }
  479. , 'stop' : (label)=>{
  480. const kill = require('tree-kill');
  481. var serverPid = fs.readFileSync('.elixir-server.elixir.server.pid', {
  482. encoding: 'utf8'
  483. })
  484. fs.unlinkSync('.elixir-server.elixir.server.pid')
  485. console.log(serverPid)
  486. kill(serverPid)
  487. serverPid = fs.readFileSync('.client.server.pid', {
  488. encoding: 'utf8'
  489. })
  490. fs.unlinkSync('.client.server.pid')
  491. console.log(serverPid)
  492. kill(serverPid)
  493. }
  494. , 'use' : ()=>{
  495. // use a certain named instance.
  496. // Eg :
  497. // 1) elxr use elixir
  498. // 2) elxr use cihsr
  499. // If environment is not specified defaults to development.
  500. // 1) NODE=test elxr use elixir
  501. var runconfig = { NODE_ENV : process.env.NODE_ENV }
  502. try { runconfig = Object.assign(runconfig, require('../run.js')) } catch(e) { }
  503. if((!processedArgs.runas || processedArgs.runas !== 'self') &&
  504. runconfig.NODE_ENV && runconfig.NODE_ENV === (process.env.NODE_ENV || runconfig.NODE_ENV) &&
  505. processedArgs._[1] && runconfig.use === processedArgs._[1]) {
  506. console.log(`No change detected. Already using requested specs : ${runconfig.NODE_ENV} ${runconfig.use}`)
  507. if(processedArgs.runas) { fs.writeFileSync('run.done', 'success') }
  508. return
  509. }
  510. var tasks = [
  511. ()=>{
  512. if(existsSync('config')) {
  513. var p = nodeShellExec('rmdir', ['config'], {inherit : true, shell: true, env: process.env }
  514. ).catch((err)=>{ console.log('Ignoring benign error : ' + err); return true; })
  515. return p;
  516. }
  517. else return Promise.resolve(true);
  518. },
  519. ()=>{
  520. if(existsSync('data')) {
  521. var p = nodeShellExec('rmdir', ['data'], { inherit : true, shell: true, env: process.env }
  522. ).catch((err)=>{ console.log('Ignoring benign error : ' + err); return true; })
  523. return p;
  524. }
  525. else return Promise.resolve(true);
  526. },
  527. ];
  528. runconfig.NODE_ENV = process.env.NODE_ENV = process.env.NODE_ENV || runconfig.NODE_ENV || 'development';
  529. if(processedArgs._[1] && runconfig.use !== processedArgs._[1]) runconfig.use = processedArgs._[1];
  530. if(!runconfig.use) { throw 'unspecifed use not allowed. Please specify chess instance name.' }
  531. // console.log(process.env.cwd)
  532. fs.writeFileSync('./run.js', 'module.exports = ' + JSON.stringify(runconfig))
  533. var checkoutMap = {
  534. 'development' : 'master',
  535. }
  536. // cant use git checkout -b it fails with branch already exists.
  537. var performCheckout = (repo)=>{
  538. if(excludeCheckouts[repo]) return Promise.resolve({ 'skipped' : true })
  539. return nodeShellExec('git', ['switch', '-m', '-C', checkoutMap[runconfig.NODE_ENV] || runconfig.NODE_ENV], {
  540. inherit : true, shell: true,
  541. cwd : repo
  542. , runas : processedArgs.runas
  543. , title : `git switch -C -m ${checkoutMap[runconfig.NODE_ENV] || runconfig.NODE_ENV} for ${repo}`
  544. }).catch((e)=>{ console.error(e); return { error : true, message : repo} })
  545. }
  546. var performPullAll = (repo)=>{
  547. if(excludeCheckouts[repo]) return Promise.resolve({ 'skipped' : true })
  548. return nodeShellExec('git', ['pull', '--all'], {
  549. inherit : true, shell: true,
  550. cwd : repo
  551. , runas : processedArgs.runas
  552. , title : `git switch -C -m ${checkoutMap[runconfig.NODE_ENV] || runconfig.NODE_ENV} for ${repo}`
  553. }).catch((e)=>{ console.error(e); return { error : true, message : repo} })
  554. }
  555. var mergeSources = {
  556. 'development' : null,
  557. 'test' : 'master',
  558. 'production' : 'test'
  559. }
  560. var exludeMergeRepos = {
  561. 'elixir-config-development' : true, 'elixir-config-test': true, 'elixir-config-production' : true
  562. }
  563. var excludeCheckouts = Object.assign(exludeMergeRepos)
  564. delete excludeCheckouts[`elixir-config-${runconfig.NODE_ENV}`]
  565. var mergeSource = mergeSources[checkoutMap[runconfig.NODE_ENV] || runconfig.NODE_ENV]
  566. var performMerge = (repo)=>{
  567. if(exludeMergeRepos[repo]) return Promise.resolve({ 'skipped' : true })
  568. return nodeShellExec('git', ['merge', mergeSource], {
  569. inherit : true, shell: true,
  570. cwd : repo
  571. , runas : processedArgs.runas
  572. }).catch((e)=>{ console.error(e) })
  573. }
  574. if(runconfig.NODE_ENV === 'development') performMerge = ()=>{ return Promise.resolve(true) }
  575. any(tasks).then(()=>{
  576. if(!processedArgs.runas) return op['runas']()
  577. tasks = [
  578. ()=>{
  579. // Use junctions to avoid npm package issues
  580. var p = nodeShellExec('mklink', ['/J', 'config', runconfig.use + '-config' + '-' + process.env.NODE_ENV ], {
  581. inherit : true, shell: true
  582. , env: process.env
  583. }).catch((e)=>{ console.error(e) })
  584. return p;
  585. }
  586. ];
  587. if(processedArgs._[1]) {
  588. tasks = tasks.concat(
  589. [
  590. ()=>{
  591. var p = nodeShellExec('mklink', ['/D', 'data', runconfig.use + '-data'], {
  592. inherit : true, shell: true
  593. , env: process.env
  594. }).catch((e)=>{ console.error(e) })
  595. return p;
  596. }
  597. ]
  598. )
  599. }
  600. return any(tasks)
  601. .then(
  602. () => any([ any(gitRepos.map((repo)=>performPullAll(repo))), any(elevatedRunasRepos.map((repo)=>performPullAll(repo)))]) )
  603. .then(
  604. () => any([ any(gitRepos.map((repo)=>performCheckout(repo))), any(elevatedRunasRepos.map((repo)=>performCheckout(repo)))]) )
  605. .then(
  606. () => any([ any(gitRepos.map((repo)=>performMerge(repo))).catch(err=>{ console.error('error in performMerge ' + err)}) ,
  607. any(elevatedRunasRepos.map((repo)=>performMerge(repo))).catch(err=>{ console.error('error in performMerge ' + err)})]) )
  608. .then( () => {
  609. // Move test config from dev.
  610. if(process.env.NODE_ENV === 'test'){
  611. var devcfgreponame = runconfig.use + '-config' + '-development';
  612. var testcfgreponame = runconfig.use + '-config' + '-test';
  613. var testcfgdir = path.dirname(__dirname) + '/' + testcfgreponame + '/'
  614. var devcfgdir = path.dirname(__dirname) + '/' + devcfgreponame + '/' //eg (elxr/../elixir-config.development)
  615. return any([
  616. ()=>{
  617. return nodeShellExec('git', ['checkout', 'test'], {
  618. inherit : true, shell: true,
  619. cwd : testcfgdir
  620. // , env: process.env
  621. , runas : processedArgs.runas
  622. , title : `git checkout test for ${testcfgreponame}`
  623. }).catch((e)=>{ console.error(e) })
  624. }
  625. , ()=> {
  626. return nodeShellExec('git', ['checkout', 'master'], {
  627. inherit : true, shell: true,
  628. cwd : devcfgdir
  629. // , env: process.env
  630. , runas : processedArgs.runas
  631. , title : `git checkout master for ${devcfgreponame}`
  632. }).catch((e)=>{ console.error(e) })
  633. }
  634. , ()=> {
  635. globSync( '**/*.test.js', {cwd : devcfgdir}).map((filename) => {
  636. console.log('File found : ' + devcfgdir + filename)
  637. fs.copyFileSync(devcfgdir + filename, testcfgdir+ filename);
  638. })
  639. return nodeShellExec('git', ['checkout', 'test'], {
  640. inherit : true, shell: true,
  641. cwd : devcfgdir
  642. // , env: process.env
  643. , runas : processedArgs.runas
  644. , title : `git checkout test for ${devcfgreponame}`
  645. }).catch((e)=>{ console.error(e) })
  646. }
  647. ])
  648. }
  649. else return Promise.resolve(true)
  650. })
  651. .then(()=>{
  652. fs.writeFileSync('run.done', 'success')
  653. }).catch(()=>{
  654. fs.writeFileSync('run.done', 'error')
  655. })
  656. }).catch(()=>{
  657. fs.writeFileSync('run.done', 'error')
  658. })
  659. // Antibiotic stewardship program.
  660. // 1st use is fine.
  661. // Max vials dispense
  662. // 2nd use Pharmacy needs justification Form.
  663. // Approval after a certain period of time.
  664. }
  665. , 'g' : ()=>{
  666. if(processedArgs.h) {
  667. console.log('elxr g [modelname] => generate a model named [modelname]');
  668. console.log('elxr g => regenerate all known models');
  669. return
  670. }
  671. // var child = nodeShellExec('mkdir', ['-p', label], { inherit : true} );
  672. // console.log('Starting directory: ' + process.cwd());
  673. // try {
  674. // child = child.on('close', () => { process.chdir(label) } );
  675. // console.log('New directory: ' + process.cwd());
  676. // }
  677. // catch (err) {
  678. // console.log('chdir: ' + err);
  679. // }
  680. // child.on('close', function(){
  681. // var options = {
  682. // shell : true
  683. // , inherit : true
  684. // // , cwd : '' + process.cwd
  685. // // , env : process.env
  686. // };
  687. // nodeShellExec('git', ['init'], { inherit : true});
  688. if(0){
  689. // PB : TODO -- Special google chrome profile for tests etc.
  690. nodeShellExec('pwd', { inherit : true});
  691. //$ "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Profile 1" http://localhost:4200/tests/index.html?grep=loopback
  692. nodeShellExec("C:/Program Files (x86)/Google/Chrome/Application/chrome.exe", [
  693. "--profile-directory=Profile 1"
  694. , 'http://localhost:4200/tests/index.html?grep=model convert ember to loopback' + '&filter=none' /*+ '&filter=model convert ember to loopback'*/]);
  695. }
  696. // nodeShellExec('npm', ['init', '-y'], options);
  697. // nodeShellExec('npm', ['init', '-y'], options);
  698. // })
  699. var g = {
  700. 'client' : ()=>{
  701. console.info('Creating new ember client named : ' + processedArgs._[2] ) ;
  702. var step1 = nodeShellExec('cmd', ['/c', 'ember', 'new', processedArgs._[2]], {
  703. stdio: ['pipe', process.stdout, process.stderr],
  704. inherit : true,
  705. shell: true,
  706. cwd : path.dirname(__dirname),
  707. env: env
  708. })
  709. }
  710. }
  711. g[processedArgs._[1]]();
  712. }
  713. }
  714. return op[label] ? op[label]() : null;
  715. }
  716. // mysqldump --add-drop-table --no-data -u root -p db_name | grep 'DROP TABLE' ) > drop_all_tables.sql
  717. // mysql -u root -p db_name < drop_all_tables.sql
  718. var mysql = '../xampp/mysql/bin/mysql'
  719. var mysqldump = '../xampp/mysql/bin/mysqldump'
  720. // --runas
  721. if(processedArgs.runas) {
  722. // Weve been asked to run in priviledged mode. Check if we already are privileged.
  723. __runcmd('runas')
  724. }
  725. else __runcmd(processedArgs.label || processedArgs._[0] || 'h');
  726. function nodeShellExec() {
  727. var args = Array.from(arguments);
  728. var opts = args[2] = args[2] || {}
  729. opts.title ? null : opts.title = `${args[0]} ${args[1] }`
  730. const child = spawn(...arguments);
  731. var p = new Promise(function(resolve, reject){
  732. if(!opts.detached) {
  733. var messages = []; // PB : TODO -- Explore stream for Task level aggregation to prevent interleaved messages from multiple tasks...
  734. var success = true;
  735. if(opts.stdio !== 'ignore') {
  736. child.stdout.setEncoding('utf8');
  737. child.stderr.setEncoding('utf8');
  738. child.stdout.on('data', (chunk) => { messages.push(chunk); /*console.log(chunk)*/});
  739. child.on('error', (chunk) => { success = false; messages.push(chunk); /*console.error(chunk)*/ });
  740. child.stderr.on('data', (chunk) => { messages.push(chunk); /*console.log(chunk)*/});
  741. }
  742. child.on('close', (code) => {
  743. if(+code !== 0) success = false;
  744. if(opts.stdio !== 'ignore') {
  745. if(opts.runas){
  746. var logEntry = { result: `${opts.title} exited with code ${code}`, messages : messages }
  747. success ? logEntry.success = true : null;
  748. fs.writeFileSync('run.log', ', ' + JSON.stringify(logEntry), {'flag':'a+'} )
  749. }
  750. else {
  751. success ? console.log(['success : ' + ` ${opts.title} exited with code ${code}`]) : console.error([`error : ${opts.title} exited with code ${code}`])
  752. // console.log( messages.join('') )
  753. process.stdout.write( messages.join('') )
  754. }
  755. }
  756. if(code !== 0) return reject(code)
  757. resolve(true)
  758. });
  759. }
  760. else {
  761. child.unref()
  762. resolve(true);
  763. }
  764. });
  765. p.process = child;
  766. return p;
  767. }