fh-fhc
Version:
A Command Line Interface for FeedHenry
40 lines (39 loc) • 1.32 kB
JavaScript
/* globals i18n */
var common = require('../../../../../../common.js');
var fhreq = require("../../../../../../utils/request");
module.exports = {
'desc' : i18n._('Add item into App Store Item Group.'),
'examples' : [{
cmd : 'fhc admin appstore itemgroups items add --guid=<guid> --item=<item>',
desc : i18n._('Add <item> into the App Store Item Group with <guid>')
}],
'demand' : ['guid','item'],
'alias' : {
'guid':'g',
'item':'i',
'json':'j',
0:'guid',
1:'item'
},
'describe' : {
'guid' : i18n._("Unique 24 character GUID of the item group"),
'item' : i18n._("Unique 24 character GUID of the Item Store"),
'json' : i18n._("Output in json format")
},
'customCmd': function(argv, cb) {
common.doApiCall(fhreq.getFeedHenryUrl(), "/box/srv/1.1/admin/storeitemgroup/addstoreitems", {
"guid": argv.guid,
"storeitems": [argv.item]
}, i18n._("Error adding apps: "), function(err, data) {
if (err) {
return cb(err);
}
if (!argv.json) {
var headers = ['GUID', 'Name', 'Description','Store Items','Users'];
var fields = ['guid', 'name', 'description','storeitems','users'];
data._table = common.createTableFromArray(headers, fields, [data]);
}
return cb(undefined, data);
});
}
};