-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.js
290 lines (231 loc) · 8.92 KB
/
index.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
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
/* eslint-disable prettier/prettier */
'use strict';
const BroccoliMergeTrees = require('broccoli-merge-trees');
const compareVersions = require('compare-versions');
const Funnel = require('broccoli-funnel');
const resolve = require('resolve');
const StaticSiteJson = require('broccoli-static-site-json');
const walkSync = require('walk-sync');
const writeFile = require('broccoli-file-creator');
const yaml = require('js-yaml');
const yamlFront = require('yaml-front-matter');
const { readFileSync, existsSync } = require('fs');
const { join } = require('path');
const { Serializer } = require('jsonapi-serializer');
const { extname } = require('path');
const VersionsSerializer = new Serializer('version', {
attributes: [
'allVersions',
'currentVersion',
'ltsVersions'
],
});
module.exports = {
name: require('./package').name,
urlsForPrember() {
const guidemakerOptions = this.app.options.guidemaker || {};
const guidesSrcPkg = this.getGuidesSrcPkg();
let urls = []
const versions = this.getVersions();
if(!versions) {
const paths = walkSync(`${guidesSrcPkg}/guides`);
const mdFiles = paths.
filter(path => extname(path) === '.md')
.map(path => path.replace(/\.md/, ''))
.map(path => path.replace(/\/index$/, ''));
mdFiles.forEach((file) => {
urls.push(`/release/${file}`)
});
urls.push('/release')
} else {
let premberVersions = versions.allVersions;
if(guidemakerOptions.premberVersionFilter) {
if(typeof guidemakerOptions.premberVersionFilter === 'function') {
premberVersions = versions.allVersions.filter(guidemakerOptions.premberVersionFilter);
} else if (typeof guidemakerOptions.premberVersionFilter === 'string') {
premberVersions = versions.allVersions.filter((version) => {
return compareVersions.compare(version, guidemakerOptions.premberVersionFilter, '>=');
});
} else {
throw Error(`'premberVersionFilter' should be either a function or a string of the version you want to build from`);
}
}
// always build release
premberVersions.push('release');
urls = [...urls, ...premberVersions.map(version => `/${version}`)];
premberVersions.forEach((premberVersion) => {
const filesVersion = premberVersion === versions.currentVersion ? 'release' : premberVersion;
const paths = walkSync(`${guidesSrcPkg}/guides/${filesVersion}`);
const mdFiles = paths.
filter(path => extname(path) === '.md')
.map(path => path.replace(/\.md/, ''))
.map(path => path.replace(/\/index$/, ''));
mdFiles.forEach((file) => {
urls.push(`/${premberVersion}/${file}`)
})
});
const paths = walkSync(`${guidesSrcPkg}/guides/release`);
const mdFiles = paths.
filter(path => extname(path) === '.md')
.map(path => path.replace(/\.md/, ''))
.map(path => path.replace(/\/index$/, ''));
mdFiles.forEach((file) => {
urls.push(`/${versions.currentVersion}/${file}`)
});
}
return urls;
},
getVersions() {
const guidesSrcPkg = this.getGuidesSrcPkg();
if(!existsSync(`${guidesSrcPkg}/versions.yml`) && !existsSync(`${guidesSrcPkg}/guides/versions.yml`)) {
return;
}
let versionsFile;
if (existsSync(`${guidesSrcPkg}/versions.yml`)) {
// eslint-disable-next-line no-console
console.warn(`Defining your 'versions.yml' file in the root folder is now deprecated.
You should move it into the 'guides' folder.
`);
versionsFile = `${guidesSrcPkg}/versions.yml`;
} else {
versionsFile = `${guidesSrcPkg}/guides/versions.yml`;
}
return yaml.safeLoad(readFileSync(versionsFile, 'utf8'));
},
netlifyRedirects() {
const redirects = [
'/ /release/',
'/current/* /release/:splat',
];
const guidesSrcPkg = this.getGuidesSrcPkg();
const paths = walkSync(`${guidesSrcPkg}/guides`)
.filter(path => extname(path) === '.md')
.map(path => ({
path: path.replace(/\/index.md$/, ''),
content: readFileSync(join(guidesSrcPkg, 'guides', path)),
}));
const versions = this.getVersions();
if(!versions) {
paths.forEach((file) => {
const front = yamlFront.loadFront(file.content);
if (front.redirect) {
let redirect;
if(front.redirect.match(/^https?:\/\//)) {
redirect = front.redirect;
} else if (front.redirect.endsWith('/index')) {
redirect = `/release/${front.redirect.replace(/\/index$/, '')}`;
} else {
redirect = `/release/${front.redirect}`;
}
redirects.push(`/release/${file.path.replace(/\.md$/, '')} ${redirect}`)
}
})
} else {
paths.forEach((file) => {
const front = yamlFront.loadFront(file.content);
if (front.redirect) {
let pathMatch = file.path.match(/^([^/]*)/);
let version = pathMatch[1];
let redirect;
if(front.redirect.match(/^https?:\/\//)) {
redirect = front.redirect;
} else if (front.redirect.endsWith('/index')) {
redirect = `/${version}/${front.redirect.replace(/\/index$/, '')}`;
} else {
redirect = `/${version}/${front.redirect}`;
}
redirects.push(`/${file.path.replace(/\.md$/, '')} ${redirect}`)
// also add current version number redirect
if(version === 'release') {
redirects.push(`/${file.path.replace(/\.md$/, '').replace(/^release\//, `${versions.currentVersion}/`)} ${redirect}`)
}
}
})
}
return redirects;
},
getGuidesSrcPkg() {
let appPrefix = join(this.project.configPath(), '../..');
if(this.app.options.guidemaker && this.app.options.guidemaker.source) {
try {
return resolve.sync(this.app.options.guidemaker.source, { basedir: process.cwd() });
} catch (e) {
// try getting node_modules directly
let fullPath = join(process.cwd(), 'node_modules', this.app.options.guidemaker.source);
if(existsSync(fullPath)) {
return fullPath;
}
}
} else if(existsSync(join(appPrefix, 'guides'))) {
return appPrefix;
}
},
treeForPublic() {
let guidesSrcPkg = this.getGuidesSrcPkg();
let broccoliTrees = [];
// if there is an external guides source
if(guidesSrcPkg !== process.cwd()) {
if(existsSync(`${guidesSrcPkg}/public`)) {
broccoliTrees.push(new Funnel(`${guidesSrcPkg}/public`))
}
}
if(!guidesSrcPkg) {
throw new Error('You must either define "source" in your ember-cli-build or have a `guides` directory in your project.')
}
const versions = this.getVersions();
const sharedOptions = {
contentTypes: ['content', 'description', 'toc'],
type: 'contents',
attributes: ['canonical', 'redirect'],
}
// we can't check the environment here so we will only include default config
const addonConfig = require(this.project.configPath())();
// the source package does not support versions
if(!versions) {
broccoliTrees.push(new StaticSiteJson(`${guidesSrcPkg}/guides`, {
contentFolder: `content/release`,
showdownConfig: addonConfig.showdown,
...sharedOptions,
}))
} else {
const jsonTrees = versions.allVersions.map((listedVersion) => {
let version = listedVersion === versions.currentVersion ? 'release' : listedVersion;
return new StaticSiteJson(`${guidesSrcPkg}/guides/${version}`, {
contentFolder: `content/${version}`,
showdownConfig: addonConfig.showdown,
...sharedOptions,
})
});
jsonTrees.push(new StaticSiteJson(`${guidesSrcPkg}/guides/release`, {
contentFolder: `content/${versions.currentVersion}`,
showdownConfig: addonConfig.showdown,
...sharedOptions,
}));
// setting an ID so that it's not undefined
versions.id = 'versions';
const versionsFile = writeFile('/content/versions.json', JSON.stringify(VersionsSerializer.serialize(versions)));
broccoliTrees.push(versionsFile);
broccoliTrees = [...broccoliTrees, ...jsonTrees];
}
return new BroccoliMergeTrees(broccoliTrees);
},
config(env, config) {
let guidemaker = config.guidemaker || {};
let emberMetaConfig = {
description: guidemaker.description,
title: guidemaker.title,
}
let fastboot = config.fastboot || {};
if(fastboot.hostWhitelist) {
fastboot.hostWhitelist.push(/localhost:\d+/);
} else {
fastboot.hostWhitelist = [/localhost:\d+/];
}
return {
fastboot,
'ember-meta': emberMetaConfig,
// TODO: investigate this bug - remove it and see why it breaks
'ember-collapsible-panel': config['ember-collapsible-panel'] || {}
}
},
};