-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
build-by-source.ts
537 lines (509 loc) · 14.7 KB
/
build-by-source.ts
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
import {
CSS,
groupBy,
jsonfeedToAtom,
mustache,
path,
render,
} from "./deps.ts";
import {
BuildOptions,
BuiltMarkdownInfo,
DayInfo,
Feed,
FeedInfo,
FeedItem,
FileInfo,
Item,
Nav,
RunOptions,
WeekOfYear,
} from "./interface.ts";
import {
CONTENT_DIR,
FEED_NAV,
HOME_NAV,
INDEX_HTML_PATH,
INDEX_MARKDOWN_PATH,
SEARCH_NAV,
SPONSOR_NAV,
SPONSOR_URL,
SUBSCRIBE_NAV,
SUBSCRIPTION_URL,
} from "./constant.ts";
import {
formatHumanTime,
formatNumber,
getBaseFeed,
getDistRepoContentPath,
getDomain,
getPublicPath,
getRepoHTMLURL,
nav1ToHtml,
nav1ToMarkdown,
nav2ToHtml,
nav2ToMarkdown,
parseDayInfo,
parseWeekInfo,
pathnameToFeedUrl,
pathnameToFilePath,
pathnameToOverviewFilePath,
pathnameToUrl,
pathnameToWeekFilePath,
readTextFile,
relativedFilesToHtml,
relativedFilesToMarkdown,
slugy,
startDateOfWeek,
writeJSONFile,
writeTextFile,
} from "./util.ts";
import log from "./log.ts";
import { getFile, getHtmlFile, getItems } from "./db.ts";
import renderMarkdown from "./render-markdown.ts";
let htmlIndexTemplateContent = "";
export default async function main(
fileInfo: FileInfo,
runOptions: RunOptions,
buildOptions: BuildOptions,
): Promise<BuiltMarkdownInfo> {
const config = runOptions.config;
const siteConfig = config.site;
const dbMeta = buildOptions.dbMeta;
const dbSources = dbMeta.sources;
const sourceConfig = fileInfo.sourceConfig;
const sourceCategory = sourceConfig.category;
const sourceMeta = fileInfo.sourceMeta;
const filepath = fileInfo.filepath;
const fileConfig = sourceConfig.files[filepath];
const repoMeta = sourceMeta.meta;
const sourceIdentifier = sourceConfig.identifier;
const dbSource = dbSources[sourceIdentifier];
const originalFilepath = fileConfig.filepath;
let commitMessage = ``;
const sourceFileConfig = fileConfig;
// get items
const items = await getItems(sourceIdentifier, originalFilepath);
// const getDbFinishTime = Date.now();
// log.debug(`get db items cost ${getDbFinishTime - startTime}ms`);
const dbFileMeta = dbSource.files[originalFilepath];
const domain = getDomain();
const isBuildMarkdown = runOptions.markdown;
const isBuildHtml = runOptions.html;
if (!isBuildMarkdown && !isBuildHtml) {
return {
commitMessage: "",
};
}
if (!htmlIndexTemplateContent) {
htmlIndexTemplateContent = await readTextFile("./templates/index.html.mu");
}
let relativeFolder = sourceIdentifier;
if (!sourceFileConfig.index) {
// to README.md path
const filepathExtname = path.extname(originalFilepath);
const originalFilepathWithoutExt = originalFilepath.slice(
0,
-filepathExtname.length,
);
relativeFolder = path.join(relativeFolder, originalFilepathWithoutExt);
}
const baseFeed = getBaseFeed();
for (let i = 0; i < 2; i++) {
const buildMarkdownStartTime = Date.now();
const isDay = i === 0;
const nav1: Nav[] = [
{
name: HOME_NAV,
markdown_url: "/" + INDEX_MARKDOWN_PATH,
url: "/",
},
{
name: SEARCH_NAV,
url: pathnameToUrl("/search/"),
},
{
name: FEED_NAV,
url: pathnameToFeedUrl(fileConfig.pathname, isDay),
},
{
name: SUBSCRIBE_NAV,
url: SUBSCRIPTION_URL,
},
{
name: SPONSOR_NAV,
url: SPONSOR_URL,
},
{
name: `😺 ${sourceIdentifier}`,
url: sourceFileConfig.index ? repoMeta.url : getRepoHTMLURL(
repoMeta.url,
repoMeta.default_branch,
originalFilepath,
),
},
{
name: `⭐ ${formatNumber(repoMeta.stargazers_count)}`,
},
{
name: `🏷️ ${sourceCategory}`,
},
];
const nav2: Nav[] = [
{
name: "Daily",
markdown_url: pathnameToFilePath(fileConfig.pathname),
url: fileConfig.pathname,
active: i === 0,
},
{
name: "Weekly",
markdown_url: pathnameToWeekFilePath(fileConfig.pathname),
url: fileConfig.pathname + "week/",
active: i === 1,
},
{
name: "Overview",
markdown_url: pathnameToOverviewFilePath(fileConfig.pathname),
url: fileConfig.pathname + "readme/",
active: i === 2,
},
];
let relatedFiles: Nav[] = [];
if (sourceFileConfig.index && Object.keys(sourceConfig.files).length > 1) {
const files = sourceConfig.files;
const fileKeys = Object.keys(files).filter((key) => {
return key !== originalFilepath;
});
relatedFiles = fileKeys.map((fileKey) => {
const file = files[fileKey];
return {
name: file.name,
markdown_url: isDay
? pathnameToFilePath(file.pathname)
: pathnameToWeekFilePath(file.pathname),
url: isDay ? file.pathname : file.pathname + "week/",
};
});
}
const feedTitle = `Track ${fileConfig.name} Updates ${
isDay ? "Daily" : "Weekly"
}`;
const feedDescription = repoMeta.description;
const groups = groupBy(
items,
isDay ? "updated_day" : "updated_week",
) as Record<
string,
Item[]
>;
const groupKeys = Object.keys(groups);
// sort
groupKeys.sort((a: string, b: string) => {
if (isDay) {
return parseDayInfo(Number(b)).date.getTime() -
parseDayInfo(Number(a)).date.getTime();
} else {
return parseWeekInfo(Number(b)).date.getTime() -
parseWeekInfo(Number(a)).date.getTime();
}
});
const dailyRelativeFolder = isDay
? relativeFolder
: path.join(relativeFolder, `week`);
let feedItems: FeedItem[] = groupKeys.map((key) => {
const groupItems = groups[key];
const categoryGroup = groupBy(groupItems, "category") as Record<
string,
Item[]
>;
let groupMarkdown = "";
let groupHtml = "";
let summary = "";
const categoryKeys: string[] = Object.keys(categoryGroup);
const today = new Date();
const tomorrow = new Date(today);
tomorrow.setDate(tomorrow.getDate() + 1);
let datePublished: Date = tomorrow;
let dateModified: Date = new Date(0);
let total = 0;
categoryKeys.forEach((key: string) => {
const categoryItem = categoryGroup[key][0];
if (key) {
groupMarkdown += `\n\n### ${key}\n`;
groupHtml += `<h3>${categoryItem.category_html}</h3>`;
} else {
groupMarkdown += `\n`;
}
categoryGroup[key].forEach((item) => {
total++;
groupMarkdown += `\n${item.markdown}`;
groupHtml += `\n${item.html}`;
const itemUpdatedAt = new Date(item.updated_at);
if (itemUpdatedAt.getTime() > dateModified.getTime()) {
dateModified = itemUpdatedAt;
}
if (itemUpdatedAt.getTime() < datePublished.getTime()) {
datePublished = itemUpdatedAt;
}
});
});
let dayInfo: DayInfo | WeekOfYear;
if (isDay) {
dayInfo = parseDayInfo(Number(key));
} else {
dayInfo = parseWeekInfo(Number(key));
}
summary = `${total} awesome projects updated on ${dayInfo.name}`;
const slug = dayInfo.path + "/";
const itemUrl = `${domain}/${dayInfo.path}/`;
const url = `${domain}/${slug}`;
const feedItem: FeedItem = {
id: itemUrl,
title: `${fileConfig.name} Updates on ${dayInfo.name}`,
_short_title: dayInfo.name,
_slug: slug,
summary,
_filepath: pathnameToFilePath("/" + slug),
url: itemUrl,
date_published: datePublished.toISOString(),
date_modified: dateModified.toISOString(),
content_text: groupMarkdown,
content_html: groupHtml,
};
return feedItem;
});
// sort feedItems by date published
feedItems.sort((a, b) => {
const aDate = new Date(a.date_published);
const bDate = new Date(b.date_published);
return bDate.getTime() - aDate.getTime();
});
const feedSeoTitle =
`Track ${fileConfig.name} (${sourceIdentifier}) Updates ${
isDay ? "Daily" : "Weekly"
}`;
const feedInfo: FeedInfo = {
...baseFeed,
title: feedTitle,
_seo_title: `${feedSeoTitle} - ${siteConfig.title}`,
_site_title: siteConfig.title,
description: repoMeta.description || "",
home_page_url: `${domain}/${dailyRelativeFolder}/`,
feed_url: `${domain}/${dailyRelativeFolder}/feed.json`,
};
const feed: Feed = {
...feedInfo,
items: feedItems,
};
const markdownDoc = `# ${feed.title}${
feed.description ? `\n\n${feed.description}` : ""
}
${nav1ToMarkdown(nav1)}
${nav2ToMarkdown(nav2)}${relativedFilesToMarkdown(relatedFiles)}${
feedItems.map((item) => {
return `\n\n## [${item._short_title}](/${CONTENT_DIR}/${item._slug}${INDEX_MARKDOWN_PATH})${item.content_text}`;
}).join("")
}`;
if (isBuildMarkdown) {
const markdownDistPath = path.join(
getDistRepoContentPath(),
dailyRelativeFolder,
INDEX_MARKDOWN_PATH,
);
await writeTextFile(markdownDistPath, markdownDoc);
const writeMarkdownTime = Date.now();
log.debug(
`build ${markdownDistPath} success, cost ${
writeMarkdownTime - buildMarkdownStartTime
}ms`,
);
}
// build html
if (isBuildHtml) {
// add body, css to feed
// const body = renderMarkdown(markdownDoc);
const body = `<h1>${feed.title}</h1>
${feed.description ? "<p>" + feed.description + "</p>" : ""}
<p>${nav1ToHtml(nav1)}</p>
<p>${nav2ToHtml(nav2)}</p>
${relativedFilesToHtml(relatedFiles)}
${
feedItems.map((item) => {
return `<h2><a href="${item.url}">${item._short_title}</a></h2>${item.content_html}`;
}).join("")
}`;
const htmlDoc = mustache.render(htmlIndexTemplateContent, {
...feedInfo,
body,
CSS,
});
const htmlDistPath = path.join(
getPublicPath(),
dailyRelativeFolder,
INDEX_HTML_PATH,
);
await writeTextFile(htmlDistPath, htmlDoc);
log.debug(`build ${htmlDistPath} success`);
// build feed json
const feedJsonDistPath = path.join(
getPublicPath(),
dailyRelativeFolder,
"feed.json",
);
// remote the current day feed, cause there is maybe some new items
if (isDay) {
// today start
const today = new Date();
const todayStart = new Date(
today.getUTCFullYear(),
today.getUTCMonth(),
today.getUTCDate(),
);
const todayStartTimestamp = todayStart.getTime();
feedItems = feedItems.filter((item) => {
const itemDate = new Date(item.date_published);
return itemDate.getTime() < todayStartTimestamp;
});
} else {
// week
// get week start date
const startWeekDate = startDateOfWeek(new Date());
const startWeekDateTimestamp = startWeekDate.getTime();
feedItems = feedItems.filter((item) => {
const itemDate = new Date(item.date_published);
return itemDate.getTime() < startWeekDateTimestamp;
});
}
feed.items = feedItems;
await writeJSONFile(feedJsonDistPath, feed);
// build rss
const rssFeed = { ...feed };
rssFeed.items = rssFeed.items.map(({ content_text: _, ...rest }) => rest);
// @ts-ignore: node modules
const feedOutput = jsonfeedToAtom(rssFeed, {
language: "en",
});
const rssDistPath = path.join(
getPublicPath(),
dailyRelativeFolder,
"rss.xml",
);
await writeTextFile(rssDistPath, feedOutput);
}
}
// build overview markdown
// first get readme content
const buildOverviewMarkdownStartTime = Date.now();
const readmeContent = await getFile(sourceIdentifier, filepath);
const overviewMarkdownPath = path.join(
getDistRepoContentPath(),
relativeFolder,
"readme",
INDEX_MARKDOWN_PATH,
);
const overviewTitle = `${fileConfig.name} Overview`;
const nav1: Nav[] = [
{
name: HOME_NAV,
markdown_url: "/" + INDEX_MARKDOWN_PATH,
url: "/",
},
{
name: FEED_NAV,
url: pathnameToFeedUrl(fileConfig.pathname, true),
},
{
name: SUBSCRIBE_NAV,
url: SUBSCRIPTION_URL,
},
{
name: SPONSOR_NAV,
url: SPONSOR_URL,
},
{
name: `😺 ${sourceIdentifier}`,
url: sourceFileConfig.index ? repoMeta.url : getRepoHTMLURL(
repoMeta.url,
repoMeta.default_branch,
originalFilepath,
),
},
{
name: `⭐ ${formatNumber(repoMeta.stargazers_count)}`,
},
{
name: `🏷️ ${sourceCategory}`,
},
];
const nav2: Nav[] = [
{
name: "Daily",
markdown_url: pathnameToFilePath(fileConfig.pathname),
url: fileConfig.pathname,
},
{
name: "Weekly",
markdown_url: pathnameToWeekFilePath(fileConfig.pathname),
url: fileConfig.pathname + "week/",
},
{
name: "Overview",
markdown_url: pathnameToOverviewFilePath(fileConfig.pathname),
url: fileConfig.pathname + "readme/",
active: true,
},
];
const readmeRendered = `# ${overviewTitle}
${repoMeta.description}
${nav1ToMarkdown(nav1)}
${nav2ToMarkdown(nav2)}
---
${readmeContent}
`;
await writeTextFile(overviewMarkdownPath, readmeRendered);
const buildOverviewMarkdownEndTime = Date.now();
log.debug(
`build ${overviewMarkdownPath} success, cost ${
buildOverviewMarkdownEndTime - buildOverviewMarkdownStartTime
}ms`,
);
if (isBuildHtml) {
const readmeHtmlContent = await getHtmlFile(sourceIdentifier, filepath);
// add body, css to feed
// const body = renderMarkdown(readmeRendered);
const body = `<h1>${overviewTitle}</h1>
<p>${repoMeta.description}</p>
<p>${nav1ToHtml(nav1)}</p>
<p>${nav2ToHtml(nav2)}</p>
${readmeHtmlContent}
`;
const overviewSeoTitle =
`${fileConfig.name} (${sourceIdentifier}) Overview`;
const overviewFeedInfo: FeedInfo = {
...baseFeed,
title: overviewTitle,
_site_title: siteConfig.title,
_seo_title: `${overviewSeoTitle} - ${siteConfig.title}`,
description: repoMeta.description,
home_page_url: `${domain}/${relativeFolder}/readme/`,
feed_url: `${domain}/${relativeFolder}/feed.json`,
};
const htmlDoc = mustache.render(htmlIndexTemplateContent, {
...overviewFeedInfo,
body: body,
CSS,
});
const htmlDistPath = path.join(
getPublicPath(),
relativeFolder,
"readme",
INDEX_HTML_PATH,
);
await writeTextFile(htmlDistPath, htmlDoc);
log.debug(`build ${htmlDistPath} success`);
}
return {
commitMessage,
};
}