Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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