Prechádzať zdrojové kódy

Initial work for upgrade feature

NGPixel 8 rokov pred
rodič
commit
391afc4d7a
4 zmenil súbory, kde vykonal 56 pridanie a 2 odobranie
  1. 11 1
      controllers/admin.js
  2. 1 1
      libs/git.js
  3. 42 0
      libs/system.js
  4. 2 0
      package.json

+ 11 - 1
controllers/admin.js

@@ -6,7 +6,7 @@ const Promise = require('bluebird')
 const validator = require('validator')
 const _ = require('lodash')
 const axios = require('axios')
-const moment = require('moment')
+const path = require('path')
 
 /**
  * Admin
@@ -234,4 +234,14 @@ router.get('/settings', (req, res) => {
   })
 })
 
+router.get('/settings/install', (req, res) => {
+  if (!res.locals.rights.manage) {
+    return res.render('error-forbidden')
+  }
+
+  let sysLib = require(path.join(ROOTPATH, 'libs/system.js'))
+  sysLib.install('v1.0-beta.5')
+  res.status(200).end()
+})
+
 module.exports = router

+ 1 - 1
libs/git.js

@@ -186,7 +186,7 @@ module.exports = {
       })
     })
     .catch((err) => {
-      winston.error('[' + PROCNAME + '][GIT] Unable to push changes to remote!')
+      winston.error('[' + PROCNAME + '.Git] Unable to push changes to remote!')
       throw err
     })
   },

+ 42 - 0
libs/system.js

@@ -0,0 +1,42 @@
+'use strict'
+
+const Promise = require('bluebird')
+const https = require('follow-redirects').https
+const fs = Promise.promisifyAll(require('fs-extra'))
+const path = require('path')
+const tar = require('tar')
+const zlib = require('zlib')
+const _ = require('lodash')
+
+module.exports = {
+
+  _remoteFile: 'https://github.com/Requarks/wiki/releases/download/{0}/wiki-js.tar.gz',
+  _installDir: '',
+
+  install (targetTag) {
+    let self = this
+
+    self._installDir = path.resolve(ROOTPATH, appconfig.paths.data, 'install')
+
+    return fs.ensureDirAsync(self._installDir).then(() => {
+      let remoteURL = _.replace(self._remoteFile, '{0}', targetTag)
+
+      return new Promise((resolve, reject) => {
+        https.get(remoteURL, resp => {
+          if (resp.statusCode !== 200) {
+            return reject(new Error('Remote file not found'))
+          }
+
+          resp.pipe(zlib.createGunzip())
+          .pipe(tar.Extract({ path: self._installDir }))
+          .on('error', err => reject(err))
+          .on('end', () => {
+            resolve(true)
+          })
+        })
+      }).then(() => {
+
+      })
+    })
+  }
+}

+ 2 - 0
package.json

@@ -52,6 +52,7 @@
     "farmhash": "^1.2.1",
     "file-type": "^4.0.0",
     "filesize.js": "^1.0.2",
+    "follow-redirects": "^1.2.1",
     "fs-extra": "^2.0.0",
     "git-wrapper2-promise": "^0.2.9",
     "highlight.js": "^9.9.0",
@@ -94,6 +95,7 @@
     "sticky-js": "^1.0.7",
     "stopword": "^0.1.1",
     "stream-to-promise": "^2.2.0",
+    "tar": "^2.2.1",
     "validator": "^6.2.0",
     "validator-as-promised": "^1.0.2",
     "winston": "^2.3.0"