forked from freeplant/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate-readme.js
104 lines (93 loc) · 3.51 KB
/
generate-readme.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
const fs = require('fs');
const path = require('path');
const url = require('url');
const markdownMagic = require('markdown-magic'); // eslint-disable-line
const globby = require('markdown-magic').globby; // eslint-disable-line
const toTitleCase = (str) => { // eslint-disable-line
return str.replace(/\w\S*/g, txt => txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase());
};
const formatPluginName = (string) => { // eslint-disable-line
return toTitleCase(string.replace(/-/g, ' '));
};
const username = (repo) => {
if (!repo) {
return null;
}
const o = url.parse(repo);
var urlPath = o.path; // eslint-disable-line
if (urlPath.length && urlPath.charAt(0) === '/') {
urlPath = urlPath.slice(1);
}
urlPath = urlPath.split('/')[0];
return urlPath;
};
const getRuntime = (dirname) => {
if (dirname.match(/node/)) {
return 'nodeJS';
} else if (dirname.match(/python/)) {
return 'python';
} else if (dirname.match(/swift/)) {
return 'swift';
} else if (dirname.match(/php/)) {
return 'php';
} else if (dirname.match(/ruby/)) {
return 'ruby';
} else if (dirname.match(/golang/)) {
return 'golang';
} else if (dirname.match(/dotnet/)) {
return 'dotnet';
}
return 'nodeJS';
};
const config = {
transforms: {
/*
In README.md the below comment block adds the list to the readme
<!-- AUTO-GENERATED-CONTENT:START (GENERATE_SERVERLESS_EXAMPLE_TABLE)-->
plugin list will be generated here
<!-- AUTO-GENERATED-CONTENT:END -->
*/
SERVERLESS_EXAMPLE_TABLE() {
const examples = globby.sync(['**/package.json', '!node_modules/**/package.json', '!**/node_modules/**/package.json', '!package.json', '!**/bin/**/netcoreapp2.1/**/package.json']);
// Make table header
let md = '| Example | Runtime |\n';
md += '|:--------------------------- |:-----|\n';
examples.forEach((example) => {
const data = JSON.parse(fs.readFileSync(example, 'utf8'));
const dirname = path.dirname(example);
const exampleUrl = `https://github.com/serverless/examples/tree/master/${dirname}`;
const runtime = getRuntime(dirname);
const description = (data.description) ? `<br/> ${data.description}` : '';
// add table rows
md += `| [${formatPluginName(data.name)}](${exampleUrl}) ${description} | ${runtime} |\n`;
});
return md;
},
/*
In README.md the below comment block adds the list to the readme
<!-- AUTO-GENERATED-CONTENT:START (GENERATE_SERVERLESS_EXAMPLE_TABLE)-->
community examples list will be generated here
<!-- AUTO-GENERATED-CONTENT:END -->
*/
COMMUNITY_EXAMPLES_TABLE() {
const exampleFile = path.join(__dirname, 'community-examples.json');
const examples = JSON.parse(fs.readFileSync(exampleFile, 'utf8'));
// Make table header
let md = '| Example | Author |\n';
md += '|:-------|:------:|\n';
// Sort alphabetically
examples.sort((a, b) => a.name < b.name ? -1 : 1).forEach((data) => { // eslint-disable-line
// add table rows
const userName = username(data.githubUrl);
const profileURL = `http://github.com/${userName}`;
md += `| **[${formatPluginName(data.name)}](${data.githubUrl})** <br/>`;
md += ` ${data.description} | [${userName}](${profileURL}) |\n`;
});
return md.replace(/^\s+|\s+$/g, '');
},
},
};
const markdownPath = path.join(__dirname, 'README.md');
markdownMagic(markdownPath, config, () => {
console.log('Docs updated!'); // eslint-disable-line
});