2014-06-03 17:05:25 +04:00
|
|
|
// # DB API
|
|
|
|
// API for DB operations
|
2017-09-12 18:31:14 +03:00
|
|
|
var Promise = require('bluebird'),
|
|
|
|
path = require('path'),
|
|
|
|
fs = require('fs'),
|
|
|
|
pipeline = require('../utils/pipeline'),
|
|
|
|
apiUtils = require('./utils'),
|
|
|
|
exporter = require('../data/export'),
|
|
|
|
importer = require('../data/importer'),
|
|
|
|
backupDatabase = require('../data/db/backup'),
|
|
|
|
models = require('../models'),
|
|
|
|
config = require('../config'),
|
|
|
|
errors = require('../errors'),
|
|
|
|
utilsUrl = require('../utils/url'),
|
|
|
|
docName = 'db',
|
2014-12-11 00:50:00 +03:00
|
|
|
db;
|
2013-10-09 12:52:58 +04:00
|
|
|
|
2014-06-03 17:05:25 +04:00
|
|
|
/**
|
|
|
|
* ## DB API Methods
|
|
|
|
*
|
|
|
|
* **See:** [API Methods](index.js.html#api%20methods)
|
|
|
|
*/
|
2013-10-09 12:52:58 +04:00
|
|
|
db = {
|
2017-08-22 13:15:40 +03:00
|
|
|
/**
|
|
|
|
* ### Archive Content
|
|
|
|
* Generate the JSON to export - for Moya only
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @returns {Promise} Ghost Export JSON format
|
|
|
|
*/
|
|
|
|
backupContent: function () {
|
|
|
|
var props = {
|
|
|
|
data: exporter.doExport(),
|
|
|
|
filename: exporter.fileName()
|
|
|
|
};
|
|
|
|
|
|
|
|
return Promise.props(props)
|
|
|
|
.then(function successMessage(exportResult) {
|
|
|
|
var filename = path.resolve(utilsUrl.urlJoin(config.get('paths').contentPath, 'data', exportResult.filename));
|
|
|
|
|
|
|
|
return Promise.promisify(fs.writeFile)(filename, JSON.stringify(exportResult.data))
|
|
|
|
.then(function () {
|
|
|
|
return filename;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2014-06-03 17:05:25 +04:00
|
|
|
/**
|
|
|
|
* ### Export Content
|
|
|
|
* Generate the JSON to export
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @param {{context}} options
|
|
|
|
* @returns {Promise} Ghost Export JSON format
|
|
|
|
*/
|
2017-03-03 01:00:01 +03:00
|
|
|
exportContent: function exportContent(options) {
|
|
|
|
var tasks;
|
2015-10-20 15:11:49 +03:00
|
|
|
|
Refactor API arguments
closes #2610, refs #2697
- cleanup API index.js, and add docs
- all API methods take consistent arguments: object & options
- browse, read, destroy take options, edit and add take object and options
- the context is passed as part of options, meaning no more .call
everywhere
- destroy expects an object, rather than an id all the way down to the model layer
- route params such as :id, :slug, and :key are passed as an option & used
to perform reads, updates and deletes where possible - settings / themes
may need work here still
- HTTP posts api can find a post by slug
- Add API utils for checkData
2014-05-08 16:41:19 +04:00
|
|
|
options = options || {};
|
2014-04-08 17:40:33 +04:00
|
|
|
|
2014-02-27 19:48:38 +04:00
|
|
|
// Export data, otherwise send error 500
|
2015-10-20 15:11:49 +03:00
|
|
|
function exportContent() {
|
2016-03-12 21:54:06 +03:00
|
|
|
return exporter.doExport().then(function (exportedData) {
|
2014-09-10 08:06:24 +04:00
|
|
|
return {db: [exportedData]};
|
2016-10-06 15:27:35 +03:00
|
|
|
}).catch(function (err) {
|
|
|
|
return Promise.reject(new errors.GhostError({err: err}));
|
2014-04-08 17:40:33 +04:00
|
|
|
});
|
2015-10-20 15:11:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks = [
|
2017-09-12 18:31:14 +03:00
|
|
|
apiUtils.handlePermissions(docName, 'exportContent'),
|
2015-10-20 15:11:49 +03:00
|
|
|
exportContent
|
|
|
|
];
|
|
|
|
|
|
|
|
return pipeline(tasks, options);
|
2013-10-09 12:52:58 +04:00
|
|
|
},
|
2014-06-03 17:05:25 +04:00
|
|
|
/**
|
|
|
|
* ### Import Content
|
|
|
|
* Import posts, tags etc from a JSON blob
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @param {{context}} options
|
|
|
|
* @returns {Promise} Success
|
|
|
|
*/
|
2017-03-03 01:00:01 +03:00
|
|
|
importContent: function importContent(options) {
|
|
|
|
var tasks;
|
Refactor API arguments
closes #2610, refs #2697
- cleanup API index.js, and add docs
- all API methods take consistent arguments: object & options
- browse, read, destroy take options, edit and add take object and options
- the context is passed as part of options, meaning no more .call
everywhere
- destroy expects an object, rather than an id all the way down to the model layer
- route params such as :id, :slug, and :key are passed as an option & used
to perform reads, updates and deletes where possible - settings / themes
may need work here still
- HTTP posts api can find a post by slug
- Add API utils for checkData
2014-05-08 16:41:19 +04:00
|
|
|
options = options || {};
|
2013-10-09 12:52:58 +04:00
|
|
|
|
2015-10-20 15:11:49 +03:00
|
|
|
function importContent(options) {
|
2016-03-30 06:31:31 +03:00
|
|
|
return importer.importFromFile(options)
|
2017-05-23 19:18:13 +03:00
|
|
|
.then(function (response) {
|
|
|
|
// NOTE: response can contain 2 objects if images are imported
|
|
|
|
return {db: [], problems: response.length === 2 ? response[1].problems : response[0].problems};
|
|
|
|
});
|
2015-10-20 15:11:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks = [
|
2017-09-12 18:31:14 +03:00
|
|
|
apiUtils.handlePermissions(docName, 'importContent'),
|
2015-10-20 15:11:49 +03:00
|
|
|
importContent
|
|
|
|
];
|
|
|
|
|
|
|
|
return pipeline(tasks, options);
|
2013-12-25 04:05:20 +04:00
|
|
|
},
|
2014-06-03 17:05:25 +04:00
|
|
|
/**
|
|
|
|
* ### Delete All Content
|
|
|
|
* Remove all posts and tags
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @param {{context}} options
|
|
|
|
* @returns {Promise} Success
|
|
|
|
*/
|
2017-03-03 01:00:01 +03:00
|
|
|
deleteAllContent: function deleteAllContent(options) {
|
2016-03-02 07:42:01 +03:00
|
|
|
var tasks,
|
2016-04-14 18:54:49 +03:00
|
|
|
queryOpts = {columns: 'id', context: {internal: true}};
|
2015-10-20 15:11:49 +03:00
|
|
|
|
Refactor API arguments
closes #2610, refs #2697
- cleanup API index.js, and add docs
- all API methods take consistent arguments: object & options
- browse, read, destroy take options, edit and add take object and options
- the context is passed as part of options, meaning no more .call
everywhere
- destroy expects an object, rather than an id all the way down to the model layer
- route params such as :id, :slug, and :key are passed as an option & used
to perform reads, updates and deletes where possible - settings / themes
may need work here still
- HTTP posts api can find a post by slug
- Add API utils for checkData
2014-05-08 16:41:19 +04:00
|
|
|
options = options || {};
|
2014-04-08 17:40:33 +04:00
|
|
|
|
2015-10-20 15:11:49 +03:00
|
|
|
function deleteContent() {
|
2016-03-02 07:42:01 +03:00
|
|
|
var collections = [
|
|
|
|
models.Post.findAll(queryOpts),
|
|
|
|
models.Tag.findAll(queryOpts)
|
|
|
|
];
|
|
|
|
|
|
|
|
return Promise.each(collections, function then(Collection) {
|
2017-04-05 23:57:41 +03:00
|
|
|
return Collection.invokeThen('destroy', queryOpts);
|
2016-03-02 07:42:01 +03:00
|
|
|
}).return({db: []})
|
2016-10-06 15:27:35 +03:00
|
|
|
.catch(function (err) {
|
|
|
|
throw new errors.GhostError({err: err});
|
2016-03-02 07:42:01 +03:00
|
|
|
});
|
2015-10-20 15:11:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks = [
|
2017-09-12 18:31:14 +03:00
|
|
|
apiUtils.handlePermissions(docName, 'deleteAllContent'),
|
2016-02-14 12:04:43 +03:00
|
|
|
backupDatabase,
|
2015-10-20 15:11:49 +03:00
|
|
|
deleteContent
|
|
|
|
];
|
|
|
|
|
|
|
|
return pipeline(tasks, options);
|
2013-11-01 16:12:01 +04:00
|
|
|
}
|
2013-10-09 12:52:58 +04:00
|
|
|
};
|
|
|
|
|
2014-01-29 08:18:00 +04:00
|
|
|
module.exports = db;
|