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

6 yıl önce
4 yıl önce
5 yıl önce
6 yıl önce
4 yıl önce
4 yıl önce
6 yıl önce
5 yıl önce
6 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
6 yıl önce
5 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
5 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
5 yıl önce
5 yıl önce
4 yıl önce
4 yıl önce
5 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
4 yıl önce
5 yıl önce
4 yıl önce
5 yıl önce
4 yıl önce
5 yıl önce
4 yıl önce
5 yıl önce
6 yıl önce
5 yıl önce
6 yıl önce
5 yıl önce
6 yıl önce
6 yıl önce
6 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  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}`}] // PB ; Todo -- new repositories created locally will not have origin. Handle this failure.
  258. , ['git', ['remote', 'add', 'origin', `${defaultRepoServer}/${repo}.git`], { cwd : `${repo}`}]
  259. ]
  260. if(!existsSync(`Z:`)){
  261. sequentialTaskShellCommands.splice(0,0, ['net', ['use', 'Z:', defaultRepoServer.replace(/\//gm,'\\')], {
  262. inherit : true, shell: true
  263. , env: process.env
  264. }])
  265. console.warn('Adding network drive z: for repo server. ' + sequentialTaskShellCommands[0])
  266. // throw 'done'
  267. }
  268. }
  269. sequentialTaskShellCommands.push(['git', ['push', 'origin', 'master'], { cwd : `${repo}`}])
  270. // console.dir(sequentialTaskShellCommands);
  271. var tasks = [];
  272. sequentialTaskShellCommands.forEach(shellcmd => {
  273. // console.log(shellcmd)
  274. tasks.push(()=>{
  275. var p = nodeShellExec.apply(null, shellcmd).catch((e)=>{ console.error(e) })
  276. return p;
  277. })
  278. })
  279. any(tasks);
  280. }
  281. , 'pull' : (label) => {
  282. var env = Object.assign({}, process.env); // Shallow clone it.
  283. // console.dir(env)
  284. console.log('Running exlr pull : ' + path.dirname(__dirname))
  285. // nodeShellExec('cmd', ['/c', 'setup\\utility\\chess.bat', 'pull'], {
  286. // // nodeShellExec('cmd', ['/c', '..\\setup\\utility\\chess.bat', 'pull'], {
  287. // stdio: ['pipe', process.stdout, process.stderr],
  288. // inherit : true,
  289. // shell: true,
  290. // cwd : path.dirname(__dirname),
  291. // env: env
  292. // })
  293. var performPull = repo => {
  294. if(existsSync(repo)) {
  295. console.log('pulling ' + repo)
  296. nodeShellExec('git', ['pull'], {
  297. inherit : true, shell: true,
  298. cwd : repo
  299. // , env: process.env
  300. , title : `git pull ${repo}`
  301. }).catch((e)=>{ console.error(e) })
  302. }
  303. else {
  304. console.log('cloning ' + repo)
  305. nodeShellExec('git', ['clone', '//172.16.0.27/repos/' + repo + '.git'],
  306. {
  307. inherit : true, shell: true,
  308. env: process.env
  309. , title : `git clone ${'//172.16.0.27/repos/' + repo + '.git'}`
  310. }).catch((e)=>{ console.error(e) })
  311. }
  312. }
  313. if(!processedArgs.runas) gitRepos.forEach(performPull)
  314. return isRunningElevated().then(
  315. ()=> elevatedRunasRepos.forEach(performPull))
  316. .catch(
  317. () => op['runas']()
  318. )
  319. }
  320. , 'npmi' : ()=>{
  321. var tasks = [];
  322. gitRepos.forEach(repo => {
  323. console.log('npm i for ' + repo)
  324. // nodeShellExec('pwd', [], {
  325. // // inherit : true, shell: true
  326. // cwd : repo
  327. // // , env: process.env
  328. // , title : `pwd for ${repo}`
  329. // }).catch((e)=>{ console.error(e) })
  330. nodeShellExec('rm', ['package-lock.json'], {
  331. inherit : true, shell: true
  332. , cwd : repo
  333. , env: process.env
  334. , title : `rm 'package-lock.json' for ${repo}`
  335. }).catch((e)=>{ console.error(e) })
  336. tasks.push(()=>{
  337. var p = nodeShellExec('npm', ['i'], {
  338. inherit : true, shell: true
  339. , cwd : repo
  340. , env: process.env
  341. , title : `npm i for ${repo}`
  342. }).catch((e)=>{ console.error(e) })
  343. return p;
  344. })
  345. })
  346. any(tasks);
  347. }
  348. , 'start' : (label)=>{
  349. console.log('Starting Elixir Server.');
  350. var env = Object.assign({}, process.env); // Shallow clone it.
  351. // console.dir(env)
  352. env.NODE_ENV = label || 'development';
  353. env.DEBUG = 'loopback:connector:' + dbForLabel(label)
  354. nodeShellExec('node', ['--inspect=9228', 'elixir/server.js'], {
  355. // inherit : true,
  356. shell: true, detached: true,
  357. cwd : 'elixir-server',
  358. env: env
  359. })
  360. // nodeShellExec('node', ['--inspect=9226', ' bin/www'], {
  361. // inherit : true,
  362. // shell: true, detached: true,
  363. // cwd : 'qms/server',
  364. // env: env,
  365. // shell : true
  366. // })
  367. nodeShellExec('ember', ['s'], {
  368. // inherit : true,
  369. shell: true, detached: true,
  370. cwd : 'client/',
  371. env: env
  372. })
  373. }
  374. , 'use' : ()=>{
  375. if(!processedArgs.runas){
  376. try {
  377. var runconfig = require('./run.js')
  378. if(processedArgs._[1] && runconfig.use === processedArgs._[1]) {
  379. return;
  380. }
  381. else runconfig.use = processedArgs._[1];
  382. fs.writeFileSync('./run.js', 'module.exports = ' + JSON.stringify(runconfig))
  383. }
  384. catch(e) {
  385. runconfig = { use : processedArgs._[1] };
  386. fs.writeFileSync('./run.js', 'module.exports = ' + JSON.stringify(runconfig))
  387. }
  388. op['runas']()
  389. }
  390. else {
  391. var runconfig = require('../run.js')
  392. console.log('runconfig.use : ' + runconfig.use)
  393. var tasks = [
  394. ()=>{
  395. var p = nodeShellExec('rm', ['config'], {
  396. inherit : true, shell: true
  397. , cwd : repo
  398. , env: process.env
  399. , title : `rm 'package-lock.json' for ${repo}`
  400. }).catch((e)=>{ console.error(e) })
  401. return p;
  402. },
  403. ()=>{
  404. var p = nodeShellExec('rm', ['data'], {
  405. inherit : true, shell: true
  406. , cwd : repo
  407. , env: process.env
  408. , title : `rm 'package-lock.json' for ${repo}`
  409. }).catch((e)=>{ console.error(e) })
  410. return p;
  411. },
  412. ()=>{
  413. var p = nodeShellExec('mklink', ['/D', 'data', runconfig.use + '-data'], {
  414. inherit : true, shell: true
  415. , env: process.env
  416. }).catch((e)=>{ console.error(e) })
  417. return p;
  418. },
  419. ()=>{
  420. var p = nodeShellExec('mklink', ['/D', 'config', runconfig.use + '-config'], {
  421. inherit : true, shell: true
  422. , env: process.env
  423. }).catch((e)=>{ console.error(e) })
  424. return p;
  425. }
  426. ]
  427. any(tasks)
  428. }
  429. // Antibiotic stewardship program.
  430. // 1st use is fine.
  431. // Max vials dispense
  432. // 2nd use Pharmacy needs justification Form.
  433. // Approval after a certain period of time.
  434. }
  435. , 'g' : ()=>{
  436. if(processedArgs.h) {
  437. console.log('elxr g [modelname] => generate a model named [modelname]');
  438. console.log('elxr g => regenerate all known models');
  439. return
  440. }
  441. // var child = nodeShellExec('mkdir', ['-p', label], { inherit : true} );
  442. // console.log('Starting directory: ' + process.cwd());
  443. // try {
  444. // child = child.on('close', () => { process.chdir(label) } );
  445. // console.log('New directory: ' + process.cwd());
  446. // }
  447. // catch (err) {
  448. // console.log('chdir: ' + err);
  449. // }
  450. // child.on('close', function(){
  451. // var options = {
  452. // shell : true
  453. // , inherit : true
  454. // // , cwd : '' + process.cwd
  455. // // , env : process.env
  456. // };
  457. // nodeShellExec('git', ['init'], { inherit : true});
  458. if(0){
  459. // PB : TODO -- Special google chrome profile for tests etc.
  460. nodeShellExec('pwd', { inherit : true});
  461. //$ "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Profile 1" http://localhost:4200/tests/index.html?grep=loopback
  462. nodeShellExec("C:/Program Files (x86)/Google/Chrome/Application/chrome.exe", [
  463. "--profile-directory=Profile 1"
  464. , 'http://localhost:4200/tests/index.html?grep=model convert ember to loopback' + '&filter=none' /*+ '&filter=model convert ember to loopback'*/]);
  465. }
  466. // nodeShellExec('npm', ['init', '-y'], options);
  467. // nodeShellExec('npm', ['init', '-y'], options);
  468. // })
  469. var g = {
  470. 'client' : ()=>{
  471. console.info('Creating new ember client named : ' + processedArgs._[2] ) ;
  472. var step1 = nodeShellExec('cmd', ['/c', 'ember', 'new', processedArgs._[2]], {
  473. stdio: ['pipe', process.stdout, process.stderr],
  474. inherit : true,
  475. shell: true,
  476. cwd : path.dirname(__dirname),
  477. env: env
  478. })
  479. }
  480. }
  481. g[processedArgs._[1]]();
  482. }
  483. }
  484. return op[label] ? op[label]() : op['start'](label);
  485. }
  486. // mysqldump --add-drop-table --no-data -u root -p db_name | grep 'DROP TABLE' ) > drop_all_tables.sql
  487. // mysql -u root -p db_name < drop_all_tables.sql
  488. var mysql = '../xampp/mysql/bin/mysql'
  489. var mysqldump = '../xampp/mysql/bin/mysqldump'
  490. __runcmd(processedArgs.label || processedArgs._[0] || 'h');
  491. // nodeShellExec('git', ['status']);
  492. function nodeShellExec() {
  493. var args = Array.from(arguments);
  494. args[2] ? null : args[2] = {}
  495. args[2].title ? null : args[2].title = `${args[0]} ${args[1]}`
  496. const child = spawn(...arguments);
  497. return new Promise(function(resolve, reject){
  498. var messages = []; // PB : TODO -- Explore stream for Task level aggregation to prevent interleaved messages from multiple tasks...
  499. // use child.stdout.setEncoding('utf8'); if you want text chunks
  500. child.stdout.setEncoding('utf8');
  501. child.stderr.setEncoding('utf8');
  502. child.stdout.on('data', (chunk) => { messages.push(chunk); /*console.log(chunk)*/});
  503. child.on('error', (chunk) => { messages.push(chunk); /*console.error(chunk)*/ });
  504. child.stderr.on('data', (chunk) => { messages.push(chunk); /*console.log(chunk)*/});
  505. // child.stderr.pipe(process.stderr);
  506. child.on('close', (code) => {
  507. console.log([` ${args[2].title} exited with code ${code}`])
  508. // console.log([ messages.join('') ])
  509. process.stdout.write( messages.join('') )
  510. if(code !== 0 ) return reject(code)
  511. resolve(true)
  512. });
  513. });
  514. }