]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/blob - cli/surfer.js
65773e30dad6b7d6ac09fe8b87b3de0d170d9d9f
[perso/Immae/Projets/Nodejs/Surfer.git] / cli / surfer.js
1 #!/usr/bin/env node
2
3 'use strict';
4
5 var program = require('commander'),
6 actions = require('./actions');
7
8 program.version(require('../package.json').version);
9
10 program.command('login <url>')
11 .description('Login to server')
12 .option('--username [username]', 'Username (optional)')
13 .option('--password [password]', 'Password (optional)')
14 .action(actions.login);
15
16 program.command('logout')
17 .description('Logout from server')
18 .action(actions.logout);
19
20 program.command('put <file|dir> [files...]')
21 .option('-a --all', 'Also include hidden files and folders.', false)
22 .description('Put a file, last argument is destination if provided')
23 .action(actions.put);
24
25 program.command('get [file|dir]')
26 .description('Get a file or directory listing')
27 .action(actions.get);
28
29 program.command('del <file>')
30 .option('-r --recursive', 'Recursive delete directories.', false)
31 .option('-d --dry-run', 'Only list files to delete.', false)
32 .description('Delete a file or directory')
33 .action(actions.del);
34
35 program.parse(process.argv);
36
37 if (!process.argv.slice(2).length) {
38 program.outputHelp();
39 } else { // https://github.com/tj/commander.js/issues/338
40 var knownCommand = program.commands.some(function (command) { return command._name === process.argv[2]; });
41 if (!knownCommand) {
42 console.error('Unknown command: ' + process.argv[2]);
43 process.exit(1);
44 }
45 }