-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgatsby-node.js
367 lines (336 loc) · 8.88 KB
/
gatsby-node.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
const path = require(`path`)
const fs = require(`fs`)
const sharp = require(`sharp`)
function encode(string) {
return encodeURIComponent(string)
.replace(/%20/g, ` `)
.replace(/%[0-9A-Fa-f]{2}/g, `_`)
}
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
}
}
}
}
`)
// 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
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) =>
fs.copyFileSync(`src/data/${img}`, `public/${img}`.toLowerCase())
)
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
.jpeg({ quality: 90 })
.toFile(
`public/devices/${brand}/${device}/thumb.jpeg`.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
})
}
}