-
Notifications
You must be signed in to change notification settings - Fork 3
/
airtable.js
269 lines (216 loc) · 10.5 KB
/
airtable.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
const fs = require('fs');
const Airtable = require('airtable');
const marked = require('marked');
const { deepCompare, downloadAndSaveImage, writeMarkdownFile, dashCaseString } = require('./helpers/utilities');
// Load environment variables
require('dotenv').config();
marked.use({
breaks: true,
gfm: true,
})
const websiteContentBase = new Airtable({apiKey: process.env.AIRTABLE_ACCESS_TOKEN}).base(process.env.AIRTABLE_BASE_ID);
const xdContent = {};
const cacheFilePath = './airtable-cache.json';
const newsFilePath = './collections/_import/news.md';
// Image ingestion to check for new images and save them to our repo
const checkAndCleanImages = (newData, cacheData) => {
const promisesArray = Array.from(Object.entries(newData)).map(async (contentArray, index) => {
const contentName = contentArray[0];
const contentData = contentArray[1];
let count = 0;
for (const item of contentData) {
const contentImages = item['Images'];
if (!contentImages) continue;
// Have cache on hand at each content level
const cacheEquivalent = Array.from(Object.entries(cacheData))[index][1][count];
// Construct our new image path from the content type and item name
const names = item["Author(s)"];
let name;
if (names.length === 1) {
name = names[0].name.toLowerCase().replaceAll(' ', '-');
}
const directory = `assets/img/import/${contentName.toLowerCase().replaceAll(' ', '_')}`;
// Lookup the same image from our cache
const cachedImage = cacheEquivalent['Images'].find(image => {
return image.imageId === item.ID || image.id === contentImages[0].id;
});
// Check if image already exists in this location (newLocalPath key exists)
if (cachedImage.newLocalPath) {
// Replace the image url with the local one, so our new/cache comparison lines up
contentImages[0].url = contentImages[0].newLocalPath = cachedImage.newLocalPath;
} else {
// If new, copy image file to our repo then replace with new local path
await downloadAndSaveImage(directory, name, contentImages[0].url)
.then((newLocalImagePath) => {
if (typeof newLocalImagePath !== 'string') return;
// Replace the image url with the local one, so our new/cache comparison lines up
contentImages[0].url = contentImages[0].newLocalPath = newLocalImagePath;
})
}
contentImages[0].imageId = item.ID;
count++;
}
});
return Promise.all(promisesArray);
}
// Fetch our airtable content and generate some markup with it
// Optionally (if newer), write to our cache file with new data
const fetchAirtablePromise = () => new Promise((resolve, reject) => {
websiteContentBase('xd.gov Content').select({
// Selecting the first 3 records in Grid view:
maxRecords: 50,
view: "Grid view"
}).eachPage((records, fetchNextPage) => {
// This function will get called for each page of records.
// Grab only content with a content type field
const filteredRecords = records.filter(record => record.fields['Content Type'] !== undefined);
// Filter content types to set as xdContent keys
const xdFieldNames = new Set(filteredRecords.filter(record => record.fields['Content Type'] !== undefined).map(record => record.fields['Content Type'][0]));
xdFieldNames.forEach(name => xdContent[name] = []);
filteredRecords.forEach((record) => {
let fieldType = record.fields['Content Type'];
xdContent[fieldType].push(record.fields);
});
// If there are more records, `page` will get called again.
// If there are no more records, `done` will get called.
fetchNextPage();
resolve(xdContent);
}, function done(err) {
if (err) { console.error(err); reject(err); return; }
});
});
const findProject = (projectId) => new Promise((resolve, reject) => {
websiteContentBase('All Projects').find(projectId, (err, record) => {
if (err) { console.error(err); return; }
return resolve(record.fields['Project Name']);
});
});
const writeBioMarkdown = ({ Name, Images, Title, Description, Blurb, CohortYear, Skillsets, ProjectsList}) => {
return [`---`,
`name: ${Name}`,
`title: ${Name}`,
`permalink: /team/${dashCaseString(Name)}/`,
`image_id: ${Images && Images[0].id}`,
`image_path: ${Images && Images[0].newLocalPath}`,
`job_title: ${Title}`,
`cohort_year: ${CohortYear || ''}`,
`portfolio: ${ProjectsList?.join(",") || ''}`,
`description: ${marked.parse(Description || '')}`,
`blurb: ${Blurb && marked.parse(Blurb)}`,
`skillsets: ${Skillsets?.join(",") || ''}`,
`---`].join('\n');
}
const generateXdMarkdown = (content) => {
const fullMarkdownObj = {};
for (const contentType in content) {
const contentMarkdownArray = [];
let markdown = '';
// Create a landing page for News and Bios only
if (contentType === 'News') {
markdown += `---\n layout: news-landing\n title: News\n---`
} else if (contentType === 'Bio') {
markdown += `---\n layout: bios-landing\n title: Bios\n---`
}
// Loop through content types and generate unique markdown for each
content[contentType].map(async (obj) => {
const { Title, Images, Attachments, Blurb, Projects } = obj;
const CohortYear = obj['What is your ETF cohort year?'];
const Skillsets = obj['What is your area of expertise?'];
const Description = obj['Brief Description'];
let itemMarkdown = ``;
switch (contentType) {
// case 'News':
// if ([Name, Blurb].some(item => item === undefined)) return;
// itemMarkdown += `
// \n<div>\n
// <h3>${Name}</h3>\n
// ${marked.parse(Blurb)}
// </div>
// `;
// break;
case 'Bio':
const Name = obj['Author(s)'][0].name; // Bio should have one author
const directory = '/collections/_team_members';
const ProjectsList = [];
const content = { Name, Images, Title, Description, Blurb, CohortYear, Skillsets, ProjectsList };
let bioMarkdownAttrs = '';
if (Skillsets !== undefined) {
await Promise.all(Projects.map(async (projectId) => {
const skillsetName = await findProject(projectId);
content.ProjectsList.push(skillsetName);
}));
}
bioMarkdownAttrs = writeBioMarkdown(content);
await writeMarkdownFile(directory, Name, bioMarkdownAttrs);
break;
case 'Project':
// console.log('Project', obj);
// if ([Name, Title, Images, Blurb, Portfolio, Attachments].some(item => item === undefined)) return;
// itemMarkdown += `---\n layout: project\n title: ${Title} Project\n---`
// // TODO: Create unique project file path from title and store it
// itemMarkdown += `
// \n<div>\n
// <img id="${Images[0].id}" alt="Image of ${Name}" src="${Images[0].newLocalPath}" />\n
// <h1>${Title}</h1>\n
// <h4>Author(s): ${Name}</h4>\n
// <h4>Project Status: ${Portfolio}</h4>\n
// <div class="breadcrumb"></div>\n
// ${marked.parse(Blurb)}\n
// <p>Materials: ${Attachments}</p>
// </div>\n
// --End--
// `;
break;
}
markdown += itemMarkdown;
})
contentMarkdownArray.push(markdown)
fullMarkdownObj[contentType] = contentMarkdownArray;
}
// Keep log for Action debugging
// console.log(fullMarkdownObj);
return fullMarkdownObj;
}
(async () => {
const newAirtableData = await fetchAirtablePromise();
const cacheData = JSON.parse(await fs.promises.readFile(cacheFilePath));
// Before we compare this data to cache, we need to sanitize the image paths
try {
await checkAndCleanImages(newAirtableData, cacheData);
console.log('Check images complete')
} catch (error) {
console.error('An error has occurred ', error);
}
// Compare our cache with the newly fetched data.
// If the same, we don't need to continue.
if (deepCompare(cacheData, newAirtableData)) {
console.log('Data is a match to cache, aborting.');
return;
}
const markdown = generateXdMarkdown(newAirtableData);
// Write to json airtable-cache file
try {
await fs.promises.writeFile(cacheFilePath, JSON.stringify(newAirtableData, null, 2));
console.log('Data written successfully to disk');
} catch (error) {
console.error('An error has occurred ', error);
return;
}
// Write to news file
try {
await fs.promises.writeFile(newsFilePath, markdown['News']);
console.log('News markdown written successfully to disk');
} catch (error) {
console.error('An error has occurred ', error);
return;
}
// TODO: Create Bio pages individually
// TODO: Create Project pages individually
// First separate project markdown by separator...
markdown['Project'] = markdown['Project'][0].split('--End--');
// Then Write project pages to disk per entry
markdown['Project'].forEach((project) => {
// Must reference stored file path (see: TODO in generateXdMarkdown() )
// [Code goes here]
})
})();