-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgatsby-node.js
More file actions
491 lines (449 loc) · 12.1 KB
/
gatsby-node.js
File metadata and controls
491 lines (449 loc) · 12.1 KB
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
require(`dotenv`).config()
const axios = require(`axios`)
const path = require(`path`)
const fs = require(`fs`)
const sharp = require(`sharp`)
const FX_API_URL = `https://openexchangerates.org/api/latest.json`
async function fetchExchangeRates(reporter) {
const appId = process.env.OPEN_EXCHANGE_RATES_APP_ID
if (!appId) {
reporter.warn(
`OPEN_EXCHANGE_RATES_APP_ID not found in environment. Price filter will be disabled.`
)
return null
}
try {
const res = await axios.get(`${FX_API_URL}?app_id=${appId}`)
const data = res.data
if (typeof data.rates !== `object`) {
reporter.warn(`Invalid exchange rate response from Open Exchange Rates`)
return null
}
return data
} catch (err) {
reporter.warn(`Error fetching exchange rates: ${err.message || err}`)
return null
}
}
function encode(string) {
return encodeURIComponent(string)
.replace(/%20/g, ` `)
.replace(/%[0-9A-Fa-f]{2}/g, `_`)
}
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions
const typeDefs = `
type CurrencyConversion implements Node {
usedCurrencies: [String]
exchangeRates: JSON
}
`
createTypes(typeDefs)
}
exports.sourceNodes = async ({
actions,
createNodeId,
createContentDigest,
reporter,
graphql,
}) => {
const { createNode } = actions
const fxData = await fetchExchangeRates(reporter)
if (!fxData) {
// Create an empty node if no data, so the query doesn't fail if we didn't use createSchemaCustomization properly
// But with createSchemaCustomization it should be fine.
// However, if we want to ensure it's queryable and returns something:
const data = {
usedCurrencies: [],
exchangeRates: `{}`,
}
createNode({
...data,
id: createNodeId(`currency-conversion-data`),
parent: null,
children: [],
internal: {
type: `CurrencyConversion`,
contentDigest: createContentDigest(data),
},
})
return
}
const usedCurrencies = [`USD`, `EUR`, `JPY`, `GBP`, `INR`].sort()
const exchangeRates = {}
const { base: apiBase, rates } = fxData
for (const base of usedCurrencies) {
if (base === apiBase || rates[base]) {
exchangeRates[base] = {}
const rateToBase = base === apiBase ? 1 : rates[base]
for (const target of usedCurrencies) {
if (target === apiBase) {
exchangeRates[base][target] = 1 / rateToBase
} else if (rates[target]) {
exchangeRates[base][target] = rates[target] / rateToBase
}
}
}
}
const data = {
usedCurrencies,
exchangeRates: exchangeRates, // Store as structured JSON
}
createNode({
...data,
id: createNodeId(`currency-conversion-data`),
parent: null,
children: [],
internal: {
type: `CurrencyConversion`,
contentDigest: createContentDigest(data),
},
})
}
exports.createPages = async ({ actions, graphql, reporter }) => {
const { createPage } = actions
const markdownTemplate = path.resolve(`src/templates/markdownTemplate.js`)
const deviceDetailTemplate = path.resolve(
`src/templates/deviceDetailTemplate.js`
)
const deltaTemplate = path.resolve(`src/templates/deltaTemplate.js`)
const result = await graphql(`
{
allMarkdownRemark {
nodes {
frontmatter {
path
}
}
}
}
`)
// Handle errors
if (result.errors) {
reporter.panicOnBuild(`Error while running GraphQL query.`)
return
}
result.data.allMarkdownRemark.nodes.forEach((node) => {
createPage({
path: node.frontmatter.path,
component: markdownTemplate,
context: {}, // additional data can be passed via context
})
})
const result2 = await graphql(`
query {
allDevicesCsv(sort: [{ Brand: ASC }, { Device: ASC }]) {
edges {
node {
Brand
Device
Detail
Availability
Connection
Type
Notes
Class
Anatomy
Buttplug_C_
Buttplug_JS
Buttplug_Rust
Buttplug_Support_Notes
Win10_14939
Win10_15063
Win7
Win8
iOS
macOS
Linux
ChromeOS
Android
Thermometers
Suction
Speaker
Rotators
Pressure
Position
Outputs
Grips_Expanders
Heaters
Inputs
Lights
Linear_Actuators__Positional_
Linear_Actuators__Oscillating_
Estim
Camera
Buttons
Accelerometers
Vibrators
Oscillators
Pump
Affiliate_Link
XToys
XToys_Support_Notes
In_Possession
Has_Clones
Price
Currency
Price_Checked
}
}
}
}
`)
// Handle errors
if (result2.errors) {
reporter.panicOnBuild(`Error while running GraphQL query.`)
return
}
const devices = []
result2.data.allDevicesCsv.edges.forEach((dev, i) => {
dev = dev.node
if (dev.Brand === `` || dev.Device === ``) {
return
}
dev.id = i
const cs = dev.Buttplug_C_.length > 0 && dev.Buttplug_C_ !== `0`
const js = dev.Buttplug_JS.length > 0 && dev.Buttplug_JS !== `0`
const rs = dev.Buttplug_Rust.length > 0 && dev.Buttplug_Rust !== `0`
dev.Buttplug_CSharp = dev.Buttplug_C_
delete dev.Buttplug_C_
dev.ButtplugSupport = 0
if (cs) dev.ButtplugSupport |= 1
if (js) dev.ButtplugSupport |= 2
if (rs) dev.ButtplugSupport |= 4
dev.Anatomy = (dev.Anatomy === undefined ? `` : dev.Anatomy)
.split(`,`)
.map((a) => a.trim())
.filter((a) => a.length > 0)
const bpProps = [
`ButtplugSupport`,
`Buttplug_CSharp`,
`Buttplug_JS`,
`Buttplug_Rust`,
`Buttplug_Support_Notes`,
`Win10_14939`,
`Win10_15063`,
`Win7`,
`Win8`,
`iOS`,
`macOS`,
`Linux`,
`ChromeOS`,
`Android`,
]
dev.Buttplug = {}
bpProps.forEach((prop) => {
dev.Buttplug[prop] = dev[prop]
delete dev[prop]
})
const xtoysProps = [`XToysSupport`, `XToys_Support_Notes`]
dev.XToysSupport = dev.XToys === `1` ? 1 : 0
delete dev.XToys
dev.XToys = {}
xtoysProps.forEach((prop) => {
dev.XToys[prop] = dev[prop]
delete dev[prop]
})
const inputFeatures = [
`Thermometers`,
`Pressure`,
`Position`,
`Camera`,
`Buttons`,
`Accelerometers`,
]
inputFeatures.sort()
const outputFeatures = [
[`Camera`, `Camera`],
[`Estim`, `Estim`],
[`Grips_Expanders`, `Grips/Expanders`],
[`Heaters`, `Heaters`],
[`Lights`, `Lights`],
[`Linear_Actuators__Positional_`, `Linear Actuators (Positional)`],
[`Linear_Actuators__Oscillating_`, `Linear Actuators (Oscillating)`],
[`Speaker`, `Speaker`],
[`Suction`, `Suction`],
[`Rotators`, `Rotators`],
[`Oscillators`, `Oscillators`],
[`Vibrators`, `Vibrators`],
[`Pump`, `Pump`],
]
outputFeatures.sort()
dev.Features = {
Inputs: {},
Outputs: {},
InputsSummary: dev.Inputs,
OutputsSummary: dev.Outputs,
}
delete dev.Inputs
delete dev.Outputs
inputFeatures.forEach((prop) => {
dev.Features.Inputs[prop] = dev[prop]
delete dev[prop]
})
outputFeatures.forEach((prop) => {
dev.Features.Outputs[prop[1]] = dev[prop[0]]
delete dev[prop[0]]
})
devices.push(dev)
})
for (const dev of devices) {
console.log(`Processing ${dev.Brand} ${dev.Device}`)
const brand = encode(dev.Brand)
const device = encode(dev.Device)
if (!fs.existsSync(`src/data/devices/${brand}`)) {
fs.mkdirSync(`src/data/devices/${brand}`)
}
if (!fs.existsSync(`src/data/devices/${brand}/${device}`)) {
fs.mkdirSync(`src/data/devices/${brand}/${device}`)
}
const images = await graphql(`
query {
allFile(filter: {relativeDirectory: {eq: "devices/${brand}/${device}"}, extension: {in: ["jpg","jpeg","png","gif","jfif","webp"]}}) {
edges {
node {
relativePath
}
}
}
}`)
dev.images = images.data.allFile.edges
.map((e) => `/` + e.node.relativePath)
.sort()
if (dev.images == null) {
dev.images = []
}
if (dev.images.length === 0) {
continue
}
// I wish I had a better way to do this... Publish to public
if (!fs.existsSync(`public/devices`)) {
fs.mkdirSync(`public/devices`)
}
if (!fs.existsSync(`public/devices/${brand}`.toLowerCase())) {
fs.mkdirSync(`public/devices/${brand}`.toLowerCase())
}
if (!fs.existsSync(`public/devices/${brand}/${device}`.toLowerCase())) {
fs.mkdirSync(`public/devices/${brand}/${device}`.toLowerCase())
}
dev.images.forEach((img, i) => {
const oimg = img.toLowerCase()
if (!img.toLowerCase().endsWith(`.wepb`)) {
const nimg = oimg.substring(0, img.lastIndexOf(`.`)) + `.wepb`
const fImg = sharp(`src/data/${img}`)
fImg
.toFile(`public/${nimg}`)
.then((_) => {
dev.images[i] = nimg
})
.catch((err) => {
console.error(err)
fs.copyFileSync(`src/data/${img}`, `public/${oimg}`)
})
} else {
fs.copyFileSync(`src/data/${img}`, `public/${oimg}`)
}
})
if (dev.images.length > 0) {
const fImg = sharp(`src/data/${dev.images[0]}`).resize({
width: 100,
height: 100,
fit: `contain`,
background: `#fff`,
})
fImg
.metadata()
.then(async function (metadata) {
if (metadata.hasAlpha) {
return sharp({
create: {
width: 100,
height: 100,
background: `#fff`,
channels: 4,
},
})
.composite([{ input: await fImg.toBuffer() }])
.flatten()
}
return fImg
})
.then((img) =>
img.toFile(
`public/devices/${brand}/${device}/thumb.webp`.toLowerCase()
)
)
.catch((err) => console.error(err))
}
dev.images = dev.images.map((e) => e.toLowerCase())
}
devices.sort((a, b) => {
let res = a.Brand.localeCompare(b.Brand, `en`, {
sensitivity: `base`,
caseFirst: false,
})
if (res === 0) {
res = a.Device.localeCompare(b.Device, `en`, {
sensitivity: `base`,
caseFirst: false,
})
}
return res
})
const rawJson = JSON.stringify(devices)
await new Promise((resolve, reject) => {
fs.writeFile(`public/devices.json`, rawJson, `utf8`, function (err) {
if (err) {
reject(err)
return
}
resolve(true)
})
}).catch((err) => {
reporter.panicOnBuild(
`An error occured while writing JSON Object to File.`,
err
)
})
await new Promise((resolve, reject) => {
fs.writeFile(
`public/devices.jsonp`,
`getIoSTData(${rawJson})`,
`utf8`,
function (err) {
if (err) {
reject(err)
return
}
resolve(true)
}
)
}).catch((err) => {
reporter.panicOnBuild(
`An error occured while writing JSONP Object to File.`,
err
)
})
// Per-device detail pages
for (const dev of devices) {
createPage({
path:
`/devices/` +
encode(dev.Brand).toLowerCase() +
`/` +
encode(dev.Device).toLowerCase(),
component: deviceDetailTemplate,
context: { device: dev }, // additional data can be passed via context
})
}
// Change history pages
const deltas =
JSON.parse(fs.readFileSync(__dirname + `/src/data/deltas.json`)) ?? []
for (const delta of deltas) {
createPage({
path: `/changes/` + delta.date,
component: deltaTemplate,
context: { delta }, // additional data can be passed via context
})
}
}