forked from javascript-tutorial/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorialImporter.js
More file actions
executable file
·550 lines (393 loc) · 13.6 KB
/
Copy pathtutorialImporter.js
File metadata and controls
executable file
·550 lines (393 loc) · 13.6 KB
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
'use strict';
const co = require('co');
const util = require('util');
const fs = require('fs');
const fse = require('fs-extra');
const path = require('path');
const config = require('config');
const mongoose = require('lib/mongoose');
const Article = require('tutorial').Article;
const Plunk = require('plunk').Plunk;
const Task = require('tutorial').Task;
const ArticleRenderer = require('./renderer/articleRenderer');
const TaskRenderer = require('./renderer/taskRenderer');
const log = require('log')();
const TutorialParser = require('./lib/tutorialParser');
const stripTitle = require('markit').stripTitle;
const stripYamlMetadata = require('markit').stripYamlMetadata;
function TutorialImporter(options) {
this.root = fs.realpathSync(options.root);
this.onchange = options.onchange || function() { };
}
TutorialImporter.prototype.sync = function* (directory) {
log.info("sync", directory);
var dir = fs.realpathSync(directory);
var type;
while (true) {
if (dir.endsWith('.view') && !dir.endsWith('/_js.view')) {
type = 'View';
break;
}
if (fs.existsSync(path.join(dir, 'index.md'))) {
type = 'Folder';
break;
}
if (fs.existsSync(path.join(dir, 'article.md'))) {
type = 'Article';
break;
}
if (fs.existsSync(path.join(dir, 'task.md'))) {
type = 'Task';
break;
}
dir = path.dirname(dir);
if (directory == this.root || directory == '/') {
throw new Error("Unknown directory type: " + directory);
}
}
var parentDir = path.dirname(dir);
var parentSlug = path.basename(parentDir);
parentSlug = parentSlug.slice(parentSlug.indexOf('-') + 1);
var parent;
if (fs.existsSync(path.join(parentDir, 'task.md'))) {
parent = yield Task.findOne({slug: parentSlug}).exec();
} else {
parent = yield Article.findOne({slug: parentSlug}).exec();
}
yield* this['sync' + type](dir, parent);
};
/**
* Call this after all import is complete to generate caches/searches for ElasticSearch to consume
*/
TutorialImporter.prototype.generateCaches = function*() {
yield ArticleRenderer.regenerateCaches();
yield TaskRenderer.regenerateCaches();
};
TutorialImporter.prototype.destroyAll = function* () {
yield Article.destroy({});
yield Task.destroy({});
};
TutorialImporter.prototype.syncFolder = function*(sourceFolderPath, parent) {
log.info("syncFolder", sourceFolderPath);
const contentPath = path.join(sourceFolderPath, 'index.md');
let content = fs.readFileSync(contentPath, 'utf-8').trim();
const folderFileName = path.basename(sourceFolderPath);
const data = {
isFolder: true
};
if (parent) {
data.parent = parent._id;
}
data.weight = parseInt(folderFileName);
data.slug = folderFileName.slice(folderFileName.indexOf('-') + 1);
yield Article.destroyTree({slug: data.slug});
var options = {
staticHost: config.server.staticHost,
resourceWebRoot: Article.getResourceWebRootBySlug(data.slug)
};
let tmp = stripYamlMetadata(content);
content = tmp.text;
let meta = tmp.meta;
if (meta.libs) data.libs = meta.libs;
tmp = stripTitle(content);
data.title = tmp.title;
content = tmp.text;
data.content = content;
const parser = new TutorialParser(options);
const tokens = yield* parser.parse(content);
data.githubLink = config.tutorialGithubBaseUrl + sourceFolderPath.slice(this.root.length);
const folder = new Article(data);
yield folder.persist();
const subPaths = fs.readdirSync(sourceFolderPath);
for (var i = 0; i < subPaths.length; i++) {
if (subPaths[i] == 'index.md') continue;
var subPath = path.join(sourceFolderPath, subPaths[i]);
if (fs.existsSync(path.join(subPath, 'index.md'))) {
yield* this.syncFolder(subPath, folder);
} else if (fs.existsSync(path.join(subPath, 'article.md'))) {
yield* this.syncArticle(subPath, folder);
} else {
yield* this.syncResource(subPath, folder.getResourceFsRoot());
}
}
this.onchange(folder.getUrl());
};
TutorialImporter.prototype.syncArticle = function* (articlePath, parent) {
log.info("syncArticle", articlePath);
const contentPath = path.join(articlePath, 'article.md');
let content = fs.readFileSync(contentPath, 'utf-8').trim();
const articlePathName = path.basename(articlePath);
const data = {
isFolder: false
};
if (parent) {
data.parent = parent._id;
}
data.weight = parseInt(articlePathName);
data.slug = articlePathName.slice(articlePathName.indexOf('-') + 1);
yield Article.destroyTree({slug: data.slug});
const options = {
staticHost: config.server.staticHost,
resourceWebRoot: Article.getResourceWebRootBySlug(data.slug)
};
let tmp = stripYamlMetadata(content);
content = tmp.text;
let meta = tmp.meta;
if (meta.libs) data.libs = meta.libs;
tmp = stripTitle(content);
data.title = tmp.title;
content = tmp.text;
data.content = content;
const parser = new TutorialParser(options);
const tokens = yield* parser.parse(content);
data.githubLink = config.tutorialGithubBaseUrl + articlePath.slice(this.root.length) + '/article.md';
try {
data.headJs = fs.readFileSync(path.join(articlePath, 'head.js'));
} catch (e) {
}
try {
data.headCss = fs.readFileSync(path.join(articlePath, 'head.css'));
} catch (e) {
}
try {
data.headHtml = fs.readFileSync(path.join(articlePath, 'head.html'));
} catch (e) {
}
const article = new Article(data);
yield article.persist();
const subPaths = fs.readdirSync(articlePath);
for (var i = 0; i < subPaths.length; i++) {
if (subPaths[i] == 'article.md') continue;
var subPath = path.join(articlePath, subPaths[i]);
if (fs.existsSync(path.join(subPath, 'task.md'))) {
yield* this.syncTask(subPath, article);
} else if (subPath.endsWith('.view')) {
yield* this.syncView(subPath, article);
} else {
// resources
yield* this.syncResource(subPath, article.getResourceFsRoot());
}
}
this.onchange(article.getUrl());
};
TutorialImporter.prototype.syncResource = function*(sourcePath, destDir) {
fse.ensureDirSync(destDir);
log.info("syncResource", sourcePath, destDir);
const stat = fs.statSync(sourcePath);
const ext = getFileExt(sourcePath);
const destPath = path.join(destDir, path.basename(sourcePath));
if (stat.isFile()) {
if (ext == 'png' || ext == 'jpg' || ext == 'gif' || ext == 'svg') {
yield* importImage(sourcePath, destDir);
return;
}
copySync(sourcePath, destPath);
} else if (stat.isDirectory()) {
fse.ensureDirSync(destPath);
const subPathNames = fs.readdirSync(sourcePath);
for (var i = 0; i < subPathNames.length; i++) {
var subPath = path.join(sourcePath, subPathNames[i]);
yield* this.syncResource(subPath, destPath);
}
} else {
throw new Error("Unsupported file type at " + sourcePath);
}
};
function getFileExt(filePath) {
var ext = filePath.match(/\.([^.]+)$/);
return ext && ext[1];
}
function* importImage(srcPath, dstDir) {
log.info("importImage", srcPath, "to", dstDir);
const filename = path.basename(srcPath);
const dstPath = path.join(dstDir, filename);
copySync(srcPath, dstPath);
}
function copySync(srcPath, dstPath) {
if (checkSameMtime(srcPath, dstPath)) {
log.debug("copySync: same mtime %s = %s", srcPath, dstPath);
return;
}
log.debug("copySync %s -> %s", srcPath, dstPath);
fse.copySync(srcPath, dstPath);
}
TutorialImporter.prototype.syncTask = function*(taskPath, parent) {
log.info("syncTask", taskPath);
const contentPath = path.join(taskPath, 'task.md');
let content = fs.readFileSync(contentPath, 'utf-8').trim();
const taskPathName = path.basename(taskPath);
const data = {
parent: parent._id
};
data.weight = parseInt(taskPathName);
data.slug = taskPathName.slice(taskPathName.indexOf('-') + 1);
data.githubLink = config.tutorialGithubBaseUrl + taskPath.slice(this.root.length);
// console.log("DESTROY", data);
yield Task.destroy({slug: data.slug});
const options = {
staticHost: config.server.staticHost,
resourceWebRoot: Task.getResourceWebRootBySlug(data.slug)
};
let tmp = stripYamlMetadata(content);
content = tmp.text;
let meta = tmp.meta;
if (meta.libs) data.libs = meta.libs;
if (meta.importance) data.importance = meta.importance;
tmp = stripTitle(content);
data.title = tmp.title;
content = tmp.text;
data.content = content;
const parser = new TutorialParser(options);
let tokens = yield* parser.parse(content);
// Solution, no title, no meta
const solutionPath = path.join(taskPath, 'solution.md');
const solution = fs.readFileSync(solutionPath, 'utf-8').trim();
data.solution = solution;
log.debug("parsing solution");
tokens = yield* parser.parse(solution);
const task = new Task(data);
yield task.persist();
log.debug("task saved");
const subPaths = fs.readdirSync(taskPath);
for (var i = 0; i < subPaths.length; i++) {
// names starting with _ don't sync
if (subPaths[i] == 'task.md' || subPaths[i] == 'solution.md' || subPaths[i][0] == '_') continue;
var subPath = path.join(taskPath, subPaths[i]);
if (subPath.endsWith('.view')) {
yield* this.syncView(subPath, task);
} else {
yield* this.syncResource(subPath, task.getResourceFsRoot());
}
}
if (fs.existsSync(path.join(taskPath, '_js.view'))) {
yield* this.syncTaskJs(path.join(taskPath, '_js.view'), task);
}
this.onchange(task.getUrl());
};
TutorialImporter.prototype.syncView = function*(dir, parent) {
log.info("syncView: dir", dir);
var pathName = path.basename(dir).replace('.view', '');
if (pathName == '_js') {
throw new Error("Must not syncView " + pathName);
}
var webPath = parent.getResourceWebRoot() + '/' + pathName;
log.debug("syncView webpath", webPath);
var plunk = yield Plunk.findOne({webPath: webPath});
if (plunk) {
log.debug("Plunk from db", plunk);
} else {
plunk = new Plunk({
webPath: webPath,
description: "Fork from https://" + config.domain.main
});
log.debug("Created new plunk (db empty)", plunk);
}
var filesForPlunk = require('plunk').readFs(dir);
log.debug("Files for plunk", filesForPlunk);
if (!filesForPlunk) return; // had errors
log.debug("Merging plunk");
yield* plunk.mergeAndSyncRemote(filesForPlunk);
log.debug("Plunk merged");
var dst = path.join(parent.getResourceFsRoot(), pathName);
fse.ensureDirSync(dst);
fs.readdirSync(dir).forEach(function(dirFile) {
copySync(path.join(dir, dirFile), path.join(dst, dirFile));
});
};
TutorialImporter.prototype.syncTaskJs = function*(jsPath, task) {
log.debug("syncTaskJs", jsPath);
var sourceJs;
try {
sourceJs = fs.readFileSync(path.join(jsPath, 'source.js'), 'utf8');
} catch (e) {
sourceJs = "// ...ваш код...";
}
var testJs;
try {
testJs = fs.readFileSync(path.join(jsPath, 'test.js'), 'utf8');
} catch (e) {
testJs = "";
}
var solutionJs = fs.readFileSync(path.join(jsPath, 'solution.js'), 'utf8');
// Source
var webPath = task.getResourceWebRoot() + '/source';
var source = makeSource(sourceJs, testJs);
var sourcePlunk = yield Plunk.findOne({webPath: webPath}).exec();
if (!sourcePlunk) {
sourcePlunk = new Plunk({
webPath: webPath,
description: "Fork from https://" + config.domain.main
});
}
var filesForPlunk = {
'index.html': {
content: source,
filename: 'index.html'
},
'test.js': !testJs ? null : {
content: testJs.trim(),
filename: 'test.js'
}
};
log.debug("save plunk for ", webPath);
yield* sourcePlunk.mergeAndSyncRemote(filesForPlunk);
// Solution
var webPath = task.getResourceWebRoot() + '/solution';
var solution = makeSolution(solutionJs, testJs);
var solutionPlunk = yield Plunk.findOne({webPath: webPath}).exec();
if (!solutionPlunk) {
solutionPlunk = new Plunk({
webPath: webPath,
description: "Fork from https://" + config.domain.main
});
}
var filesForPlunk = {
'index.html': {
content: solution,
filename: 'index.html'
},
'test.js': !testJs ? null : {
content: testJs.trim(),
filename: 'test.js'
}
};
log.debug("save plunk for ", webPath);
yield* solutionPlunk.mergeAndSyncRemote(filesForPlunk);
};
function makeSource(sourceJs, testJs) {
var source = "<!DOCTYPE HTML>\n<html>\n<head>\n <meta charset=\"utf-8\">\n";
if (testJs) {
source += " <script src=\"https://" + config.domain.static + "/test/libs.js\"></script>\n";
source += " <script src=\"test.js\"></script>\n";
}
source += "</head>\n<body>\n\n <script>\n\n";
source += sourceJs.trim().replace(/^/gim, ' ');
source += "\n\n </script>\n";
source += "\n</body>\n</html>";
return source;
}
function makeSolution(solutionJs, testJs) {
var solution = "<!DOCTYPE html>\n<html>\n<head>\n <meta charset=\"utf-8\">\n";
if (testJs) {
solution += " <script src=\"https://" + config.domain.static + "/test/libs.js\"></script>\n";
solution += " <script src=\"test.js\"></script>\n";
}
solution += "</head>\n<body>\n\n <script>\n\n";
solution += solutionJs.trim().replace(/^/gim, ' ');
solution += "\n\n </script>\n";
solution += "\n</body>\n</html>";
return solution;
}
function checkSameMtime(filePath1, filePath2) {
if (!fs.existsSync(filePath2)) return false;
const stat1 = fs.statSync(filePath1);
if (!stat1.isFile()) {
throw new Error("not a file: " + filePath1);
}
const stat2 = fs.statSync(filePath2);
if (!stat2.isFile()) {
throw new Error("not a file: " + filePath2);
}
return stat1.mtime == stat2.mtime;
}
module.exports = TutorialImporter;