blob: fadb1a1910a50c10584c35977ec02ca0920d09fd [file] [log] [blame]
#!/usr/bin/env node
/**
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
// copyright (c) 2013 Andrew Lunny, Adobe Systems
const url = require('url');
const path = require('path');
const nopt = require('nopt');
const pkg = require('./package');
const help = require('./src/help');
const plugman = require('./plugman');
const known_opts = {
platform: [
'ios', 'osx', 'android', 'amazon-fireos', 'blackberry10',
'wp8', 'windows8', 'windows', 'firefoxos'
],
project: path,
plugin: [String, path, url, Array],
version: String,
help: Boolean,
debug: Boolean,
silent: Boolean,
plugins: path,
link: Boolean,
variable: Array,
www: path,
searchpath: [path, Array],
save: Boolean,
name: String,
platform_id: String,
platform_version: String,
plugins_dir: String
};
const shortHands = { var: ['--variable'], v: ['--version'], h: ['--help'] };
var cli_opts = nopt(known_opts, shortHands);
var cmd = cli_opts.argv.remain.shift();
// Without these arguments, the commands will fail and print the usage anyway.
if (cli_opts.plugins_dir || cli_opts.project) {
cli_opts.plugins_dir = typeof cli_opts.plugins_dir === 'string' ?
cli_opts.plugins_dir :
path.join(cli_opts.project, 'cordova', 'plugins');
}
process.on('uncaughtException', fail);
// Set up appropriate logging based on events
if (cli_opts.debug) {
plugman.on('verbose', console.log);
}
if (!cli_opts.silent) {
plugman.on('log', console.log);
plugman.on('warn', console.warn);
plugman.on('results', console.log);
}
plugman.on('error', console.error);
if (cli_opts.version) {
console.log(pkg.version);
} else if (cli_opts.help) {
console.log(help());
} else if (plugman.commands[cmd]) {
Promise.resolve(plugman.commands[cmd](cli_opts))
.catch(fail);
} else {
console.log(help());
}
function fail (error) {
console.error(error.message);
if (cli_opts.debug) {
console.error(error.stack);
}
process.exit(1);
}