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.

6 年之前
4 年之前
4 年之前
6 年之前
6 年之前
4 年之前
6 年之前
4 年之前
4 年之前
4 年之前
6 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
4 年之前
6 年之前
4 年之前
6 年之前
4 年之前
6 年之前
6 年之前
6 年之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  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. , 'elixir-client-todos'
  123. , 'elixir-client-unlinked'
  124. , 'ember-service-worker.git'
  125. , 'ember-service-worker-asset-cache.git'
  126. , 'ember-service-worker-cache-fallback.git'
  127. , 'ember-service-worker-index.git'
  128. , 'ember-sw-client-route.git'
  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. , 'pull' : (label) => {
  232. var env = Object.assign({}, process.env); // Shallow clone it.
  233. // console.dir(env)
  234. console.log('Running exlr pull : ' + path.dirname(__dirname))
  235. // nodeShellExec('cmd', ['/c', 'setup\\utility\\chess.bat', 'pull'], {
  236. // // nodeShellExec('cmd', ['/c', '..\\setup\\utility\\chess.bat', 'pull'], {
  237. // stdio: ['pipe', process.stdout, process.stderr],
  238. // inherit : true,
  239. // shell: true,
  240. // cwd : path.dirname(__dirname),
  241. // env: env
  242. // })
  243. var performPull = repo => {
  244. if(existsSync(repo)) {
  245. console.log('pulling ' + repo)
  246. nodeShellExec('git', ['pull'], {
  247. inherit : true, shell: true,
  248. cwd : repo
  249. // , env: process.env
  250. , title : `git pull ${repo}`
  251. }).catch((e)=>{ console.error(e) })
  252. }
  253. else {
  254. console.log('cloning ' + repo)
  255. nodeShellExec('git', ['clone', '//172.16.0.27/repos/' + repo + '.git'],
  256. {
  257. inherit : true, shell: true,
  258. env: process.env
  259. , title : `git clone ${'//172.16.0.27/repos/' + repo + '.git'}`
  260. }).catch((e)=>{ console.error(e) })
  261. }
  262. }
  263. if(!processedArgs.runas) gitRepos.forEach(performPull)
  264. return isRunningElevated().then(
  265. ()=> elevatedRunasRepos.forEach(performPull))
  266. .catch(
  267. () => op['runas']()
  268. )
  269. }
  270. , 'npmi' : ()=>{
  271. var tasks = [];
  272. gitRepos.forEach(repo => {
  273. console.log('npm i for ' + repo)
  274. // nodeShellExec('pwd', [], {
  275. // // inherit : true, shell: true
  276. // cwd : repo
  277. // // , env: process.env
  278. // , title : `pwd for ${repo}`
  279. // }).catch((e)=>{ console.error(e) })
  280. nodeShellExec('rm', ['package-lock.json'], {
  281. inherit : true, shell: true
  282. , cwd : repo
  283. , env: process.env
  284. , title : `rm 'package-lock.json' for ${repo}`
  285. }).catch((e)=>{ console.error(e) })
  286. tasks.push(()=>{
  287. var p = nodeShellExec('npm', ['i'], {
  288. inherit : true, shell: true
  289. , cwd : repo
  290. , env: process.env
  291. , title : `npm i for ${repo}`
  292. }).catch((e)=>{ console.error(e) })
  293. return p;
  294. })
  295. })
  296. any(tasks);
  297. }
  298. , 'start' : (label)=>{
  299. console.log('Starting Elixir Server.');
  300. var env = Object.assign({}, process.env); // Shallow clone it.
  301. // console.dir(env)
  302. env.NODE_ENV = label || 'development';
  303. env.DEBUG = 'loopback:connector:' + dbForLabel(label)
  304. nodeShellExec('node', ['--inspect=9228', 'elixir/server.js'], {
  305. // inherit : true,
  306. shell: true, detached: true,
  307. cwd : 'elixir-server',
  308. env: env
  309. })
  310. // nodeShellExec('node', ['--inspect=9226', ' bin/www'], {
  311. // inherit : true,
  312. // shell: true, detached: true,
  313. // cwd : 'qms/server',
  314. // env: env,
  315. // shell : true
  316. // })
  317. nodeShellExec('ember', ['s'], {
  318. // inherit : true,
  319. shell: true, detached: true,
  320. cwd : 'client/',
  321. env: env
  322. })
  323. }
  324. , 'use' : ()=>{
  325. if(!processedArgs.runas){
  326. try {
  327. var runconfig = require('./run.js')
  328. if(processedArgs._[1] && runconfig.use === processedArgs._[1]) {
  329. return;
  330. }
  331. else runconfig.use = processedArgs._[1];
  332. fs.writeFileSync('./run.js', 'module.exports = ' + JSON.stringify(runconfig))
  333. }
  334. catch(e) {
  335. runconfig = { use : processedArgs._[1] };
  336. fs.writeFileSync('./run.js', 'module.exports = ' + JSON.stringify(runconfig))
  337. }
  338. op['runas']()
  339. }
  340. else {
  341. var runconfig = require('../run.js')
  342. console.log('runconfig.use : ' + runconfig.use)
  343. var tasks = [
  344. ()=>{
  345. if(existsSync('config')) {
  346. var p = nodeShellExec('rmdir', ['config'], {
  347. inherit : true, shell: true
  348. , env: process.env
  349. , title : `rmdir config`
  350. }).catch((e)=>{ console.error(e) })
  351. return p;
  352. }
  353. else return Promise.resolve(true);
  354. },
  355. ()=>{
  356. if(existsSync('data')) {
  357. var p = nodeShellExec('rmdir', ['data'], {
  358. inherit : true, shell: true
  359. , env: process.env
  360. , title : `rm data`
  361. }).catch((e)=>{ console.error(e) })
  362. return p;
  363. }
  364. else return Promise.resolve(true);
  365. },
  366. ()=>{
  367. var p = nodeShellExec('mklink', ['/D', 'data', runconfig.use + '-data'], {
  368. inherit : true, shell: true
  369. , env: process.env
  370. }).catch((e)=>{ console.error(e) })
  371. return p;
  372. },
  373. ()=>{
  374. // Use junctions to avoid npm package issues
  375. var p = nodeShellExec('mklink', ['/J', 'config', runconfig.use + '-config'], {
  376. inherit : true, shell: true
  377. , env: process.env
  378. }).catch((e)=>{ console.error(e) })
  379. return p;
  380. }
  381. ]
  382. any(tasks)
  383. }
  384. // Antibiotic stewardship program.
  385. // 1st use is fine.
  386. // Max vials dispense
  387. // 2nd use Pharmacy needs justification Form.
  388. // Approval after a certain period of time.
  389. }
  390. , 'g' : ()=>{
  391. if(processedArgs.h) {
  392. console.log('elxr g [modelname] => generate a model named [modelname]');
  393. console.log('elxr g => regenerate all known models');
  394. return
  395. }
  396. // var child = nodeShellExec('mkdir', ['-p', label], { inherit : true} );
  397. // console.log('Starting directory: ' + process.cwd());
  398. // try {
  399. // child = child.on('close', () => { process.chdir(label) } );
  400. // console.log('New directory: ' + process.cwd());
  401. // }
  402. // catch (err) {
  403. // console.log('chdir: ' + err);
  404. // }
  405. // child.on('close', function(){
  406. // var options = {
  407. // shell : true
  408. // , inherit : true
  409. // // , cwd : '' + process.cwd
  410. // // , env : process.env
  411. // };
  412. // nodeShellExec('git', ['init'], { inherit : true});
  413. if(0){
  414. // PB : TODO -- Special google chrome profile for tests etc.
  415. nodeShellExec('pwd', { inherit : true});
  416. //$ "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --profile-directory="Profile 1" http://localhost:4200/tests/index.html?grep=loopback
  417. nodeShellExec("C:/Program Files (x86)/Google/Chrome/Application/chrome.exe", [
  418. "--profile-directory=Profile 1"
  419. , 'http://localhost:4200/tests/index.html?grep=model convert ember to loopback' + '&filter=none' /*+ '&filter=model convert ember to loopback'*/]);
  420. }
  421. // nodeShellExec('npm', ['init', '-y'], options);
  422. // nodeShellExec('npm', ['init', '-y'], options);
  423. // })
  424. var g = {
  425. 'client' : ()=>{
  426. console.info('Creating new ember client named : ' + processedArgs._[2] ) ;
  427. var step1 = nodeShellExec('cmd', ['/c', 'ember', 'new', processedArgs._[2]], {
  428. stdio: ['pipe', process.stdout, process.stderr],
  429. inherit : true,
  430. shell: true,
  431. cwd : path.dirname(__dirname),
  432. env: env
  433. })
  434. }
  435. }
  436. g[processedArgs._[1]]();
  437. }
  438. }
  439. return op[label] ? op[label]() : op['start'](label);
  440. }
  441. // mysqldump --add-drop-table --no-data -u root -p db_name | grep 'DROP TABLE' ) > drop_all_tables.sql
  442. // mysql -u root -p db_name < drop_all_tables.sql
  443. var mysql = '../xampp/mysql/bin/mysql'
  444. var mysqldump = '../xampp/mysql/bin/mysqldump'
  445. __runcmd(processedArgs.label || processedArgs._[0] || 'h');
  446. // nodeShellExec('git', ['status']);
  447. function nodeShellExec() {
  448. var args = Array.from(arguments);
  449. const child = spawn(...arguments);
  450. return new Promise(function(resolve, reject){
  451. var messages = []; // PB : TODO -- Explore stream for Task level aggregation to prevent interleaved messages from multiple tasks...
  452. // use child.stdout.setEncoding('utf8'); if you want text chunks
  453. child.stdout.setEncoding('utf8');
  454. child.stderr.setEncoding('utf8');
  455. child.stdout.on('data', (chunk) => { messages.push(chunk); /*console.log(chunk)*/});
  456. child.on('error', (chunk) => { messages.push(chunk); /*console.error(chunk)*/ });
  457. child.stderr.on('data', (chunk) => { messages.push(chunk); /*console.log(chunk)*/});
  458. // child.stderr.pipe(process.stderr);
  459. child.on('close', (code) => {
  460. console.log([` ${args[2].title} exited with code ${code}`])
  461. // console.log([ messages.join('') ])
  462. process.stdout.write( messages.join('') )
  463. if(code !== 0 ) return reject(code)
  464. resolve(true)
  465. });
  466. });
  467. }