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 20KB

6 years ago
4 years ago
4 years ago
6 years ago
6 years ago
4 years ago
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
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
6 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. 
  2. // --------------
  3. // elxr
  4. // A cli tool for elixr.
  5. const { existsSync } = require('fs');
  6. const fs = require('fs')
  7. const { spawn, spawnSync } = require('child_process');
  8. const cliargs = require('../elxr/cliargs'); // Use minimist...
  9. const processedArgs = cliargs(process.argv.slice(2));
  10. console.dir(processedArgs)
  11. var path = require('path')
  12. // Serialize a set of functions that will execute to return a promises one after the other.
  13. // Will stop when any one fails.
  14. function any(iterable, continueOnFailure) {
  15. return iterable.reduce(
  16. (p, fn, i ,a) => {
  17. // console.log('accumulator :');
  18. // console.log(p);
  19. if(Promise.resolve(p) === p ) {
  20. return p.then((pVal) => {
  21. if(Promise.resolve(pVal) === pVal) {
  22. // Passed in function retured a promise. We still need to wait for it.
  23. pVal.then((pVal)=>{
  24. // console.log('Then --pVal = ' + pVal + ' bContinue = ' + continueOnFailure ); console.log(p);
  25. if(!pVal && !continueOnFailure) {
  26. console.error("E : pVal :" + pVal);
  27. // i==0 ? null : console.error("E :1 a[i-1] " + a[i-1]);
  28. // a.map((i)=>console.error(i.toString()));
  29. console.error('debugData 3 -------------------');
  30. // console.error(debugData);
  31. console.error('debugData 3 -------------------');
  32. console.log("Cancelling remaining...");
  33. throw 'Failed in reduce 1 '
  34. return false;
  35. }
  36. // console.log('calling fn : '+ fn);
  37. return (Promise.resolve(fn) === fn ) ? fn : fn() ;
  38. })
  39. }
  40. else {
  41. // console.log('Then --pVal = ' + pVal + ' bContinue = ' + continueOnFailure ); console.log(p);
  42. if(!pVal && !continueOnFailure) {
  43. console.error("E : pVal :" + pVal);
  44. // i==0 ? null : console.error("E :1 a[i-1] " + a[i-1]);
  45. // a.map((i)=>console.error(i.toString()));
  46. console.error('debugData 3 -------------------');
  47. // console.error(debugData);
  48. console.error('debugData 3 -------------------');
  49. console.log("Cancelling remaining...");
  50. throw 'Failed in reduce 1 '
  51. return false;
  52. }
  53. // console.log('calling fn : '+ fn);
  54. return (Promise.resolve(fn) === fn ) ? fn : fn() ;
  55. }
  56. }).catch((error) => {
  57. console.error("E : " + error);
  58. fn ? console.error("Fn : " + fn.toString()) : null;
  59. // i==0 ? null : console.error("E :2 a[i-1] " + a[i-1]);
  60. // a.map((i)=>console.error(i.toString()));
  61. console.error('debugData 4-------------------------');
  62. // console.error(debugData);
  63. console.error('debugData 4-------------------------');
  64. throw 'Failed in reduce 2 '
  65. return false;
  66. })
  67. }
  68. else if(!p) {
  69. console.log("Bypass on failure");
  70. return false;
  71. }
  72. }
  73. , Promise.resolve(true)
  74. );
  75. }
  76. var isRunningElevated = ()=>{
  77. return nodeShellExec( "fsutil", ["dirty", "query", "C:"], {
  78. inherit : true, shell: true
  79. , env: process.env
  80. , title : `check privileged execution mode using fsutil dirty query C:`
  81. }).then((exitcode)=>{
  82. console.log('Elevated')
  83. return true;
  84. }).catch(()=>{
  85. console.log('Not Elevated');
  86. throw false;
  87. });
  88. }
  89. var cli = 'elxr';
  90. var ver = '#unversioned';
  91. var help = '#unkown list of commands... please refer dveloper documentation for ' + cli;
  92. // grep -qxF 'alias elxr="node elxr/index.js"' ~/.bash_profile || echo 'alias elxr="node elxr/index.js"' >> ~/.bash_profile
  93. // nodeShellExec('echo', ['elxr'], { inherit : true}) //, {stdio: "inherit"}
  94. var dbForLabel = function(label){
  95. var dbsForLabel = {
  96. devmysql : 'mysql'
  97. , development : 'mssql'
  98. , production : 'mssql'
  99. }
  100. return dbsForLabel[label] || 'mysql'
  101. }
  102. // Relevant git repos
  103. var gitRepos = [
  104. 'ember-masonry-grid'
  105. , 'bbhverse'
  106. , 'clientverse'
  107. , 'serververse'
  108. , 'client'
  109. // , 'client/server'
  110. , 'elxr'
  111. , 'elixir-client'
  112. , 'elixir-client-unlinked'
  113. , 'ember-searchable-select'
  114. , 'loopback-component-jsonapi'
  115. , 'elixir-config'
  116. , 'cihsr-config'
  117. , 'cihsr-data'
  118. , 'elixir-data'
  119. , 'loopback-connector-ds'
  120. , 'chess-server-lib'
  121. , 'setup'
  122. ]
  123. // Repositiories that have symlinks that required elevated priviletes in windows to create symlinks
  124. //
  125. var elevatedRunasRepos = [
  126. 'elixir-server'
  127. , 'cihsr-server'
  128. , 'chess-server'
  129. ]
  130. var env = Object.assign({}, process.env); // Shallow clone it.
  131. var __runcmd = function(label){
  132. var op = {
  133. 'h' : ()=>{ console.log(cli + ' ' + ver + ' ' + help); return '-h' }
  134. , 'upgrade' : ()=>{
  135. console.log('upgrade.......')
  136. var tasks = [
  137. ()=>{
  138. var p = nodeShellExec('npm', ['i', '-g', 'npm-upgrade'], {
  139. inherit : true, shell: true
  140. , env: process.env
  141. }).catch((e)=>{ console.error(e) })
  142. p.position = 1;
  143. console.log('One')
  144. return p;
  145. }
  146. , ()=>{
  147. var p = nodeShellExec('npm', ['cache', 'clean', '-f'], {
  148. inherit : true, shell: true
  149. , env: process.env
  150. }).catch((e)=>{ console.error(e) })
  151. p.position = 2;
  152. console.log('Two')
  153. return p;
  154. }
  155. , ()=>{
  156. var p = nodeShellExec('npm', ['install', '-g', 'n'], {
  157. inherit : true, shell: true
  158. , env: process.env
  159. }).catch((e)=>{ console.error(e) })
  160. p.position = 3;
  161. console.log('Three')
  162. return p;
  163. }
  164. , ()=>{
  165. var p = nodeShellExec('n', ['latest'], {
  166. inherit : true, shell: true
  167. , env: process.env
  168. }).catch((e)=>{ console.error(e) })
  169. p.position = 4;
  170. console.log('Four')
  171. return p;
  172. }
  173. ]
  174. any(tasks)
  175. console.log('.......done')
  176. console.log('Running exlr upgrade in : ' + path.dirname(__dirname))
  177. console.log('Currently only upgrades ember : ' + path.dirname(__dirname));
  178. console.info('Uninstalling existing ember globally') ;
  179. var step1 = nodeShellExec('cmd', ['/c', 'npm', 'uninstall', '-g', 'ember-cli'], {
  180. stdio: ['pipe', process.stdout, process.stderr],
  181. inherit : true,
  182. shell: true,
  183. cwd : path.dirname(__dirname),
  184. env: env
  185. })
  186. step1.on('close', ()=>{
  187. console.info('Installing ember globally') ;
  188. var step2 = nodeShellExec('cmd', ['/c', 'npm', 'install', '-g', 'ember-cli'], {
  189. stdio: ['pipe', process.stdout, process.stderr],
  190. inherit : true,
  191. shell: true,
  192. cwd : path.dirname(__dirname),
  193. env: env
  194. })
  195. step2.on('close', ()=>{
  196. nodeShellExec('cmd', ['/c', 'ember', '--version'], {
  197. stdio: ['pipe', process.stdout, process.stderr],
  198. inherit : true,
  199. shell: true,
  200. cwd : path.dirname(__dirname),
  201. env: env
  202. })
  203. })
  204. })
  205. }
  206. , 'runas' : ()=>{
  207. return isRunningElevated().then(
  208. () => op[ processedArgs.label || processedArgs._[0] || 'h']()
  209. )
  210. .catch(()=>{
  211. console.log('Not Elevated');
  212. console.log('Requesting Elevated Privileges')
  213. nodeShellExec('MSHTA', [`javascript: var shell = new ActiveXObject('shell.application'); shell.ShellExecute('node', 'elxr ${processedArgs._[0]} ${processedArgs._[1]} ${processedArgs._[2]} --runas=true', '', 'runas', 1);close();`]
  214. , {
  215. // inherit : true
  216. // , shell: true
  217. env: process.env
  218. , title : `runas`
  219. }
  220. );
  221. })
  222. }
  223. , 'push' : ()=>{
  224. if(!processedArgs._[1]) { console.error('push all not supported. Specify repo name'); return }
  225. // init remote bare from local
  226. // pushandinitremotebare
  227. // https://www.jeffgeerling.com/blogs/jeff-geerling/push-your-git-repositories
  228. // connect to repo server -- net use 172.16.0.27
  229. // cd 172.16.0.27/repos/
  230. // mkdir repo.git
  231. // cd repo.git
  232. // git init --bare
  233. // cd localrepo
  234. // git remote rename origin githubclone
  235. // git remote add origin //172.16.0.27/repos/repo.git
  236. // git push origin master
  237. var repo = processedArgs._[1];
  238. var defaultRepoServer = '//172.16.0.27/repos'
  239. var sequentialTaskShellCommands = [];
  240. if(!existsSync(`Z:/${repo}.git`)){
  241. sequentialTaskShellCommands = [
  242. // ['net', ['use', 'Z:', defaultRepoServer.replace('/','\\')], {
  243. // inherit : true, shell: true
  244. // , env: process.env
  245. // }]
  246. ['pwd', { cwd : 'Z:', inherit : true}]
  247. , ['mkdir', [`${repo}.git`], {
  248. cwd : `Z:`
  249. , inherit : true, shell: true
  250. , env: process.env
  251. }]
  252. , ['pwd', { cwd : `Z:/${repo}.git`, inherit : true}]
  253. , ['git', ['init', '--bare'], { cwd : `Z:/${repo}.git`
  254. , inherit : true, shell: true
  255. , env: process.env
  256. }]
  257. , ['git', ['remote', 'rename', 'origin', 'githubclone'], { cwd : `${repo}`}, (err)=>{
  258. console.log('Ignoring origin rename error : ' + err); return true; //return true to continue.
  259. } ] // PB ; Todo -- new repositories created locally will not have origin. Handle this failure.
  260. , ['git', ['remote', 'add', 'origin', `${defaultRepoServer}/${repo}.git`], { cwd : `${repo}`}]
  261. ]
  262. if(!existsSync(`Z:`)){
  263. sequentialTaskShellCommands.splice(0,0, ['net', ['use', 'Z:', defaultRepoServer.replace(/\//gm,'\\')], {
  264. inherit : true, shell: true
  265. , env: process.env
  266. }])
  267. console.warn('Adding network drive z: for repo server. ' + sequentialTaskShellCommands[0])
  268. // throw 'done'
  269. }
  270. }
  271. sequentialTaskShellCommands.push(['git', ['push', 'origin', 'master'], { cwd : `${repo}`}])
  272. // console.dir(sequentialTaskShellCommands);
  273. var tasks = [];
  274. sequentialTaskShellCommands.forEach(shellcmd => {
  275. // console.log(shellcmd)
  276. tasks.push(()=>{
  277. var p = nodeShellExec.apply(null, shellcmd.slice(0,3)).catch((e)=>{ if(shellcmd[3]) { return shellcmd[3]() } else { console.error(e);} })
  278. return p;
  279. })
  280. })
  281. any(tasks);
  282. }
  283. , 'pull' : (label) => {
  284. var env = Object.assign({}, process.env); // Shallow clone it.
  285. // console.dir(env)
  286. console.log('Running exlr pull : ' + path.dirname(__dirname))
  287. // nodeShellExec('cmd', ['/c', 'setup\\utility\\chess.bat', 'pull'], {
  288. // // nodeShellExec('cmd', ['/c', '..\\setup\\utility\\chess.bat', 'pull'], {
  289. // stdio: ['pipe', process.stdout, process.stderr],
  290. // inherit : true,
  291. // shell: true,
  292. // cwd : path.dirname(__dirname),
  293. // env: env
  294. // })
  295. var performPull = repo => {
  296. if(existsSync(repo)) {
  297. console.log('pulling ' + repo)
  298. nodeShellExec('git', ['pull'], {
  299. inherit : true, shell: true,
  300. cwd : repo
  301. // , env: process.env
  302. , title : `git pull ${repo}`
  303. }).catch((e)=>{ console.error(e) })
  304. }
  305. else {
  306. console.log('cloning ' + repo)
  307. nodeShellExec('git', ['clone', '//172.16.0.27/repos/' + repo + '.git'],
  308. {
  309. inherit : true, shell: true,
  310. env: process.env
  311. , title : `git clone ${'//172.16.0.27/repos/' + repo + '.git'}`
  312. }).catch((e)=>{ console.error(e) })
  313. }
  314. }
  315. if(!processedArgs.runas) gitRepos.forEach(performPull)
  316. return isRunningElevated().then(
  317. ()=> elevatedRunasRepos.forEach(performPull))
  318. .catch(
  319. () => op['runas']()
  320. )
  321. }
  322. , 'npmi' : ()=>{
  323. var tasks = [];
  324. gitRepos.forEach(repo => {
  325. console.log('npm i for ' + repo)
  326. // nodeShellExec('pwd', [], {
  327. // // inherit : true, shell: true
  328. // cwd : repo
  329. // // , env: process.env
  330. // , title : `pwd for ${repo}`
  331. // }).catch((e)=>{ console.error(e) })
  332. nodeShellExec('rm', ['package-lock.json'], {
  333. inherit : true, shell: true
  334. , cwd : repo
  335. , env: process.env
  336. , title : `rm 'package-lock.json' for ${repo}`
  337. }).catch((e)=>{ console.error(e) })
  338. tasks.push(()=>{
  339. var p = nodeShellExec('npm', ['i'], {
  340. inherit : true, shell: true
  341. , cwd : repo
  342. , env: process.env
  343. , title : `npm i for ${repo}`
  344. }).catch((e)=>{ console.error(e) })
  345. return p;
  346. })
  347. })
  348. any(tasks);
  349. }
  350. , 'start' : (label)=>{
  351. console.log('Starting Elixir Server.');
  352. var env = Object.assign({}, process.env); // Shallow clone it.
  353. // console.dir(env)
  354. env.NODE_ENV = label || 'development';
  355. env.DEBUG = 'loopback:connector:' + dbForLabel(label)
  356. nodeShellExec('node', ['--inspect=9228', 'elixir/server.js'], {
  357. // inherit : true,
  358. shell: true, detached: true,
  359. cwd : 'elixir-server',
  360. env: env
  361. })
  362. // nodeShellExec('node', ['--inspect=9226', ' bin/www'], {
  363. // inherit : true,
  364. // shell: true, detached: true,
  365. // cwd : 'qms/server',
  366. // env: env,
  367. // shell : true
  368. // })
  369. nodeShellExec('ember', ['s'], {
  370. // inherit : true,
  371. shell: true, detached: true,
  372. cwd : 'client/',
  373. env: env
  374. })
  375. }
  376. , 'use' : ()=>{
  377. if(!processedArgs.runas){
  378. try {
  379. var runconfig = require('./run.js')
  380. if(processedArgs._[1] && runconfig.use === processedArgs._[1]) {
  381. return;
  382. }
  383. else runconfig.use = processedArgs._[1];
  384. fs.writeFileSync('./run.js', 'module.exports = ' + JSON.stringify(runconfig))
  385. }
  386. catch(e) {
  387. runconfig = { use : processedArgs._[1] };
  388. fs.writeFileSync('./run.js', 'module.exports = ' + JSON.stringify(runconfig))
  389. }
  390. op['runas']()
  391. }
  392. else {
  393. var runconfig = require('../run.js')
  394. console.log('runconfig.use : ' + runconfig.use)
  395. var tasks = [
  396. ()=>{
  397. var p = nodeShellExec('rm', ['config'], {
  398. inherit : true, shell: true
  399. , cwd : repo
  400. , env: process.env
  401. , title : `rm 'package-lock.json' for ${repo}`
  402. }).catch((e)=>{ console.error(e) })
  403. return p;
  404. },
  405. ()=>{
  406. var p = nodeShellExec('rm', ['data'], {
  407. inherit : true, shell: true
  408. , cwd : repo
  409. , env: process.env
  410. , title : `rm 'package-lock.json' for ${repo}`
  411. }).catch((e)=>{ console.error(e) })
  412. return p;
  413. },
  414. ()=>{
  415. var p = nodeShellExec('mklink', ['/D', 'data', runconfig.use + '-data'], {
  416. inherit : true, shell: true
  417. , env: process.env
  418. }).catch((e)=>{ console.error(e) })
  419. return p;
  420. },
  421. ()=>{
  422. var p = nodeShellExec('mklink', ['/D', 'config', runconfig.use + '-config'], {
  423. inherit : true, shell: true
  424. , env: process.env
  425. }).catch((e)=>{ console.error(e) })
  426. return p;
  427. }
  428. ]
  429. any(tasks)
  430. }
  431. // Antibiotic stewardship program.
  432. // 1st use is fine.
  433. // Max vials dispense
  434. // 2nd use Pharmacy needs justification Form.
  435. // Approval after a certain period of time.
  436. }
  437. , 'g' : ()=>{
  438. if(processedArgs.h) {
  439. console.log('elxr g [modelname] => generate a model named [modelname]');
  440. console.log('elxr g => regenerate all known models');
  441. return
  442. }
  443. // var child = nodeShellExec('mkdir', ['-p', label], { inherit : true} );
  444. // console.log('Starting directory: ' + process.cwd());
  445. // try {
  446. // child = child.on('close', () => { process.chdir(label) } );
  447. // console.log('New directory: ' + process.cwd());
  448. // }
  449. // catch (err) {
  450. // console.log('chdir: ' + err);
  451. // }
  452. // child.on('close', function(){
  453. // var options = {
  454. // shell : true
  455. // , inherit : true
  456. // // , cwd : '' + process.cwd
  457. // // , env : process.env
  458. // };
  459. // nodeShellExec('git', ['init'], { inherit : true});
  460. if(0){
  461. // PB : TODO -- Special google chrome profile for tests etc.
  462. nodeShellExec('pwd', { inherit : true});
  463. //$ "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Profile 1" http://localhost:4200/tests/index.html?grep=loopback
  464. nodeShellExec("C:/Program Files (x86)/Google/Chrome/Application/chrome.exe", [
  465. "--profile-directory=Profile 1"
  466. , 'http://localhost:4200/tests/index.html?grep=model convert ember to loopback' + '&filter=none' /*+ '&filter=model convert ember to loopback'*/]);
  467. }
  468. // nodeShellExec('npm', ['init', '-y'], options);
  469. // nodeShellExec('npm', ['init', '-y'], options);
  470. // })
  471. var g = {
  472. 'client' : ()=>{
  473. console.info('Creating new ember client named : ' + processedArgs._[2] ) ;
  474. var step1 = nodeShellExec('cmd', ['/c', 'ember', 'new', processedArgs._[2]], {
  475. stdio: ['pipe', process.stdout, process.stderr],
  476. inherit : true,
  477. shell: true,
  478. cwd : path.dirname(__dirname),
  479. env: env
  480. })
  481. }
  482. }
  483. g[processedArgs._[1]]();
  484. }
  485. }
  486. return op[label] ? op[label]() : op['start'](label);
  487. }
  488. // mysqldump --add-drop-table --no-data -u root -p db_name | grep 'DROP TABLE' ) > drop_all_tables.sql
  489. // mysql -u root -p db_name < drop_all_tables.sql
  490. var mysql = '../xampp/mysql/bin/mysql'
  491. var mysqldump = '../xampp/mysql/bin/mysqldump'
  492. __runcmd(processedArgs.label || processedArgs._[0] || 'h');
  493. // nodeShellExec('git', ['status']);
  494. function nodeShellExec() {
  495. var args = Array.from(arguments);
  496. args[2] ? null : args[2] = {}
  497. args[2].title ? null : args[2].title = `${args[0]} ${args[1]}`
  498. const child = spawn(...arguments);
  499. return new Promise(function(resolve, reject){
  500. var messages = []; // PB : TODO -- Explore stream for Task level aggregation to prevent interleaved messages from multiple tasks...
  501. // use child.stdout.setEncoding('utf8'); if you want text chunks
  502. child.stdout.setEncoding('utf8');
  503. child.stderr.setEncoding('utf8');
  504. child.stdout.on('data', (chunk) => { messages.push(chunk); /*console.log(chunk)*/});
  505. child.on('error', (chunk) => { messages.push(chunk); /*console.error(chunk)*/ });
  506. child.stderr.on('data', (chunk) => { messages.push(chunk); /*console.log(chunk)*/});
  507. // child.stderr.pipe(process.stderr);
  508. child.on('close', (code) => {
  509. console.log([` ${args[2].title} exited with code ${code}`])
  510. // console.log([ messages.join('') ])
  511. process.stdout.write( messages.join('') )
  512. if(code !== 0 ) return reject(code)
  513. resolve(true)
  514. });
  515. });
  516. }