deploy.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /**
  2. * Copyright (c) 2019-2023 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. */
  6. const git = require('simple-git');
  7. const path = require('path');
  8. const fs = require("fs");
  9. const fse = require("fs-extra");
  10. const remoteUrl = "https://github.com/molstar/molstar.github.io.git";
  11. const buildDir = path.resolve(__dirname, '../build/');
  12. const deployDir = path.resolve(buildDir, 'deploy/');
  13. const localPath = path.resolve(deployDir, 'molstar.github.io/');
  14. const analyticsTag = /<!-- __MOLSTAR_ANALYTICS__ -->/g;
  15. const analyticsCode = `<!-- Cloudflare Web Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "c414cbae2d284ea995171a81e4a3e721"}'></script><!-- End Cloudflare Web Analytics --><iframe src="https://web3dsurvey.com/collector-iframe.html" style="width: 1px; height: 1px;"></iframe>`;
  16. function log(command, stdout, stderr) {
  17. if (command) {
  18. console.log('\n###', command);
  19. stdout.pipe(process.stdout);
  20. stderr.pipe(process.stderr);
  21. }
  22. }
  23. function addAnalytics(path) {
  24. const data = fs.readFileSync(path, 'utf8');
  25. const result = data.replace(analyticsTag, analyticsCode);
  26. fs.writeFileSync(path, result, 'utf8');
  27. }
  28. function copyViewer() {
  29. console.log('\n###', 'copy viewer files');
  30. const viewerBuildPath = path.resolve(buildDir, '../build/viewer/');
  31. const viewerDeployPath = path.resolve(localPath, 'viewer/');
  32. fse.copySync(viewerBuildPath, viewerDeployPath, { overwrite: true });
  33. addAnalytics(path.resolve(viewerDeployPath, 'index.html'));
  34. }
  35. function copyDemos() {
  36. console.log('\n###', 'copy demos files');
  37. const lightingBuildPath = path.resolve(buildDir, '../build/examples/lighting/');
  38. const lightingDeployPath = path.resolve(localPath, 'demos/lighting/');
  39. fse.copySync(lightingBuildPath, lightingDeployPath, { overwrite: true });
  40. addAnalytics(path.resolve(lightingDeployPath, 'index.html'));
  41. const orbitalsBuildPath = path.resolve(buildDir, '../build/examples/alpha-orbitals/');
  42. const orbitalsDeployPath = path.resolve(localPath, 'demos/alpha-orbitals/');
  43. fse.copySync(orbitalsBuildPath, orbitalsDeployPath, { overwrite: true });
  44. addAnalytics(path.resolve(orbitalsDeployPath, 'index.html'));
  45. }
  46. function copyFiles() {
  47. copyViewer();
  48. copyDemos();
  49. }
  50. if (!fs.existsSync(localPath)) {
  51. console.log('\n###', 'create localPath');
  52. fs.mkdirSync(localPath, { recursive: true });
  53. }
  54. process.chdir(localPath);
  55. if (!fs.existsSync(path.resolve(localPath, '.git/'))) {
  56. console.log('\n###', 'clone repository');
  57. git()
  58. .outputHandler(log)
  59. .clone(remoteUrl, localPath)
  60. .fetch(['--all'])
  61. .exec(copyFiles)
  62. .add(['-A'])
  63. .commit('updated viewer & demos')
  64. .push();
  65. } else {
  66. console.log('\n###', 'update repository');
  67. git()
  68. .outputHandler(log)
  69. .fetch(['--all'])
  70. .reset(['--hard', 'origin/master'])
  71. .exec(copyFiles)
  72. .add(['-A'])
  73. .commit('updated viewer & demos')
  74. .push();
  75. }