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

4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  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. , 'ember-searchable-select'
  112. , 'loopback-component-jsonapi'
  113. , 'elixir-config'
  114. , 'cihsr-config'
  115. , 'cihsr-data'
  116. , 'elixir-data'
  117. , 'loopback-connector-ds'
  118. , 'chess-server-lib'
  119. , 'setup'
  120. , 'elixir-client-todos'
  121. , 'elixir-client-unlinked'
  122. , 'elixir-client'
  123. , 'ember-service-worker'
  124. , 'ember-service-worker-asset-cache'
  125. , 'ember-service-worker-cache-fallback'
  126. , 'ember-service-worker-index'
  127. , 'ember-sw-client-route'
  128. , 'global-this'
  129. ]
  130. // Repositiories that have symlinks that required elevated priviletes in windows to create symlinks
  131. //
  132. var elevatedRunasRepos = [
  133. 'elixir-server'
  134. , 'cihsr-server'
  135. , 'chess-server'
  136. ]
  137. var env = Object.assign({}, process.env); // Shallow clone it.
  138. var __runcmd = function(label){
  139. var op = {
  140. 'h' : ()=>{ console.log(cli + ' ' + ver + ' ' + help); return '-h' }
  141. , 'upgrade' : ()=>{
  142. console.log('upgrade.......')
  143. var tasks = [
  144. ()=>{
  145. var p = nodeShellExec('npm', ['i', '-g', 'npm-upgrade'], {
  146. inherit : true, shell: true
  147. , env: process.env
  148. }).catch((e)=>{ console.error(e) })
  149. p.position = 1;
  150. console.log('One')
  151. return p;
  152. }
  153. , ()=>{
  154. var p = nodeShellExec('npm', ['cache', 'clean', '-f'], {
  155. inherit : true, shell: true
  156. , env: process.env
  157. }).catch((e)=>{ console.error(e) })
  158. p.position = 2;
  159. console.log('Two')
  160. return p;
  161. }
  162. , ()=>{
  163. var p = nodeShellExec('npm', ['install', '-g', 'n'], {
  164. inherit : true, shell: true
  165. , env: process.env
  166. }).catch((e)=>{ console.error(e) })
  167. p.position = 3;
  168. console.log('Three')
  169. return p;
  170. }
  171. , ()=>{
  172. var p = nodeShellExec('n', ['latest'], {
  173. inherit : true, shell: true
  174. , env: process.env
  175. }).catch((e)=>{ console.error(e) })
  176. p.position = 4;
  177. console.log('Four')
  178. return p;
  179. }
  180. ]
  181. any(tasks)
  182. console.log('.......done')
  183. console.log('Running exlr upgrade in : ' + path.dirname(__dirname))
  184. console.log('Currently only upgrades ember : ' + path.dirname(__dirname));
  185. console.info('Uninstalling existing ember globally') ;
  186. var step1 = nodeShellExec('cmd', ['/c', 'npm', 'uninstall', '-g', 'ember-cli'], {
  187. stdio: ['pipe', process.stdout, process.stderr],
  188. inherit : true,
  189. shell: true,
  190. cwd : path.dirname(__dirname),
  191. env: env
  192. })
  193. step1.on('close', ()=>{
  194. console.info('Installing ember globally') ;
  195. var step2 = nodeShellExec('cmd', ['/c', 'npm', 'install', '-g', 'ember-cli'], {
  196. stdio: ['pipe', process.stdout, process.stderr],
  197. inherit : true,
  198. shell: true,
  199. cwd : path.dirname(__dirname),
  200. env: env
  201. })
  202. step2.on('close', ()=>{
  203. nodeShellExec('cmd', ['/c', 'ember', '--version'], {
  204. stdio: ['pipe', process.stdout, process.stderr],
  205. inherit : true,
  206. shell: true,
  207. cwd : path.dirname(__dirname),
  208. env: env
  209. })
  210. })
  211. })
  212. }
  213. , 'runas' : ()=>{
  214. return isRunningElevated().then(
  215. () => op[ processedArgs.label || processedArgs._[0] || 'h']()
  216. )
  217. .catch(()=>{
  218. console.log('Not Elevated');
  219. console.dir(processedArgs)
  220. console.log('Requesting Elevated Privileges for : ' + `--insptec-brk elxr ${processedArgs._[0]} ${processedArgs._[1]} --runas=true`)
  221. nodeShellExec('MSHTA', [`javascript: var shell = new ActiveXObject('shell.application'); shell.ShellExecute('node', 'elxr ${processedArgs._[0]} ${processedArgs._[1]} --runas=true', '', 'runas', 1);close();`]
  222. , {
  223. // inherit : true
  224. // , shell: true
  225. env: process.env
  226. , title : `runas`
  227. }
  228. );
  229. })
  230. }
  231. , 'push' : ()=>{
  232. if(!processedArgs._[1]) { console.error('push all not supported. Specify repo name'); return }
  233. // init remote bare from local
  234. // pushandinitremotebare
  235. // https://www.jeffgeerling.com/blogs/jeff-geerling/push-your-git-repositories
  236. // connect to repo server -- net use 172.16.0.27
  237. // cd 172.16.0.27/repos/
  238. // mkdir repo.git
  239. // cd repo.git
  240. // git init --bare
  241. // cd localrepo
  242. // git remote rename origin githubclone
  243. // git remote add origin //172.16.0.27/repos/repo.git
  244. // git push origin master
  245. var repo = processedArgs._[1];
  246. var defaultRepoServer = '//172.16.0.27/repos'
  247. var sequentialTaskShellCommands = [];
  248. if(!existsSync(`Z:/${repo}.git`)){
  249. sequentialTaskShellCommands = [
  250. // ['net', ['use', 'Z:', defaultRepoServer.replace('/','\\')], {
  251. // inherit : true, shell: true
  252. // , env: process.env
  253. // }]
  254. ['pwd', { cwd : 'Z:', inherit : true}]
  255. , ['mkdir', [`${repo}.git`], {
  256. cwd : `Z:`
  257. , inherit : true, shell: true
  258. , env: process.env
  259. }]
  260. , ['pwd', { cwd : `Z:/${repo}.git`, inherit : true}]
  261. , ['git', ['init', '--bare'], { cwd : `Z:/${repo}.git`
  262. , inherit : true, shell: true
  263. , env: process.env
  264. }]
  265. , ['git', ['remote', 'rename', 'origin', 'githubclone'], { cwd : `${repo}`}, (err)=>{
  266. console.log('Ignoring origin rename error : ' + err); return true; //return true to continue.
  267. } ] // PB ; Todo -- new repositories created locally will not have origin. Handle this failure.
  268. , ['git', ['remote', 'add', 'origin', `${defaultRepoServer}/${repo}.git`], { cwd : `${repo}`}]
  269. ]
  270. if(!existsSync(`Z:`)){
  271. sequentialTaskShellCommands.splice(0,0, ['net', ['use', 'Z:', defaultRepoServer.replace(/\//gm,'\\')], {
  272. inherit : true, shell: true
  273. , env: process.env
  274. }])
  275. console.warn('Adding network drive z: for repo server. ' + sequentialTaskShellCommands[0])
  276. // throw 'done'
  277. }
  278. }
  279. sequentialTaskShellCommands.push(['git', ['push', 'origin', 'master'], { cwd : `${repo}`}])
  280. // console.dir(sequentialTaskShellCommands);
  281. var tasks = [];
  282. sequentialTaskShellCommands.forEach(shellcmd => {
  283. // console.log(shellcmd)
  284. tasks.push(()=>{
  285. var p = nodeShellExec.apply(null, shellcmd.slice(0,3)).catch((e)=>{ if(shellcmd[3]) { return shellcmd[3]() } else { console.error(e);} })
  286. return p;
  287. })
  288. })
  289. any(tasks);
  290. }
  291. , 'pull' : (label) => {
  292. var env = Object.assign({}, process.env); // Shallow clone it.
  293. // console.dir(env)
  294. console.log('Running exlr pull : ' + path.dirname(__dirname))
  295. // nodeShellExec('cmd', ['/c', 'setup\\utility\\chess.bat', 'pull'], {
  296. // // nodeShellExec('cmd', ['/c', '..\\setup\\utility\\chess.bat', 'pull'], {
  297. // stdio: ['pipe', process.stdout, process.stderr],
  298. // inherit : true,
  299. // shell: true,
  300. // cwd : path.dirname(__dirname),
  301. // env: env
  302. // })
  303. var performPull = repo => {
  304. if(existsSync(repo)) {
  305. console.log('pulling ' + repo)
  306. nodeShellExec('git', ['pull'], {
  307. inherit : true, shell: true,
  308. cwd : repo
  309. // , env: process.env
  310. , title : `git pull ${repo}`
  311. }).catch((e)=>{ console.error(e) })
  312. }
  313. else {
  314. console.log('cloning ' + repo)
  315. nodeShellExec('git', ['clone', '//172.16.0.27/repos/' + repo + '.git'],
  316. {
  317. inherit : true, shell: true,
  318. env: process.env
  319. , title : `git clone ${'//172.16.0.27/repos/' + repo + '.git'}`
  320. }).catch((e)=>{ console.error(e) })
  321. }
  322. }
  323. if(!processedArgs.runas) gitRepos.forEach(performPull)
  324. return isRunningElevated().then(
  325. ()=> elevatedRunasRepos.forEach(performPull))
  326. .catch(
  327. () => op['runas']()
  328. )
  329. }
  330. , 'npmi' : ()=>{
  331. var tasks = [];
  332. gitRepos.forEach(repo => {
  333. console.log('npm i for ' + repo)
  334. // nodeShellExec('pwd', [], {
  335. // // inherit : true, shell: true
  336. // cwd : repo
  337. // // , env: process.env
  338. // , title : `pwd for ${repo}`
  339. // }).catch((e)=>{ console.error(e) })
  340. nodeShellExec('rm', ['package-lock.json'], {
  341. inherit : true, shell: true
  342. , cwd : repo
  343. , env: process.env
  344. , title : `rm 'package-lock.json' for ${repo}`
  345. }).catch((e)=>{ console.error(e) })
  346. tasks.push(()=>{
  347. var p = nodeShellExec('npm', ['i'], {
  348. inherit : true, shell: true
  349. , cwd : repo
  350. , env: process.env
  351. , title : `npm i for ${repo}`
  352. }).catch((e)=>{ console.error(e) })
  353. return p;
  354. })
  355. })
  356. any(tasks);
  357. }
  358. , 'start' : (label)=>{
  359. console.log('Starting Elixir Server.');
  360. var env = Object.assign({}, process.env); // Shallow clone it.
  361. // console.dir(env)
  362. env.NODE_ENV = label || 'development';
  363. env.DEBUG = 'loopback:connector:' + dbForLabel(label)
  364. nodeShellExec('node', ['--inspect=9228', 'elixir/server.js'], {
  365. // inherit : true,
  366. shell: true, detached: true,
  367. cwd : 'elixir-server',
  368. env: env
  369. })
  370. // nodeShellExec('node', ['--inspect=9226', ' bin/www'], {
  371. // inherit : true,
  372. // shell: true, detached: true,
  373. // cwd : 'qms/server',
  374. // env: env,
  375. // shell : true
  376. // })
  377. nodeShellExec('ember', ['s'], {
  378. // inherit : true,
  379. shell: true, detached: true,
  380. cwd : 'client/',
  381. env: env
  382. })
  383. }
  384. , 'use' : ()=>{
  385. if(!processedArgs.runas){
  386. try {
  387. var runconfig = require('./run.js')
  388. if(processedArgs._[1] && runconfig.use === processedArgs._[1]) {
  389. return;
  390. }
  391. else runconfig.use = processedArgs._[1];
  392. fs.writeFileSync('./run.js', 'module.exports = ' + JSON.stringify(runconfig))
  393. }
  394. catch(e) {
  395. runconfig = { use : processedArgs._[1] };
  396. fs.writeFileSync('./run.js', 'module.exports = ' + JSON.stringify(runconfig))
  397. }
  398. op['runas']()
  399. }
  400. else {
  401. var runconfig = require('../run.js')
  402. console.log('runconfig.use : ' + runconfig.use)
  403. var tasks = [
  404. ()=>{
  405. if(existsSync('config')) {
  406. var p = nodeShellExec('rmdir', ['config'], {
  407. inherit : true, shell: true
  408. , env: process.env
  409. , title : `rmdir config`
  410. }).catch((e)=>{ console.error(e) })
  411. return p;
  412. }
  413. else return Promise.resolve(true);
  414. },
  415. ()=>{
  416. if(existsSync('data')) {
  417. var p = nodeShellExec('rmdir', ['data'], {
  418. inherit : true, shell: true
  419. , env: process.env
  420. , title : `rm data`
  421. }).catch((e)=>{ console.error(e) })
  422. return p;
  423. }
  424. else return Promise.resolve(true);
  425. },
  426. ()=>{
  427. var p = nodeShellExec('mklink', ['/D', 'data', runconfig.use + '-data'], {
  428. inherit : true, shell: true
  429. , env: process.env
  430. }).catch((e)=>{ console.error(e) })
  431. return p;
  432. },
  433. ()=>{
  434. // Use junctions to avoid npm package issues
  435. var p = nodeShellExec('mklink', ['/J', 'config', runconfig.use + '-config'], {
  436. inherit : true, shell: true
  437. , env: process.env
  438. }).catch((e)=>{ console.error(e) })
  439. return p;
  440. }
  441. ]
  442. any(tasks)
  443. }
  444. // Antibiotic stewardship program.
  445. // 1st use is fine.
  446. // Max vials dispense
  447. // 2nd use Pharmacy needs justification Form.
  448. // Approval after a certain period of time.
  449. }
  450. , 'g' : ()=>{
  451. if(processedArgs.h) {
  452. console.log('elxr g [modelname] => generate a model named [modelname]');
  453. console.log('elxr g => regenerate all known models');
  454. return
  455. }
  456. // var child = nodeShellExec('mkdir', ['-p', label], { inherit : true} );
  457. // console.log('Starting directory: ' + process.cwd());
  458. // try {
  459. // child = child.on('close', () => { process.chdir(label) } );
  460. // console.log('New directory: ' + process.cwd());
  461. // }
  462. // catch (err) {
  463. // console.log('chdir: ' + err);
  464. // }
  465. // child.on('close', function(){
  466. // var options = {
  467. // shell : true
  468. // , inherit : true
  469. // // , cwd : '' + process.cwd
  470. // // , env : process.env
  471. // };
  472. // nodeShellExec('git', ['init'], { inherit : true});
  473. if(0){
  474. // PB : TODO -- Special google chrome profile for tests etc.
  475. nodeShellExec('pwd', { inherit : true});
  476. //$ "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Profile 1" http://localhost:4200/tests/index.html?grep=loopback
  477. nodeShellExec("C:/Program Files (x86)/Google/Chrome/Application/chrome.exe", [
  478. "--profile-directory=Profile 1"
  479. , 'http://localhost:4200/tests/index.html?grep=model convert ember to loopback' + '&filter=none' /*+ '&filter=model convert ember to loopback'*/]);
  480. }
  481. // nodeShellExec('npm', ['init', '-y'], options);
  482. // nodeShellExec('npm', ['init', '-y'], options);
  483. // })
  484. var g = {
  485. 'client' : ()=>{
  486. console.info('Creating new ember client named : ' + processedArgs._[2] ) ;
  487. var step1 = nodeShellExec('cmd', ['/c', 'ember', 'new', processedArgs._[2]], {
  488. stdio: ['pipe', process.stdout, process.stderr],
  489. inherit : true,
  490. shell: true,
  491. cwd : path.dirname(__dirname),
  492. env: env
  493. })
  494. }
  495. }
  496. g[processedArgs._[1]]();
  497. }
  498. }
  499. return op[label] ? op[label]() : op['start'](label);
  500. }
  501. // mysqldump --add-drop-table --no-data -u root -p db_name | grep 'DROP TABLE' ) > drop_all_tables.sql
  502. // mysql -u root -p db_name < drop_all_tables.sql
  503. var mysql = '../xampp/mysql/bin/mysql'
  504. var mysqldump = '../xampp/mysql/bin/mysqldump'
  505. __runcmd(processedArgs.label || processedArgs._[0] || 'h');
  506. // nodeShellExec('git', ['status']);
  507. function nodeShellExec() {
  508. var args = Array.from(arguments);
  509. args[2] ? null : args[2] = {}
  510. args[2].title ? null : args[2].title = `${args[0]} ${args[1]}`
  511. const child = spawn(...arguments);
  512. return new Promise(function(resolve, reject){
  513. var messages = []; // PB : TODO -- Explore stream for Task level aggregation to prevent interleaved messages from multiple tasks...
  514. // use child.stdout.setEncoding('utf8'); if you want text chunks
  515. child.stdout.setEncoding('utf8');
  516. child.stderr.setEncoding('utf8');
  517. child.stdout.on('data', (chunk) => { messages.push(chunk); /*console.log(chunk)*/});
  518. child.on('error', (chunk) => { messages.push(chunk); /*console.error(chunk)*/ });
  519. child.stderr.on('data', (chunk) => { messages.push(chunk); /*console.log(chunk)*/});
  520. // child.stderr.pipe(process.stderr);
  521. child.on('close', (code) => {
  522. console.log([` ${args[2].title} exited with code ${code}`])
  523. // console.log([ messages.join('') ])
  524. process.stdout.write( messages.join('') )
  525. if(code !== 0 ) return reject(code)
  526. resolve(true)
  527. });
  528. });
  529. }