import { readFileSync, readFile, mkdirpSync, writeFileSync, remove, copy, pathExistsSync } from 'fs-extra'; import { rootDir } from '../tool-utils'; import { pressCarouselItems } from './utils/pressCarousel'; import { getMarkdownIt, loadMustachePartials, markdownToPageHtml, renderMustache } from './utils/render'; import { AssetUrls, Env, Partials, PlanPageParams, Sponsors, TemplateParams } from './utils/types'; import { createFeatureTableMd, getPlans, loadStripeConfig } from '@joplin/lib/utils/joplinCloud'; import { stripOffFrontMatter } from './utils/frontMatter'; import { dirname, basename } from 'path'; import { readmeFileTitle, replaceGitHubByWebsiteLinks } from './utils/parser'; import { extractOpenGraphTags } from './utils/openGraph'; import { readCredentialFileJson } from '@joplin/lib/utils/credentialFiles'; import { getNewsDateString } from './utils/news'; import { parsePoFile, parseTranslations, Translations } from '../utils/translation'; import { countryCodeOnly, setLocale } from '@joplin/lib/locale'; import applyTranslations from './utils/applyTranslations'; interface BuildConfig { env: Env; } const buildConfig = readCredentialFileJson('website-build.json', { env: Env.Prod, }); const glob = require('glob'); const path = require('path'); const md5File = require('md5-file'); const docDir = `${dirname(dirname(dirname(dirname(__dirname))))}/joplin-website/docs`; if (!pathExistsSync(docDir)) throw new Error(`Doc directory does not exist: ${docDir}`); const websiteAssetDir = `${rootDir}/Assets/WebsiteAssets`; const readmeDir = `${rootDir}/readme`; const mainTemplateHtml = readFileSync(`${websiteAssetDir}/templates/main-new.mustache`, 'utf8'); const frontTemplateHtml = readFileSync(`${websiteAssetDir}/templates/front.mustache`, 'utf8'); const plansTemplateHtml = readFileSync(`${websiteAssetDir}/templates/plans.mustache`, 'utf8'); const stripeConfig = loadStripeConfig(buildConfig.env, `${rootDir}/packages/server/stripeConfig.json`); const partialDir = `${websiteAssetDir}/templates/partials`; const discussLink = 'https://discourse.joplinapp.org/c/news/9'; let tocMd_: string = null; let tocHtml_: string = null; const tocRegex_ = /([^]*)/; function tocMd() { if (tocMd_) return tocMd_; const md = readFileSync(`${rootDir}/README.md`, 'utf8'); const toc = md.match(tocRegex_); tocMd_ = toc[1]; return tocMd_; } const donateLinksRegex_ = /([^]*)/; async function getDonateLinks() { const md = await readFile(`${rootDir}/README.md`, 'utf8'); const matches = md.match(donateLinksRegex_); if (!matches) throw new Error('Cannot fetch donate links'); return ``; } function tocHtml() { if (tocHtml_) return tocHtml_; const markdownIt = getMarkdownIt(); let md = tocMd(); md = md.replace(/# Table of contents/, ''); md = replaceGitHubByWebsiteLinks(md); tocHtml_ = markdownIt.render(md); tocHtml_ = `
${tocHtml_}
`; return tocHtml_; } const baseUrl = ''; const cssBasePath = `${websiteAssetDir}/css`; const cssBaseUrl = `${baseUrl}/css`; const jsBasePath = `${websiteAssetDir}/js`; const jsBaseUrl = `${baseUrl}/js`; async function getAssetUrls(): Promise { return { css: { fontawesome: `${cssBaseUrl}/fontawesome-all.min.css?h=${await md5File(`${cssBasePath}/fontawesome-all.min.css`)}`, site: `${cssBaseUrl}/site.css?h=${await md5File(`${cssBasePath}/site.css`)}`, }, js: { script: `${jsBaseUrl}/script.js?h=${await md5File(`${jsBasePath}/script.js`)}`, }, }; } function defaultTemplateParams(assetUrls: AssetUrls): TemplateParams { return { env: buildConfig.env, baseUrl, imageBaseUrl: `${baseUrl}/images`, cssBaseUrl, jsBaseUrl, tocHtml: tocHtml(), yyyy: (new Date()).getFullYear().toString(), templateHtml: mainTemplateHtml, forumUrl: 'https://discourse.joplinapp.org/', showToc: true, showImproveThisDoc: true, showJoplinCloudLinks: true, navbar: { isFrontPage: false, }, assetUrls, openGraph: null, }; } function renderPageToHtml(md: string, targetPath: string, templateParams: TemplateParams) { // Remove the header because it's going to be added back as HTML md = md.replace(/# Joplin\n/, ''); templateParams = { ...defaultTemplateParams(templateParams.assetUrls), ...templateParams, }; templateParams.showBottomLinks = templateParams.showImproveThisDoc; const title = []; if (!templateParams.title) { title.push('Joplin - an open source note taking and to-do application with synchronisation capabilities'); } else { title.push(templateParams.title); title.push('Joplin'); } md = replaceGitHubByWebsiteLinks(md); if (templateParams.donateLinksMd) { md = `${templateParams.donateLinksMd}\n\n${md}`; } templateParams.pageTitle = title.join(' | '); const html = templateParams.contentHtml ? renderMustache(templateParams.contentHtml, templateParams) : markdownToPageHtml(md, templateParams); const folderPath = dirname(targetPath); mkdirpSync(folderPath); writeFileSync(targetPath, html); } function renderFileToHtml(sourcePath: string, targetPath: string, templateParams: TemplateParams) { try { let md = readFileSync(sourcePath, 'utf8'); if (templateParams.isNews) { md = processNewsMarkdown(md, sourcePath); } md = stripOffFrontMatter(md).doc; return renderPageToHtml(md, targetPath, templateParams); } catch (error) { error.message = `Could not render file: ${sourcePath}: ${error.message}`; throw error; } } function makeHomePageMd() { let md = readFileSync(`${rootDir}/README.md`, 'utf8'); md = md.replace(tocRegex_, ''); // HACK: GitHub needs the \| or the inline code won't be displayed correctly inside the table, // while MarkdownIt doesn't and will in fact display the \. So we remove it here. md = md.replace(/\\\| bash/g, '| bash'); // We strip-off the donate links because they are added back (with proper // classes and CSS). md = md.replace(donateLinksRegex_, ''); return md; } async function loadSponsors(): Promise { const sponsorsPath = `${rootDir}/packages/tools/sponsors.json`; const output: Sponsors = JSON.parse(await readFile(sponsorsPath, 'utf8')); output.orgs = output.orgs.map(o => { if (o.urlWebsite) o.url = o.urlWebsite; return o; }); return output; } const processNewsMarkdown = (md: string, mdFilePath: string): string => { const info = stripOffFrontMatter(md); md = info.doc.trim(); const dateString = getNewsDateString(info, mdFilePath); md = md.replace(/^# (.*)/, `# [$1](https://github.com/laurent22/joplin/blob/dev/readme/news/${path.basename(mdFilePath)})\n\n*Published on **${dateString}***\n\n`); md += `\n\n* * *\n\n[ Discuss on the forum](${discussLink})`; return md; }; const makeNewsFrontPage = async (sourceFilePaths: string[], targetFilePath: string, templateParams: TemplateParams) => { const maxNewsPerPage = 20; const frontPageMd: string[] = []; for (const mdFilePath of sourceFilePaths) { let md = await readFile(mdFilePath, 'utf8'); md = processNewsMarkdown(md, mdFilePath); frontPageMd.push(md); if (frontPageMd.length >= maxNewsPerPage) break; } renderPageToHtml(frontPageMd.join('\n\n* * *\n\n'), targetFilePath, templateParams); }; const isNewsFile = (filePath: string): boolean => { return filePath.includes('readme/news/'); }; const translatePartials = (partials: Partials, languageCode: string, translations: Translations): Partials => { const output: Partials = {}; for (const [key, value] of Object.entries(partials)) { output[key] = applyTranslations(value, languageCode, translations); } return output; }; const updatePageLanguage = (html: string, lang: string): string => { return html.replace('', ``); }; async function main() { const supportedLocales = { 'en_GB': { htmlTranslations: {}, lang: 'en-gb', }, 'zh_CN': { htmlTranslations: parseTranslations(await parsePoFile(`${websiteAssetDir}/locales/zh_CN.po`)), lang: 'zh-cn', }, }; setLocale('en_GB'); await remove(`${docDir}`); await copy(websiteAssetDir, `${docDir}`); const sponsors = await loadSponsors(); const partials = await loadMustachePartials(partialDir); const assetUrls = await getAssetUrls(); const readmeMd = makeHomePageMd(); const donateLinksMd = await getDonateLinks(); // ============================================================= // HELP PAGE // ============================================================= renderPageToHtml(readmeMd, `${docDir}/help/index.html`, { sourceMarkdownFile: 'README.md', donateLinksMd, partials, sponsors, assetUrls, openGraph: { title: 'Joplin documentation', description: '', url: 'https://joplinapp.org/help/', }, }); // ============================================================= // FRONT PAGE // ============================================================= for (const [localeName, locale] of Object.entries(supportedLocales)) { setLocale(localeName); const pathPrefix = localeName !== 'en_GB' ? `/${countryCodeOnly(localeName).toLowerCase()}` : ''; let templateHtml = updatePageLanguage(applyTranslations(frontTemplateHtml, localeName, locale.htmlTranslations), locale.lang); if (localeName === 'zh_CN') templateHtml = templateHtml.replace(/\/plans/g, '/cn/plans'); renderPageToHtml('', `${docDir}${pathPrefix}/index.html`, { templateHtml, partials: translatePartials(partials, localeName, locale.htmlTranslations), pressCarouselRegular: { id: 'carouselRegular', items: pressCarouselItems(), }, pressCarouselMobile: { id: 'carouselMobile', items: pressCarouselItems(), }, sponsors, navbar: { isFrontPage: true, }, showToc: false, assetUrls, openGraph: { title: 'Joplin website', description: 'Joplin, the open source note-taking application', url: 'https://joplinapp.org', }, }); } setLocale('en_GB'); // ============================================================= // PLANS PAGE // ============================================================= for (const [localeName, locale] of Object.entries(supportedLocales)) { setLocale(localeName); const planPageFaqMd = await readFile(`${readmeDir}/faq_joplin_cloud.md`, 'utf8'); const planPageFaqHtml = getMarkdownIt().render(planPageFaqMd, {}); const planPageParams: PlanPageParams = { ...defaultTemplateParams(assetUrls), partials: translatePartials(partials, localeName, locale.htmlTranslations), templateHtml: applyTranslations(plansTemplateHtml, localeName, locale.htmlTranslations), plans: getPlans(stripeConfig), faqHtml: planPageFaqHtml, featureListHtml: getMarkdownIt().render(createFeatureTableMd(), {}), stripeConfig, }; const planPageContentHtml = renderMustache('', planPageParams); const pathPrefix = localeName !== 'en_GB' ? `/${countryCodeOnly(localeName).toLowerCase()}` : ''; const templateParams = { ...defaultTemplateParams(assetUrls), pageName: 'plans', partials, showToc: false, showImproveThisDoc: false, contentHtml: planPageContentHtml, title: 'Joplin Cloud Plans', }; templateParams.templateHtml = updatePageLanguage(templateParams.templateHtml, locale.lang); renderPageToHtml('', `${docDir}${pathPrefix}/plans/index.html`, templateParams); } setLocale('en_GB'); // ============================================================= // All other pages are generated dynamically from the // Markdown files under /readme // ============================================================= const mdFiles = glob.sync(`${readmeDir}/**/*.md`).map((f: string) => f.substr(rootDir.length + 1)); const sources = []; const makeTargetBasename = (input: string): string => { if (isNewsFile(input)) { const filenameNoExt = basename(input, '.md'); return `news/${filenameNoExt}/index.html`; } else { // Input is for example "readme/spec/interop_with_frontmatter.md", // and we need to convert it to // "docs/spec/interop_with_frontmatter/index.html" and prefix it // with the website repo full path. let s = input; if (s.endsWith('index.md')) { s = s.replace(/index\.md/, 'index.html'); } else { s = s.replace(/\.md/, '/index.html'); } s = s.replace(/readme\//, ''); return s; } }; const makeTargetFilePath = (input: string): string => { return `${docDir}/${makeTargetBasename(input)}`; }; const makeTargetUrl = (input: string) => { return `https://joplinapp.org/${makeTargetBasename(input)}`; }; const newsFilePaths: string[] = []; for (const mdFile of mdFiles) { const title = await readmeFileTitle(`${rootDir}/${mdFile}`); const targetFilePath = makeTargetFilePath(mdFile); const openGraph = await extractOpenGraphTags(mdFile, makeTargetUrl(mdFile)); const isNews = isNewsFile(mdFile); if (isNews) newsFilePaths.push(mdFile); sources.push([mdFile, targetFilePath, { title: title, donateLinksMd: mdFile === 'readme/donate.md' ? '' : donateLinksMd, showToc: mdFile !== 'readme/download.md' && !isNews, openGraph, }]); } for (const source of sources) { source[2].sourceMarkdownFile = source[0]; source[2].sourceMarkdownName = path.basename(source[0], path.extname(source[0])); const sourceFilePath = `${rootDir}/${source[0]}`; const targetFilePath = source[1]; const isNews = isNewsFile(sourceFilePath); renderFileToHtml(sourceFilePath, targetFilePath, { ...source[2], templateHtml: mainTemplateHtml, pageName: isNews ? 'news-item' : '', showImproveThisDoc: !isNews, isNews, partials, assetUrls, }); } newsFilePaths.sort((a, b) => { return a.toLowerCase() > b.toLowerCase() ? -1 : +1; }); await makeNewsFrontPage(newsFilePaths, `${docDir}/news/index.html`, { ...defaultTemplateParams(assetUrls), title: 'What\'s new', pageName: 'news', partials, showToc: false, showImproveThisDoc: false, donateLinksMd, openGraph: { title: 'Joplin - what\'s new', description: 'News about the Joplin open source application', url: 'https://joplinapp.org/news/', }, }); // setLocale('zh_CN'); // const translations = parseTranslations(await parsePoFile(`${websiteAssetDir}/locales/zh_CN.po`)); // await processTranslations(`${docDir}/index.html`, `${docDir}/cn/index.html`, 'zh-cn', translations); // await processTranslations(`${docDir}/plans/index.html`, `${docDir}/cn/plans/index.html`, 'zh-cn', translations); // setLocale('en_GB'); } main().catch((error) => { console.error(error); process.exit(1); });