|
| 1 | +#!/usr/bin/env node |
| 2 | + |
| 3 | +const { execSync, spawnSync } = require('child_process'); |
| 4 | +const fs = require('fs'); |
| 5 | +const path = require('path'); |
| 6 | + |
| 7 | +const allPaths = fs.readdirSync('./'); |
| 8 | + |
| 9 | +const bookReviews = []; |
| 10 | + |
| 11 | +allPaths.forEach((somePath) => { |
| 12 | + |
| 13 | + // console.log('somePath', somePath); |
| 14 | + |
| 15 | + const readmeFilePath = path.join(somePath, './README.adoc'); |
| 16 | + const indexFilePath = path.join(somePath, './index.html'); |
| 17 | + |
| 18 | + if (fs.existsSync(readmeFilePath)) { |
| 19 | + |
| 20 | + const readmeContent = fs.readFileSync(readmeFilePath, { encoding: 'utf8' }); |
| 21 | + |
| 22 | + const lines = readmeContent.split('\n'); |
| 23 | + |
| 24 | + const title = (lines[0].length > 0 ? lines[0].substr(2) : lines[1].substr(2)).trim(); |
| 25 | + |
| 26 | + bookReviews.push({ |
| 27 | + path: somePath, |
| 28 | + title, |
| 29 | + }); |
| 30 | + |
| 31 | + console.log(title); |
| 32 | + console.log('Converting AsciiDoc to HTML...', somePath); |
| 33 | + |
| 34 | + const cmd = 'asciidoctor'; |
| 35 | + const argv = ['-o', indexFilePath, readmeFilePath]; |
| 36 | + |
| 37 | + const formattedCommand = cmd + ' ' + argv.join(' '); |
| 38 | + |
| 39 | + // execSync(formattedCommand, { stdio: 'inherit' }); |
| 40 | + } |
| 41 | +}); |
| 42 | + |
| 43 | +const bookReviewMarkdownListLinks = bookReviews |
| 44 | + .sort((a, b) => { |
| 45 | + return a.title - b.title; |
| 46 | + }) |
| 47 | + .map((bookReview) => { |
| 48 | + return `* [${bookReview.title}](./${bookReview.path}/)`; |
| 49 | + }); |
| 50 | + |
| 51 | +// console.log(bookReviewMarkdownListLinks); |
| 52 | + |
| 53 | +console.log('Generating list of book reviews...'); |
| 54 | + |
| 55 | +const readmeFilePath = './README.md'; |
| 56 | + |
| 57 | +const readmeContent = fs.readFileSync(readmeFilePath, { encoding: 'utf8' }); |
| 58 | + |
| 59 | +const readmeBookReviewsStartTag = '<!--book-reviews:begin-->'; |
| 60 | +const readmeBookReviewsEndTag = '<!--book-reviews:end-->'; |
| 61 | +const readmeCurrentBookReviewsStartIx = readmeContent.indexOf(readmeBookReviewsStartTag); |
| 62 | +const readmeCurrentBookReviewsEndIx = readmeContent.indexOf(readmeBookReviewsEndTag, readmeCurrentBookReviewsStartIx) + readmeBookReviewsEndTag.length; |
| 63 | + |
| 64 | +const readmeCurrentBookReviews = readmeContent.substr(readmeCurrentBookReviewsStartIx, readmeCurrentBookReviewsEndIx - readmeCurrentBookReviewsStartIx); |
| 65 | + |
| 66 | +// console.log(''); |
| 67 | +// console.log('Current reviews:'); |
| 68 | +// console.log(readmeCurrentBookReviews); |
| 69 | + |
| 70 | +const readmeNewBookReviews = `${readmeBookReviewsStartTag} |
| 71 | +${bookReviewMarkdownListLinks.join('\n')} |
| 72 | +${readmeBookReviewsEndTag}`; |
| 73 | + |
| 74 | +// console.log(''); |
| 75 | +// console.log('New reviews:'); |
| 76 | +// console.log(readmeNewBookReviews); |
| 77 | + |
| 78 | +const readmeNewContent = readmeContent.replace(readmeCurrentBookReviews, readmeNewBookReviews); |
| 79 | + |
| 80 | +fs.writeFileSync(readmeFilePath, readmeNewContent, { encoding: 'utf8' }); |
| 81 | + |
| 82 | +console.log('Book reviews successfully generated!'); |
0 commit comments