-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransformer.js
371 lines (337 loc) · 15.3 KB
/
transformer.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
const fs = require('fs');
const yaml = require('yaml');
const parseMD = require('parse-md');
const NC_COLLECTION = 'collections';
const NC_FIELDS = 'fields';
const NC_LIST = 'list';
const NC_RELATION = 'relation';
const NC_DEFAULT_FORMAT = 'frontmatter'; //if format not specified
const NC_DEFAULT_ID = 'title'; //if identifier_field not specified
const INDENT = "\t";
const SUPPORTED_FORMATS = ['json','frontmatter'];
const PRINT_LOG = true;
const USE_FILENAME_AS_ID = true; //Use if Slug (=Filename) is used as reference in relations (all relation must have valueField: "{{slug}}") else the identifier_field property must be set or title provided!
exports.load = function(cmsConfigFilePath, // full path to config file including name
contentRootPath, // root folder where the folder path defined in config.yml starts
api // the actions of the gridsome API
){
//Preparation: parse config.yml of NetlifyCMS to get collection's schema information and init loader
var parser = new SchemaParser(cmsConfigFilePath);
if(parser.initialized){
var loader = new ContentLoader(parser.parseCollections(), contentRootPath, api);
parser.generateGraphQueries(true, "FullExampleQueries.txt");
parser.generateGraphQueries(false, "TrimmedExampleQueries.txt");
loader.load();
}
};
class SchemaCollection{
constructor(name, label, folder, format, idFieldName){
this.name = name;
this.label = label;
this.folder = folder;
//this.format = ( format === undefined ) ? NC_DEFAULT_FORMAT : format;
this.format = format;
this.idFieldName = idFieldName;
this.fields = new Map();
this.gsCollection = undefined; // Will be added during load
this.isBlocked = false; // For load handling - block collection if format is not supported
}
addField(fieldName, fieldNode){
this.fields.set(fieldName, fieldNode);
}
getGraphQuery(fullExpand){
return "query{\n" + INDENT + this.name + '(id: "<ID>"){\n' + this.getFieldQuery(INDENT + INDENT, fullExpand) + " \n" + INDENT + "}\n}";
}
getFieldQuery(indent, fullExpand){
var query = "";
for (var field of this.fields.values()) {
if(query !== "") query += " \n";
query += field.getQuery(indent, this.fields.size, fullExpand);
}
return query;
}
getIdField(){
return this.fields.get(this.idFieldName);
}
}
class SchemaNode{
constructor(name, label, widget, collections, parent){
this.name = name;
this.label = label;
this.widget = widget;
this.collections = collections;
this.parent = parent; //keep reference to parent
this.fields = new Map();
this.relation = {
collection: '',
idFieldName: ''
};
this.gsObject = undefined;
}
isRelation(){
return this.widget == NC_RELATION;
}
isArray(){
return this.widget == NC_LIST;
}
addField(fieldName, fieldNode){
this.fields.set(fieldName, fieldNode);
}
getQuery(indent, parentListSize, fullExpand){
var query = "";
if(this.relation.collection !== ''){ //relation case
var relCollection = this.collections.get(this.relation.collection);
if(parentListSize > 1) {
query = indent + this.name + "{ # " + this.label + " \n";
query += fullExpand ? relCollection.getFieldQuery(indent + INDENT, fullExpand) : relCollection.getIdField().getQuery(indent + INDENT, parentListSize, fullExpand) + " - further fields see " + relCollection.label;
query += " \n" + indent + "}";
}else{
query = fullExpand ? relCollection.getFieldQuery(indent, fullExpand) : relCollection.getIdField().getQuery(indent, parentListSize, fullExpand) + " - further fields see " + relCollection.label;
}
}else{
query = indent + this.name;
if(this.fields.size > 0){ //list case
query += "{ # " + this.label;
for (var field of this.fields.values()) {
query += " \n" + field.getQuery(indent + INDENT, this.fields.size, fullExpand);
}
query += " \n" + indent + "}";
}else{
query += " # " + this.label;
}
}
return query;
}
}
class SchemaParser{
constructor(cmsConfigFilePath){
var cmsConfigFile = cmsConfigFilePath;
this.collections = new Map(); // use map in order to be able to select collection by name
this.initialized = true; // can be checked before proceeding an running into errors
try{
var file = fs.readFileSync(cmsConfigFile, 'utf8');
this.doc = yaml.parseDocument(file);
if(this.doc.contents === undefined){
this.log("ERROR: Reading schema from file " + cmsConfigFile + " failed!");
this.initialized = false;
}else{
this.log("Schema Parser initialized with " + cmsConfigFile);
}
}catch(err){
this.log("Error: " + err);
this.initialized = false;
}
}
parseCollections(){
if(this.initialized){
let i = 0;
while(this.doc.contents.hasIn([NC_COLLECTION,i])){
//collections = doc.contents.get('collections');
let configNode = this.doc.contents.getIn([NC_COLLECTION,i]);
let name = configNode.get('name');
this.log('Parsing ' + name);
//Create Collection in Schema
let schemaCollection = new SchemaCollection(
name,
configNode.get('label'),
configNode.get('folder'),
configNode.has('format') ? configNode.get('format') : NC_DEFAULT_FORMAT,
configNode.has('identifier_field') ? configNode.get('identifier_field') : NC_DEFAULT_ID
);
//Add Collection to list
this.collections.set(name, schemaCollection);
//increase depth: get fields of collection
this.parseFields(configNode, schemaCollection);
i++;
}
}
return this.collections;
}
parseFields(configNode, schemaNode){
let i = 0;
//Parse each field and gets its metadata
while(configNode.hasIn([NC_FIELDS,i])){
let configNodeField = configNode.getIn([NC_FIELDS,i]);
//Get and check name of field
let name = configNodeField.get('name');
if (name == "id" && ( name != schemaNode.idFieldName || USE_FILENAME_AS_ID )){
console.log(`WARNING field "id" in ${schemaNode.name} will be overwritten with actual ID.`);
}
//Create Schema Node
let schemaField = new SchemaNode(
name,
configNodeField.get('label'),
configNodeField.get('widget'),
this.collections, //for retrieving infos via relations
schemaNode
);
//Add Field to parent Node (Collection or List Field)
schemaNode.addField(name, schemaField);
//Add information if relation
if(schemaField.isRelation()){
schemaField.relation.collection = configNodeField.get('collection');
schemaField.relation.idFieldName = configNodeField.get('valueField');
}
//recursion - increase depth if a list
if (schemaField.isArray()){
//this.log("Parsing List: " + name + " in " + schemaNode.name);
this.parseFields(configNodeField, schemaField);
}
i++;
}
}
generateGraphQueries(fullExpand, fileName){
var queryFile = "";
for (const collection of this.collections.values()) {
queryFile += "=== Query for " + collection.label + " === \n" + collection.getGraphQuery(fullExpand) + " \n" ;
}
fs.writeFile(fileName, queryFile, function (err) {
if (err) console.log("ERROR when saving Query: " + err.toString());
console.log("Saved queries in file");
});
}
log(text){
if (PRINT_LOG) console.log(text);
}
}
class ContentLoader{
constructor(schemaCollections, // The fulle Map of SchemaCollection
contentRootPath, // Path of folder where the defined path per collection starts
api // The Gridsome API for building GraphQL
){
this.schemaCollections = schemaCollections;
this.contentRootPath = contentRootPath;
this.api = api;
this.log("Content load initialized");
}
load(){
//Gather files per collection and process them based on schema definition
for (const collection of this.schemaCollections.values()) {
if(SUPPORTED_FORMATS.includes(collection.format)){
this.log("Loading Collection " + collection.name);
this.loadCollection(collection);
}else{
collection.isBlocked = true;
this.log("Format of Collection " + collection.name + " not supported - currently only " + SUPPORTED_FORMATS + " are supported!");
}
}
}
loadCollection(collection){
//Add Collection to gridsome and store references in schema (lists are handled by gridsome)
collection.gsCollection = this.api.addCollection(collection.name);
let dirPath = this.contentRootPath + collection.folder;
try{
//Read directory
var dirFiles = fs.readdirSync(dirPath, {withFileTypes:true});
if (dirFiles === undefined){
this.log("No content files found in " + dirPath);
}else{
for (const dirFile of dirFiles){
if(dirFile.isFile()){ //only process files
//Process each file, depending on format, convert it to JSON
let file = fs.readFileSync(dirPath + "/" + dirFile.name, 'utf8');
switch(collection.format){
case 'json':
if(dirFile.name.includes('.json')){
let content = JSON.parse(file);
this.processContent(collection, content, dirFile.name);
}else{
this.log("Skipped " + dirFile.name + ": Filename extension does not match specified format for collection (" + collection.format + ")");
}
break;
case NC_DEFAULT_FORMAT: //"frontmatter" should be supported because it is default
if(dirFile.name.includes('.md')){
var { metadata, content } = parseMD(fileContents);
if (content !== undefined){
//adding the "content" part as body to the rest of the attributes
metadata.body = content;
}
this.processContent(collection, metadata, dirFile.name);
}else{
this.log("Skipped " + dirFile.name + ": Filename extension does not match specified format for collection (" + collection.format + ")");
}
break;
default:
this.log("Skipped " + dirFile.name + ": File type/format not supported");
}
}else{
//All files of a collection should be in one folder -> ignore subfolders (for this collection)
this.log("Skipped " + dirFile.name + ": Not a file");
}
}
}
} catch (err) {
this.log("Error: " + err);
}
}
// Parse Content/File for given collection and add as node to this collection
processContent(collection, content, fileName){
var id = "";
//Identify ID
if(USE_FILENAME_AS_ID){
id = fileName.split(".")[0];
}else{
if(content[collection.idFieldName] === undefined){
return this.log("Skipped " + path + ": ID field '" + collection.idFieldName + "' missing");
}
id = content[collection.idFieldName];
}
//new instance
var gsNode = { id: id};
//loop over fields of node via schema definition (attributes not defined in schema will be ignored)
for (let schemaNode of collection.fields.values()){
//if(schemaNode.name != collection.idFieldName){
if(schemaNode.name != "id"){ //id is reserved field
//this.log(schemaNode.name + ": " + content[schemaNode.name]);
gsNode[schemaNode.name] = this.processEntry(schemaNode, content[schemaNode.name]);
}
}
//all fields collected for Node -> add to Collection
collection.gsCollection.addNode(gsNode);
}
// Parse Entry for given node and return representation to be added to GraphQL
processEntry(schemaNode, value){
//if(value === undefined && !schemaNode.isRelation()) return ""; //Return empty if undefined (so attribute is present, but empty) - Empty Relation handled later
var returnValue = ( value === undefined ) ? "" : value;
if (schemaNode.isArray()){
//this is a list within a node - add ech content line in array
var gsArray = [];
//value is an array -> process list entries recursive
if(value !== undefined){
for (let contentListEntry of value){
//Per array entry provide the sub-node structure like for other nodes as well
let gsArrayEntry = {};
for(let schemaSubNode of schemaNode.fields.values()){
//Recursion - process sub node
if(schemaSubNode.isRelation() && schemaNode.fields.size == 1){
//For a list of only one relation (without other fields in list entry) it is just an array of references (created in next recursion step) avoiding a parent node per reference
gsArrayEntry = this.processEntry(schemaSubNode, contentListEntry[schemaSubNode.name]);
}else{
gsArrayEntry[schemaSubNode.name] = this.processEntry(schemaSubNode, contentListEntry[schemaSubNode.name]);
}
}
//One Array Entry processed -> add it to Array representing list
gsArray.push(gsArrayEntry);
}
}
//after processing all entries, return array to be added in parent node
return gsArray; //this.api.store.createReference(....);
}else if (schemaNode.isRelation()){
//A reference to another node - value is the ID of referenced node
//this.log(value + " in " + schemaNode.parent.name + "." + schemaNode.name + " references to " + schemaNode.relation.collection + "." + schemaNode.relation.idFieldName);
if(!this.schemaCollections.has(schemaNode.relation.collection) || this.schemaCollections.get(schemaNode.relation.collection).isBlocked){
this.log("Reference Skipped: Collection " + schemaNode.relation.collection + " not loaded");
return returnValue;
}else{
return this.api.store.createReference(schemaNode.relation.collection, returnValue);
}
}else{
//standard field having just a value
//this.log(value + " in " + schemaNode.parent.name + "." + schemaNode.name);
return returnValue;
}
}
log(text){
if (PRINT_LOG) console.log(text);
}
}