mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-05-24 08:53:21 +08:00
55 lines
1.9 KiB
JavaScript
55 lines
1.9 KiB
JavaScript
'use strict';
|
|
|
|
var Command = require('../lib/command');
|
|
var requireDataAccess = require('../lib/requireDataAccess');
|
|
var request = require('request');
|
|
var api = require('../lib/api');
|
|
var responseToError = require('../lib/responseToError');
|
|
var FirebaseError = require('../lib/error');
|
|
var RSVP = require('rsvp');
|
|
var utils = require('../lib/utils');
|
|
var querystring = require('querystring');
|
|
var prompt = require('../lib/prompt');
|
|
var chalk = require('chalk');
|
|
var _ = require('lodash');
|
|
|
|
module.exports = new Command('data:remove <path>')
|
|
.description('remove data from your Firebase at the specified path')
|
|
.option('-f, --firebase <app>', 'override the app specified in firebase.json')
|
|
.option('-y, --confirm', 'pass this option to bypass confirmation prompt')
|
|
.before(requireDataAccess)
|
|
.action(function(path, options) {
|
|
if (!_.startsWith(path, '/')) {
|
|
return utils.reject('Path must begin with /', {exit: 1});
|
|
}
|
|
|
|
return prompt(options, [{
|
|
type: 'confirm',
|
|
name: 'confirm',
|
|
default: false,
|
|
message: 'You are about to remove all data at ' + chalk.cyan(path) + ' on ' + chalk.cyan(options.firebase) + '. Are you sure?'
|
|
}]).then(function() {
|
|
if (!options.confirm) {
|
|
return utils.reject('Command aborted.', {exit: 1});
|
|
}
|
|
|
|
return new RSVP.Promise(function(resolve, reject) {
|
|
var url = utils.addSubdomain(api.realtimeOrigin, options.firebase) + path + '.json?';
|
|
var query = {auth: options.dataToken};
|
|
|
|
url += querystring.stringify(query);
|
|
|
|
request.del(url, {json: true}, function(err, res, body) {
|
|
if (err) {
|
|
return reject(new FirebaseError('Unexpected error while removing data', {exit: 2}));
|
|
} else if (res.statusCode >= 400) {
|
|
return reject(responseToError(res, body));
|
|
}
|
|
|
|
utils.logSuccess('Data removed successfully');
|
|
return resolve();
|
|
});
|
|
});
|
|
});
|
|
});
|