Ghost/core/frontend/services/themes/ThemeStorage.js
Hannah Wolfe 646a49039e Updated method call syntax for @tryghost/zip@1.0.0
- @tryghost/zip 1.0.0 has a totally different API, but it works the same
- This updates to use the new API
2020-04-08 16:09:08 +01:00

64 lines
2.0 KiB
JavaScript

var fs = require('fs-extra'),
os = require('os'),
path = require('path'),
config = require('../../../server/config'),
security = require('../../../server/lib/security'),
{compress} = require('@tryghost/zip'),
LocalFileStorage = require('../../../server/adapters/storage/LocalFileStorage');
/**
* @TODO: combine with loader.js?
*/
class ThemeStorage extends LocalFileStorage {
constructor() {
super();
this.storagePath = config.getContentPath('themes');
}
getTargetDir() {
return this.storagePath;
}
serve(options) {
var self = this;
return function downloadTheme(req, res, next) {
var themeName = options.name,
themePath = path.join(self.storagePath, themeName),
zipName = themeName + '.zip',
// store this in a unique temporary folder
zipBasePath = path.join(os.tmpdir(), security.identifier.uid(10)),
zipPath = path.join(zipBasePath, zipName),
stream;
fs.ensureDir(zipBasePath)
.then(function () {
return compress(themePath, zipPath);
})
.then(function (result) {
res.set({
'Content-disposition': 'attachment; filename={themeName}.zip'.replace('{themeName}', themeName),
'Content-Type': 'application/zip',
'Content-Length': result.size
});
stream = fs.createReadStream(zipPath);
stream.pipe(res);
})
.catch(function (err) {
next(err);
})
.finally(function () {
return fs.remove(zipBasePath);
});
};
}
delete(fileName) {
return fs.remove(path.join(this.storagePath, fileName));
}
}
module.exports = ThemeStorage;