-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
80 lines (71 loc) · 1.87 KB
/
index.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
var comments = require('./comments.json');
module.exports.comments = comments;
function typeToSchema(type) {
if (type.name === 'boolean') {
return {
type: 'boolean'
};
} else if (type.name === 'String') {
return {
type: 'string'
};
} else if (type.type === 'NameExpression') {
return {
$ref: '#/definitions/' + type.name
};
} else if (type.type === 'TypeApplication' && type.expression.name === 'Array') {
return {
type: 'array',
items: typeToSchema(type.applications[0])
};
} else if (type.type === 'AllLiteral') {
return {};
} else {
throw new Error('unknown type ' + type);
}
}
function commentToSchema(comment) {
switch (comment.name) {
case 'Access':
return {
type: 'string',
enum: ['public', 'private', 'protected']
};
case 'Kind':
return {
type: 'string',
enum: [
'class', 'constant', 'event', 'external', 'file', 'function',
'member', 'mixin', 'module', 'namespace', 'typedef'
]
};
case 'Scope':
return {
type: 'string',
enum: ['global', 'static', 'instance', 'inner']
};
default:
return {
type: 'object',
properties: (comment.properties || []).reduce(function (properties, property) {
properties[property.name] = typeToSchema(property.type);
return properties;
}, {})
};
}
}
module.exports.jsonSchema = (function () {
var result = commentToSchema(comments.find(function (comment) {
return comment.name === 'Comment';
}));
result.$schema = 'http://json-schema.org/draft-04/schema#';
result.definitions = comments
.filter(function (comment) {
return comment.name !== 'Comment';
})
.reduce(function (definitions, comment) {
definitions[comment.name] = commentToSchema(comment);
return definitions;
}, {});
return result;
})();