1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/*
* mongo-edu
*
* Copyright (c) 2014 Przemyslaw Pluta
* Licensed under the MIT license.
* https://github.com/przemyslawpluta/mongo-edu/blob/master/LICENSE
*/
var fs = require('fs'),
path = require('path'),
_ = require('lodash'),
yargs = require('yargs')
.usage('Usage: $0 [options]')
.describe('d', 'download path').describe('u', 'email address')
.describe('h', 'switch from videos (default) to handouts').boolean('h')
.describe('py', 'py switch').describe('py', 'switch to point to Python')
.describe('proxy', 'pass proxy').describe('proxy', 'pass proxy switch for video download')
.describe('test', 'proxy test').describe('test', 'use with --proxy to test if usable')
.describe('save', 'save presets').describe('save', 'save presets for later use')
.describe('load', 'load presets').describe('load', 'load presets')
.describe('cw', 'switch from wiki\'s video lists (default) to courseware').boolean('cw')
.describe('cwd', 'same as --cw and dumps list of videos to file in -d').boolean('cwd')
.describe('cc', 'get closed captions').boolean('cc')
.describe('hq', 'get high quality videos').boolean('hq')
.describe('ncc', 'no check certificate').boolean('ncc')
.describe('uz', 'unzip handout files').boolean('uz')
.describe('co', 'sequence video files in order of the courseware').boolean('co')
.describe('verbose', 'print debug information').boolean('verbose')
.example('$0 -d your_download_path', 'download videos from wiki')
.example('$0 -d your_download_path -u your_user_name --cw --hq --cc', 'download high quality videos from courseware with closed captions')
.example('$0 -d your_download_path -h --uz', 'download and unzip handouts')
.example('$0 -d your_download_path --cw --verbose', 'download videos from courseware and print debug info')
.example('$0 -d your_download_path --cw --proxy http://proxy_ip_address:proxy_port_number', 'download videos from courseware via proxy tunnel')
.example('$0 -d your_download_path --proxy http://proxy_ip_address:proxy_port_number --test', 'test proxy and download video via proxy tunnel')
.demand('d');
var base = {},
optionsPath = path.join(__dirname, '..', '/bin/args.json');
function readFromPath(callback) {
'use strict';
fs.readFile(optionsPath, function readFile(err, data) {
if (err !== null) { return callback(err); }
callback(null, JSON.parse(data));
});
}
function saveToPath() {
'use strict';
fs.writeFile(optionsPath, JSON.stringify(base), 'utf-8', function writeFile(err) {
if (err !== null) { return console.log('i'.red + ' Save Error: ' + err.stack); }
});
}
function saveOptions(name) {
'use strict';
var handleRead = function handleRead(err, data) {
if (err !== null) { return console.log('i'.red + ' Unable To Read File: ' + err.stack); }
base = data;
base[name] = _.omit(yargs.argv, 'save', 'load', 'd', '_', '$0');
saveToPath();
};
fs.exists(optionsPath, function isFound(exists) {
if (!exists) {
base[name] = _.omit(yargs.argv, 'save', 'load', 'd', '_', '$0');
return saveToPath();
}
readFromPath(handleRead);
});
}
function loadOptions(name, callback) {
'use strict';
if (typeof name === 'function') { callback = name; }
fs.exists(optionsPath, function isFound(exists) {
if (!exists) { return callback(null, []); }
readFromPath(function read(err, data) {
if (typeof name !== 'function') {
var status = !!data[name];
return callback(err, _.omit(_.defaults(data[name], yargs.argv), 'save', 'load'), status);
}
callback(null, Object.keys(data));
});
});
}
module.exports = (function init() {
'use strict';
return {
build: function build() { return yargs; },
save: function save(name) { saveOptions(name); },
load: function load(name, callback) { loadOptions(name, callback); },
get: function get(callback) { loadOptions(callback); }
};
}());
|