-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathschemaOrg.js
More file actions
256 lines (219 loc) · 7.55 KB
/
schemaOrg.js
File metadata and controls
256 lines (219 loc) · 7.55 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
/**
* Copyright 2025 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
export default class SchemaOrgValidator {
// Cache schema globally to improve performance
static schemaCache = null;
constructor({ dataFormat, path, type, schemaOrgJson }) {
this.dataFormat = dataFormat;
this.path = path;
this.type = type;
this.schemaOrgJson = schemaOrgJson;
}
#stripSchema(name) {
if (name.startsWith('schema:')) {
return name.replace('schema:', '');
}
if (name.startsWith('http://schema.org/')) {
return name.replace('http://schema.org/', '');
}
if (name.startsWith('https://schema.org/')) {
return name.replace('https://schema.org/', '');
}
return name;
}
async #loadSchema() {
if (SchemaOrgValidator.schemaCache instanceof Promise) {
return SchemaOrgValidator.schemaCache;
}
SchemaOrgValidator.schemaCache = new Promise((resolve) => {
const schema = {};
// Get all types
const entites = this.schemaOrgJson['@graph'];
entites
.filter((entity) => entity['@type'] === 'rdfs:Class')
.forEach((type) => {
const name = this.#stripSchema(type['@id']);
schema[name] = {
properties: [],
propertiesFromParent: {},
};
if (Array.isArray(type['rdfs:subClassOf'])) {
schema[name].parents = type['rdfs:subClassOf'].map((parent) =>
this.#stripSchema(parent['@id']),
);
} else if (type['rdfs:subClassOf']) {
schema[name].parents = [
this.#stripSchema(type['rdfs:subClassOf']['@id']),
];
}
});
// Add all properties to types
entites
.filter((entity) => entity['@type'] === 'rdf:Property')
.forEach((property) => {
const domainIncludes = property['schema:domainIncludes'];
const types = Array.isArray(domainIncludes)
? domainIncludes.map((domain) => this.#stripSchema(domain['@id']))
: domainIncludes
? [this.#stripSchema(domainIncludes['@id'])]
: [];
types.forEach((type) => {
if (schema[type]) {
schema[type].properties.push(this.#stripSchema(property['@id']));
}
});
});
// TODO: Add property types for validation
// Sort properties for each type alphabetically
Object.keys(schema).forEach((type) => {
schema[type].properties.sort();
});
// Add inherited properties
const processOrder = this.#getTopologicalOrder(schema);
this.#addInheritedProperties(schema, processOrder);
resolve(schema);
});
return SchemaOrgValidator.schemaCache;
}
#getTopologicalOrder(schema) {
const visited = new Set();
const temp = new Set(); // For cycle detection
const order = [];
// Helper function for DFS
const visit = (typeId) => {
if (temp.has(typeId)) {
throw new Error('Cyclic inheritance detected');
}
if (visited.has(typeId)) {
return;
}
temp.add(typeId);
const type = schema[typeId];
if (type && type.parents) {
// Visit all parents before this type
for (const parentId of type.parents) {
if (schema[parentId]) {
visit(parentId);
}
}
}
temp.delete(typeId);
visited.add(typeId);
order.push(typeId);
};
// Process all types
Object.keys(schema).forEach((typeId) => {
if (!visited.has(typeId)) {
visit(typeId);
}
});
return order;
}
#addInheritedProperties(schema, processOrder) {
processOrder.forEach((typeId) => {
const type = schema[typeId];
if (type.parents && type.parents.length > 0) {
// Process each parent
for (const parentId of type.parents) {
if (schema[parentId]) {
// Add direct properties from this parent
type.propertiesFromParent[parentId] = [
...schema[parentId].properties,
];
// Add inherited properties from this parent's ancestors
Object.keys(schema[parentId].propertiesFromParent).forEach(
(ancestorId) => {
if (
!type.propertiesFromParent[ancestorId] &&
schema[parentId].propertiesFromParent[ancestorId].length > 0
) {
type.propertiesFromParent[ancestorId] =
schema[parentId].propertiesFromParent[ancestorId];
}
},
);
}
}
}
});
}
async validateProperty(type, property) {
const schema = await this.#loadSchema();
// Check if type exists
if (!schema[type]) {
return false;
}
// Strip -input or -output suffix if present (schema.org Actions extension)
// See: https://schema.org/docs/actions.html#part-4
let propertyToCheck = property;
if (property.endsWith('-input') || property.endsWith('-output')) {
propertyToCheck = property.replace(/-(input|output)$/, '');
}
// Check if property is directly supported
if (schema[type].properties.includes(propertyToCheck)) {
return true;
}
// Check if property is supported through inheritance
return Object.keys(schema[type].propertiesFromParent).some((parent) => {
return schema[type].propertiesFromParent[parent].includes(
propertyToCheck,
);
});
}
async validateType(type) {
const schema = await this.#loadSchema();
return !!schema[type];
}
async validate(data) {
const issues = [];
if (typeof data === 'object' && data !== null) {
if (!this.type) {
return [];
}
const typeId = this.#stripSchema(this.type);
// Check if type exists in schema.org
const typeExists = await this.validateType(typeId);
if (!typeExists) {
issues.push({
issueMessage: `Type "${typeId}" is not a valid schema.org type`,
severity: 'ERROR',
path: this.path,
errorType: 'schemaOrg',
fieldNames: ['@type'],
});
// Skip property validation since type is invalid
return issues;
}
// Get list of properties, any other keys which do not start with @
const properties = Object.keys(data).filter(
(key) => !key.startsWith('@'),
);
// Check in schema.org schema if all properties are supported within the given type
await Promise.all(
properties.map(async (property) => {
const propertyId = this.#stripSchema(property);
const isValid = await this.validateProperty(typeId, propertyId);
if (!isValid) {
issues.push({
issueMessage: `Property "${propertyId}" for type "${typeId}" is not supported by the schema.org specification`,
severity: 'WARNING',
path: this.path,
errorType: 'schemaOrg',
fieldNames: [propertyId],
});
}
}),
);
}
return issues;
}
}