diff options
author | przemyslawpluta <przemekpluta@hotmail.com> | 2014-02-08 09:50:25 +0000 |
---|---|---|
committer | przemyslawpluta <przemekpluta@hotmail.com> | 2014-02-08 09:50:25 +0000 |
commit | 1c4619e23345709357cea9ba2bdf4b59512b222f (patch) | |
tree | d50bfa3a4fd95c54deafe6e597becb78b481df99 /mongo-edu.js | |
download | mongo-edu-1c4619e23345709357cea9ba2bdf4b59512b222f.zip |
first commit
Diffstat (limited to 'mongo-edu.js')
-rw-r--r-- | mongo-edu.js | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/mongo-edu.js b/mongo-edu.js new file mode 100644 index 0000000..71652f0 --- /dev/null +++ b/mongo-edu.js @@ -0,0 +1,103 @@ +/* + * mongo-edu + * + * Copyright (c) 2014 Przemyslaw Pluta + * Licensed under the MIT license. + * https://github.com/przemyslawpluta/mongo-edu/blob/master/LICENSE + */ + +var mdbvideos = require('./lib/login'), + videoHandler = require('./lib/videos'), + validate = require('./lib/validate'), + colors = require('colors'), + inquirer = require('inquirer'), + argv = require('optimist') + .usage('Usage: $0 -u [user name] -d [download path]') + .describe('d', 'download path').describe('u', 'email address') + .demand('d').argv; + +exports.create = function start() { + + validate.init(argv, function (err, profile) { + if (err !== null) { throw err; } + run(profile); + }); + + function run(profile) { + + inquirer.prompt(profile, function promt(answers) { + + var list = [{ type: 'list', name: 'url', message: '', choices: [] }], classes = list, + + check = [{ type: 'checkbox', message: '', name: 'videos', choices: [], + validate: function validate(answer) { + if ( answer.length < 1 ) { return 'You must choose at least one option.'; } + return true; + } + }]; + + mdbvideos.init(answers, function get(err, data) { + if (err !== null) { throw err; } + if (data.length) { + + classes[0].message = 'Found ' + data.length + ' Course'+ ((data.length > 1)? 's' : '') + '. Select:'; + classes[0].choices = data; + return currentList(); + + } + + }); + + function currentList() { + inquirer.prompt(classes, function prompt(answers) { + + mdbvideos.getList(answers, function get(err, data) { + if (err !== null) { throw err; } + + if (data.length) { + + list[0].message = 'Found ' + data.length + ' List'+ ((data.length > 1)? 's' : '') + '. Select:'; + list[0].choices = data; + + return currentVideos(); + + } + + return console.log('[' + 'i'.red + '] Unable to locate any lists in the wiki. Is course available?'); + }); + + }); + } + + function currentVideos() { + inquirer.prompt(list, function prompt(answers) { + + mdbvideos.listVideos(answers, function get(err, data, pass) { + if (err !== null) { throw err; } + if (!pass) { return videoHandler.details(data, showDetails); } + showDetails(err, data); + }); + + }); + } + + function showDetails(err, data) { + if (err !== null) { throw err; } + if (data.length) { + check[0].message = 'Select From ' + (data.length - 2) + ' Videos. Download:'; + check[0].choices = data; + + return inquirer.prompt(check, function prompt(answers) { + videoHandler.download(answers, data, argv); + }); + + } + + console.log('[' + 'i'.red + '] Could not locate any videos.'); process.exit(0); + } + + }); + + } + +};
\ No newline at end of file |