index.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. const { fileForEach, readFile, writeFile } = require('@jiaminghi/fs')
  2. const Client = require('ftp')
  3. const print = require('./plugin/print')
  4. const { emptyDir, put, mkDir } = require('./plugin/ftp')
  5. const getNodeParams = require('./plugin/nodeParams')
  6. let config = null
  7. try {
  8. config = require('./config')
  9. } catch (err) {
  10. void 0
  11. }
  12. const DIST_PATH = './docs/.vuepress/dist'
  13. const ftp = new Client()
  14. ftp.on('ready', async foo => {
  15. print.tip('FTP connected!')
  16. const isEmpty = await emptyDir(ftp, '/', ['demo'])
  17. if (!isEmpty) {
  18. print.error('Exception in emptyDir!')
  19. return false
  20. }
  21. let status = true
  22. await fileForEach(DIST_PATH, async src => {
  23. const destPath = '/' + src.split('dist/')[1]
  24. const destDir = destPath.split('/').slice(0, -1).join('/')
  25. await mkDir(ftp, destDir, true)
  26. print.tip('Upload: ' + destPath)
  27. if (!await put(ftp, src, destPath)) {
  28. status = false
  29. print.error('Exception in upload ' + destPath)
  30. }
  31. })
  32. if (status) {
  33. print.yellow('-------------------------------------')
  34. print.success(' Automatic Deployment Success! ')
  35. print.yellow('-------------------------------------')
  36. }
  37. ftp.destroy()
  38. })
  39. ftp.on('greeting', foo => {
  40. print.tip('FTP greeting')
  41. })
  42. ftp.on('close', foo => {
  43. print.tip('FTP close')
  44. })
  45. ftp.on('end', foo => {
  46. print.tip('FTP end')
  47. })
  48. ftp.on('error', foo => {
  49. print.tip('FTP error')
  50. })
  51. const GrowingIO_SDK = `
  52. <!-- GrowingIO Analytics code version 2.1 -->
  53. <!-- Copyright 2015-2018 GrowingIO, Inc. More info available at http://www.growingio.com -->
  54. <script type='text/javascript'>
  55. !function(e,t,n,g,i){e[i]=e[i]||function(){(e[i].q=e[i].q||[]).push(arguments)},n=t.createElement("script"),tag=t.getElementsByTagName("script")[0],n.async=1,n.src=('https:'==document.location.protocol?'https://':'http://')+g,tag.parentNode.insertBefore(n,tag)}(window,document,"script","assets.giocdn.com/2.1/gio.js","gio");
  56. gio('init','8c2b1ac53bbd18d5', {});
  57. gio('send');
  58. </script>
  59. <!-- End GrowingIO Analytics code version: 2.1 -->
  60. `
  61. async function addGrowingIOSDK () {
  62. const indexPagePath = DIST_PATH + '/index.html'
  63. let indexPage = await readFile(indexPagePath)
  64. if (!indexPage) return false
  65. if (indexPage.indexOf(GrowingIO_SDK) !== -1) return true
  66. const addedSDKHead = indexPage.match(/<head>(\s|\S)*<\/head>/)[0]
  67. .replace('</head>', `${GrowingIO_SDK}\n </head>`)
  68. indexPage = indexPage.replace(/<head>(\s|\S)*<\/head>/, addedSDKHead)
  69. return writeFile(indexPagePath, indexPage)
  70. }
  71. const { host, user, pass } = config || getNodeParams()
  72. if (!host || !user || !pass) {
  73. print.error('Upload Dist to FTP Missing Parameters!')
  74. return false
  75. }
  76. try {
  77. (async function () {
  78. print.tip('Start add Growing IO SDK!')
  79. const addGIOSDK = await addGrowingIOSDK()
  80. if (!addGIOSDK) return print.error('Add Growing IO SDK fail!')
  81. print.tip('Add Growing IO SDK success!')
  82. print.tip('Start Upload!')
  83. ftp.connect({
  84. host,
  85. user,
  86. password: pass
  87. })
  88. })()
  89. } catch {
  90. print.error('Deploy Fail!')
  91. }