Initial work for upgrade feature

This commit is contained in:
NGPixel 2017-02-13 00:59:52 -05:00
parent 5223368e37
commit 391afc4d7a
4 changed files with 56 additions and 2 deletions

View File

@ -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

View File

@ -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
libs/system.js Normal file
View File

@ -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(() => {
})
})
}
}

View File

@ -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"