-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnautica-downloader.js
350 lines (296 loc) · 11 KB
/
nautica-downloader.js
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
const base = 'https://ksm.dev';
const onWindows = true;
const axios = require('axios').create({
baseURL: `${base}/app`
});
const minimist = require('minimist');
const fs = require('fs-extra');
const path = require('path');
const moment = require('moment');
const rimraf = require('rimraf');
const iconv = require('iconv-lite');
const child_process = require('child_process');
const mkdirp = require('mkdirp');
class NauticaDownloader {
constructor() {
this.createNauticaDirectory();
this.copyUnar();
}
/**
* Iterates through every song provided by Nautica since the last execution time and downloads them
* @param shouldContinue - default false. if true, will not short-circuit execution when 5 up to date songs are encountered
*/
async downloadAll(shouldContinue) {
console.log('Downloading all songs.');
let response;
let consecutiveUpToDates = 0;
AllDoLoop:
do {
// fetch the songs
response = (await axios.get(response ? response.links.next : 'songs?sort=uploaded')).data;
for (let i = 0; i < response.data.length; i++) {
let song = response.data[i];
console.log('=====================');
console.log(`Song: ${song.title} - ${song.artist}`);
let lastDownloaded = this.getWhenSongWasLastDownloaded(song.id);
if (lastDownloaded && moment(song.uploaded_at).subtract(7, 'hours').unix() <= lastDownloaded) {
// we're up to date! break out.
console.log('Already up to date! Skipping.');
this.setWhenSongWasLastDownloaded(song.id);
if (shouldContinue || consecutiveUpToDates < 4) {
consecutiveUpToDates++;
continue;
}
console.log('Found five consecutive songs that were up to date. Stopping execution.');
console.log('To prevent this from happening, run with the --continue flag.');
break AllDoLoop;
}
// if we reach here, that means we should reset the counter of consecutive up to dates
consecutiveUpToDates = 0;
try {
await this.downloadSongToUserDirectory(song);
this.setWhenSongWasLastDownloaded(song.id);
} catch (e) {
console.log('Error encountered:');
console.log(e);
return;
}
}
} while (response.links.next);
console.log('=====================');
console.log('Done!');
}
/**
* Iterates through every song for a user since the last execution time and downloads them
* @param userId - userId to download
* @param shouldContinue - default false. if true, will not short-circuit execution when 5 up to date songs are encountered
*/
async downloadUser(userId, shouldContinue) {
console.log(`Downloading ${userId}'s songs.`);
// grab the last time this script was ran
let response;
let consecutiveUpToDates = 0;
UserDoLoop:
do {
// fetch the songs
response = (await axios.get(response ? response.links.next : `users/${userId}/songs?sort=uploaded`)).data;
for (let i = 0; i < response.data.length; i++) {
let song = response.data[i];
console.log('=====================');
console.log(`Song: ${song.title} - ${song.artist}`);
let lastDownloaded = this.getWhenSongWasLastDownloaded(song.id);
if (lastDownloaded && moment(song.uploaded_at).subtract(7, 'hours').unix() <= lastDownloaded) {
// we're up to date! break out.
console.log('Already up to date! Skipping.');
this.setWhenSongWasLastDownloaded(song.id);
if (shouldContinue || consecutiveUpToDates < 4) {
consecutiveUpToDates++;
continue;
}
console.log('Found five consecutive songs that were up to date. Stopping execution.');
console.log('To prevent this from happening, run with the --continue flag.');
break UserDoLoop;
}
// if we reach here, that means we should reset the counter of consecutive up to dates
consecutiveUpToDates = 0;
try {
await this.downloadSongToUserDirectory(song);
this.setWhenSongWasLastDownloaded(song.id);
} catch (e) {
console.log('Error encountered:');
console.log(e);
}
}
} while (response.links.next);
console.log('=====================');
console.log('Done!');
}
/**
* Downloads a specific song
* @param songId - id of the song to download
*/
async downloadSong(songId) {
console.log(`Downloading song ${songId}.`);
try {
const song = (await axios.get(`songs/${songId}`)).data.data;
console.log('=====================');
console.log(`Song: ${song.title} - ${song.artist}`);
let lastDownloaded = this.getWhenSongWasLastDownloaded(songId);
if (lastDownloaded && moment(song.uploaded_at).subtract(7, 'hours').unix() <= lastDownloaded) {
// we're up to date! break out.
console.log('Already up to date!');
} else {
await this.downloadSongToUserDirectory(song);
}
this.setWhenSongWasLastDownloaded(songId);
console.log('=====================');
console.log('Done!');
} catch (e) {
console.log('Error encountered:');
console.log(e);
}
}
/**
* Given a song object, write it to disk
*/
async downloadSongToUserDirectory(songObj) {
return new Promise(async (resolve, reject) => {
this.createUserDirectory(songObj.user);
const userDirectoryName = this.getUserDirectoryName(songObj.user);
const songZipName = this.cleanName(`${songObj.id}.zip`);
console.log(`Downloading ${songObj.title} - ${songObj.artist}`);
let data;
try {
data = (await axios.get(`songs/${songObj.id}/download`, {
baseURL: base,
responseType: 'arraybuffer'
})).data;
} catch (e) {
console.log('Error encountered when downloading the zip file');
console.log(e);
resolve();
return;
}
fs.writeFileSync(path.resolve(`./nautica/${songZipName}`), data)
console.log(`Finished downloading ${songObj.title} - ${songObj.artist}. Extracting...`);
try {
await this.extract(
path.resolve(`./nautica/${songZipName}`),
path.resolve(`./nautica/${userDirectoryName}`)
);
} catch (e) {
console.log(e);
console.log(`Error encountered when extracting ${songZipName}`);
resolve();
return;
}
console.log(`Finished extracting ${songObj.title} - ${songObj.artist}. Deleting old zip and cleaning up...`);
fs.unlinkSync(path.resolve(`./nautica/${songZipName}`));
console.log(`Deleted old zip. Finished download!`);
resolve();
});
}
/**
* Creates the nautica directory.
*/
createNauticaDirectory() {
if (!fs.existsSync(path.resolve('./nautica'))) {
console.log('Creating nautica directory...');
fs.mkdirSync(path.resolve('./nautica'));
}
}
/**
* Copies the Unar file.
*/
copyUnar() {
if (onWindows) {
if (!fs.existsSync(path.resolve('./unar.exe'))) {
console.log('Writing files for extracting zips...');
fs.writeFileSync(path.resolve('./unar.exe'), fs.readFileSync(path.join(__dirname, './assets/unar.exe')));
fs.chmodSync(path.resolve('./unar.exe'), "755");
}
if (!fs.existsSync(path.resolve('./Foundation.1.0.dll'))) {
fs.writeFileSync(path.resolve('./Foundation.1.0.dll'), fs.readFileSync(path.join(__dirname, './assets/Foundation.1.0.dll')));
fs.chmodSync(path.resolve('./Foundation.1.0.dll'), "755");
}
} else {
if (!fs.existsSync(path.resolve('./unar'))) {
console.log('Writing files for extracting zips...');
fs.writeFileSync(path.resolve('./unar'), fs.readFileSync(path.join(__dirname, './assets/unar')));
fs.chmodSync(path.resolve('./unar'), "755");
}
}
}
/**
* Creates a user's directory.
*/
createUserDirectory(user) {
const userDirectoryName = this.getUserDirectoryName(user);
if (!fs.existsSync(path.resolve(`./nautica/${userDirectoryName}`))) {
fs.mkdirSync(path.resolve(`./nautica/${userDirectoryName}`));
}
}
/**
* Gets the directory name for a user. Stores it inside meta.
*/
getUserDirectoryName(user) {
if (!fs.existsSync(path.resolve('./nautica/meta.json'))) {
fs.writeFileSync(path.resolve('./nautica/meta.json'), JSON.stringify({}), 'utf8');
}
const meta = JSON.parse(fs.readFileSync(path.resolve('./nautica/meta.json')));
if (!meta.users || !meta.users[user.id]) {
console.log('New user found, adding to list of users');
if (!meta.users) {
meta.users = {};
}
const userDirectoryName = this.cleanName(user.name);
meta.users[user.id] = userDirectoryName;
fs.writeFileSync(path.resolve('./nautica/meta.json'), JSON.stringify(meta), 'utf8');
return userDirectoryName;
}
return meta.users[user.id];
}
cleanName(name) {
return name.replace(/[:"?<>|*\/\\]/g, '-').replace(/^[\.]/, '-').replace(/[\.]$/, '-');
}
/**
* Gets the last time this class fetched all the songs for a user.
* Returns null if the script was never ran before.
*/
getWhenSongWasLastDownloaded(songId) {
if (!fs.existsSync(path.resolve('./nautica/meta.json'))) {
fs.writeFileSync(path.resolve('./nautica/meta.json'), JSON.stringify({
songDownloadTimes: {}
}), 'utf8');
return null;
}
const meta = JSON.parse(fs.readFileSync(path.resolve('./nautica/meta.json')));
return meta.songDownloadTimes[songId];
}
/**
* Sets the last time this class fetched all the songs for a user.
*/
setWhenSongWasLastDownloaded(songId) {
if (!fs.existsSync(path.resolve('./nautica/meta.json'))) {
fs.writeFileSync(path.resolve('./nautica/meta.json'), JSON.stringify({
songDownloadTimes: {}
}), 'utf8');
}
const meta = JSON.parse(fs.readFileSync(path.resolve('./nautica/meta.json')));
if (!meta.songDownloadTimes) {
meta.songDownloadTimes = {}
}
meta.songDownloadTimes[songId] = moment().unix();
fs.writeFileSync(path.resolve('./nautica/meta.json'), JSON.stringify(meta), 'utf8');
}
/**
* Extracts the contents of a zip on disk to a path w/ sjis encoding
*/
extract(zipFilename, basePath) {
return new Promise((resolve, reject) => {
const unarPath = onWindows ? path.resolve('./unar.exe') : path.resolve('./unar');
child_process.exec(`"${unarPath}" "${zipFilename}" -o "${basePath}" -f`, {
cwd: basePath,
windowsHide: true,
}, (error, stdout, stderr) => {
console.log(stdout);
if (error) {
console.log('Error encountered:');
console.log(stderr);
reject(error);
} else {
resolve();
}
});
});
}
}
downloader = new NauticaDownloader();
const args = minimist(process.argv.slice(2));
if (args.song) {
downloader.downloadSong(args.song);
} else if (args.user) {
downloader.downloadUser(args.user, !!args.continue);
} else {
downloader.downloadAll(!!args.continue);
}