forked from jamstack-cms/jamstack-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.esm.js
474 lines (440 loc) · 13.4 KB
/
gatsby-node.esm.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
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
const { slugify } = require('./src/utils/helpers')
import fs from 'fs'
import urlRegex from 'url-regex'
import Amplify, { Storage } from 'aws-amplify'
import getImageKey from './src/utils/getImageKey'
import getRawPath from './src/utils/getRawPath'
import downloadImage from './src/utils/downloadImage'
import config from './jamstack-config'
import { getSettings } from './src/graphql/queries'
const blogPost = require.resolve(`./src/templates/blog-post.js`)
const heroPage = require.resolve(`./src/templates/hero-page.js`)
let APPSYNC_KEY
if(process.env.APPSYNC_KEY) {
APPSYNC_KEY = process.env.APPSYNC_KEY
} else {
const JSConfig = require('./jamstack-api-key.js')
APPSYNC_KEY = JSConfig['aws_appsync_apiKey']
}
const axios = require('axios')
const graphqltag = require('graphql-tag')
const gql = require('graphql')
const { print } = gql
Amplify.configure(config)
const {
aws_user_files_s3_bucket: bucket
} = config
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions
const postData = await graphql(` {
appsync {
itemsByContentType(limit: 500, contentType: "Post") {
items {
content
createdAt
description
id
published
title
cover_image
author {
username
avatarUrl
}
}
}
}
}`)
const pageData = await graphql(` {
appsync {
listPages(limit: 500) {
items {
id
name
slug
content
components
published
}
}
}
}`)
const webPages = pageData.data.appsync.listPages.items.filter(page => page.published)
const blogPosts = postData.data.appsync.itemsByContentType.items.filter(post => post.published)
const images = await Storage.list('images/')
const imageKeys = images.map(i => i.key)
// create web pages
await Promise.all(
webPages.map(async(page, index) => {
if (!page) return
if (!fs.existsSync(`${__dirname}/public/downloads`)){
fs.mkdirSync(`${__dirname}/public/downloads`);
}
const content = page.content
const contentUrls = content.match(urlRegex())
let images = []
if (contentUrls) {
contentUrls.forEach(url => {
if(url.includes(bucket)) {
const key = getImageKey(url)
const keyWithPath = `images/${key}`
if (imageKeys.indexOf(keyWithPath) !== -1) {
const image = Storage.get(keyWithPath)
images.push(image)
}
}
})
}
let signedUrls = []
if (images.length) {
try {
signedUrls = await Promise.all(images)
} catch (err) {
console.log('error getting signed urls::::', err)
}
}
let urlIndex = 0
const pathsToDownload = []
const rawPaths = []
// create array of raw local image URLs (rawPaths)
// we use these raw paths locally to reference the downloaded images.
signedUrls.forEach(url => rawPaths.push(`${getRawPath(url)}`))
// create array of images with signed paths so we can download them in the next step
signedUrls.forEach(signedUrl => pathsToDownload.push(downloadImage(signedUrl)))
if (pathsToDownload.length) {
// if there are any images, we download them to the local file system
try {
await Promise.all(pathsToDownload)
} catch (err) {
console.log('error downloading images to file system...', err)
}
}
let updatedContent = content.replace(urlRegex(), (url) => {
if(url.includes(bucket)) {
const chosenUrl = rawPaths[urlIndex]
const split = chosenUrl.split('/')
const relativeUrl = `../downloads/${split[split.length - 1]}`
urlIndex++
return relativeUrl
} else {
return url
}
})
page['content'] = updatedContent
const previous = index === webPages.length - 1 ? null : webPages[index + 1].node
const next = index === 0 ? null : webPages[index - 1]
createPage({
path: page.slug,
component: heroPage,
context: {
id: page.id,
content: page.content,
title: page.title,
published: page.published,
createdAt: page.createdAt,
slug: page.slug,
type: "appsyncData",
previous,
next,
},
})
})
)
// create blog post pages
await Promise.all(
blogPosts.map(async(post, index) => {
if (!post) return
if (!fs.existsSync(`${__dirname}/public/downloads`)){
fs.mkdirSync(`${__dirname}/public/downloads`);
}
const content = post.content
const contentUrls = content.match(urlRegex());
let images = []
if (contentUrls) {
contentUrls.forEach(url => {
if(url.includes(bucket)) {
const key = getImageKey(url)
const cleanedKey = key.replace(/[{()}]/g, '');
const keyWithPath = `images/${cleanedKey}`
if (imageKeys.indexOf(keyWithPath) !== -1) {
const image = Storage.get(keyWithPath)
images.push(image)
}
}
})
}
let signedUrls = []
if (images.length) {
try {
signedUrls = await Promise.all(images)
} catch (err) {
console.log('error getting signed urls::::', err)
}
}
let urlIndex = 0
const pathsToDownload = []
const rawPaths = []
// create array of raw local image URLs (rawPaths)
// we use these raw paths locally to reference the downloaded images.
signedUrls.forEach(url => rawPaths.push(`${getRawPath(url)})`))
// create array of images with signed paths so we can download them in the next step
signedUrls.forEach(signedUrl => pathsToDownload.push(downloadImage(signedUrl)))
// download cover image
let coverImage
if (post.cover_image) {
const key = getImageKey(post.cover_image)
const keyWithPath = `images/${key}`
if (imageKeys.indexOf(keyWithPath) !== -1) {
const signedImage = await Storage.get(keyWithPath)
pathsToDownload.push(downloadImage(signedImage))
coverImage = getImageKey(post.cover_image)
coverImage = `../downloads/${coverImage}`
}
}
if (pathsToDownload.length) {
// if there are any images, we download them to the local file system
try {
await Promise.all(pathsToDownload)
} catch (err) {
console.log('error downloading images to file system...', err)
}
}
let updatedContent = content.replace(urlRegex(), (url) => {
if(url.includes(bucket)) {
const chosenUrl = rawPaths[urlIndex]
const split = chosenUrl.split('/')
const relativeUrl = `../downloads/${split[split.length - 1]}`
urlIndex++
return relativeUrl
} else {
return url
}
})
post['content'] = updatedContent
if (post.author.avatarUrl) {
const image = post.author.avatarUrl
const signedImage = await Storage.get(image)
await downloadImage(signedImage)
const key = getImageKey(image)
post['authorAvatar'] = `../downloads/${key}`
}
const previous = index === blogPosts.length - 1 ? null : blogPosts[index + 1].node
const next = index === 0 ? null : blogPosts[index - 1]
createPage({
path: slugify(post.title),
component: blogPost,
context: {
id: post.id,
content: post.content,
title: post.title,
published: post.published,
createdAt: post.createdAt,
cover_image: post.cover_image,
local_cover_image: coverImage,
description: post.description,
author: post.author.username,
authorAvatar: post.authorAvatar ? post.authorAvatar : null,
slug: slugify(post.title),
type: "appsyncData",
previous,
next,
},
})
})
)
}
exports.onCreatePage = async ({ page, actions }) => {
const { createPage } = actions
if (page.path.match(/^\/editpost/)) {
page.matchPath = '/editpost/*'
createPage(page)
}
if (page.path.match(/^\/previewpost/)) {
page.matchPath = '/previewpost/*'
createPage(page)
}
if (page.path.match(/^\/editpage/)) {
page.matchPath = '/editpage/*'
createPage(page)
}
}
exports.sourceNodes = async ({ actions, createNodeId, createContentDigest }) => {
const { createNode } = actions
const imageKeys = []
let authorImages = []
const getSettingsData = await axios({
url: config.aws_appsync_graphqlEndpoint,
method: 'post',
headers: {
'x-api-key': APPSYNC_KEY
},
data: {
query: print(graphqltag(getSettings)),
variables: { id: 'jamstack-cms-theme-info' }
}
})
const { theme, categories, adminGroups, border, borderWidth, description } = getSettingsData.data.data.getSettings ? getSettingsData.data.data.getSettings : {}
const themeInfo = {
theme: theme || 'light',
categories: categories || 'none',
adminGroups: adminGroups || 'none',
borderWidth: borderWidth || 'none',
border: border || 'none',
description: description || 'none'
}
const data = {
key: 'theme-info',
data: themeInfo
}
const nodeMeta = {
id: createNodeId(`my-data-${data.key}`),
parent: null,
children: [],
internal: {
type: `ThemeInfo`,
contentDigest: createContentDigest(data)
}
}
const node = Object.assign({}, data, nodeMeta)
createNode(node)
const listPostsQuery = graphqltag(`
query itemsByContentType {
itemsByContentType(limit: 500, contentType: "Post") {
items {
content
createdAt
description
id
published
title
cover_image
author {
avatarUrl
}
}
}
}
`)
const listPagesQuery = graphqltag(`
query listPages {
listPages(limit: 500) {
items {
id
name
slug
content
components
published
}
}
}
`)
try {
// create page slugs for page creation
const listPagesData = await axios({
url: config.aws_appsync_graphqlEndpoint,
method: 'post',
headers: {
'x-api-key': APPSYNC_KEY
},
data: {
query: print(listPagesQuery)
}
})
let pages = listPagesData.data.data.listPages.items
pages = pages.filter(page => page.published)
const slugs = pages.map(page => page.slug)
const slugData = {
key: 'page-slugs',
data: slugs.length ? slugs : 'none'
}
const slugNodeMeta = {
id: createNodeId(`my-data-${slugData.key}`),
parent: null,
children: [],
internal: {
type: `Slugs`,
contentDigest: createContentDigest(slugData)
}
}
const slugNode = Object.assign({}, slugData, slugNodeMeta)
createNode(slugNode)
} catch (err) {
console.log('error fetching data..:', err)
}
try {
const listPostsData = await axios({
url: config.aws_appsync_graphqlEndpoint,
method: 'post',
headers: {
'x-api-key': APPSYNC_KEY
},
data: {
query: print(listPostsQuery)
}
})
const blogPosts = listPostsData.data.data.itemsByContentType.items
blogPosts.map(post => {
const content = post.content
const contentUrls = content.match(urlRegex());
if (contentUrls) {
contentUrls.forEach(url => {
if(url.includes(bucket)) {
const key = getImageKey(url)
const cleanedKey = key.replace(/[{()}]/g, '');
const keyWithPath = `images/${cleanedKey}`
imageKeys.push(keyWithPath)
}
})
}
if (post.cover_image) {
const key = getImageKey(post.cover_image)
const cleanedKey = key.replace(/[{()}]/g, '');
const keyWithPath = `images/${cleanedKey}`
imageKeys.push(keyWithPath)
}
if (post.author.avatarUrl) {
const key = getImageKey(post.author.avatarUrl)
authorImages.push(key)
}
})
if (authorImages.length) {
authorImages = [...new Set(authorImages)]
authorImages = authorImages.map(avatar => `../downloads/${avatar}`)
}
// create main image key array for media resources
const imageData = {
key: 'image-keys',
data: imageKeys.length ? imageKeys : 'none'
}
const imageNodeMeta = {
id: createNodeId(`my-data-${imageData.key}`),
parent: null,
children: [],
internal: {
type: `ImageKeys`,
contentDigest: createContentDigest(imageData)
}
}
const imageNode = Object.assign({}, imageData, imageNodeMeta)
createNode(imageNode)
// create author image array for displaying author avatars
const authorImageData = {
key: 'author-images',
data: authorImages.length ? authorImages : 'none'
}
const authorImageNodeMeta = {
id: createNodeId(`my-data-${authorImageData.key}`),
parent: null,
children: [],
internal: {
type: `AuthorImages`,
contentDigest: createContentDigest(authorImageData)
}
}
const authorImageNode = Object.assign({}, authorImageData, authorImageNodeMeta)
createNode(authorImageNode)
} catch(error) {
console.log('error creating image keys.. :', error)
}
}