forked from RackHD/on-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
task-annotation-generator.js
246 lines (214 loc) · 6.84 KB
/
task-annotation-generator.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
// Copyright 2016, EMC
'use strict';
var fs = require('fs');
var path = require('path');
var _ = require('lodash');
var Task;
function TaskAnnotation(task) {
this.task = task;
}
/**
* Run the process to generate doc data with current existing task schemas
* @param {Array<Object>} tasks - list of task from task folder
* e.g. /lib/task-data/tasks/*.js
* @param {Object} validator - instance of JsonSchemaValidator
* @return {Promise} promise with value docData array
*/
TaskAnnotation.run = function (tasks, validator) {
return validator.register()
.return(tasks)
.map(function (task) {
var tn = new TaskAnnotation(task);
var fullSchema = Task.getFullSchema(task);
var schemaMerged = tn.mergeSchema(fullSchema);
tn.addDefault(schemaMerged);
return tn.generateDocData(schemaMerged, {
url: JSON.stringify(task, null, ' '),
name: 'options',
title: '',
group: task.injectableName.replace(/\./g, '_'),
groupTitle: task.injectableName,
task: task
});
})
.then(function (docData) {
return _.flatten(docData);
});
};
/**
* Merge the schema (recusively) where `allOf` keyword found.
* @example
* { allOf: [
* { p1: { type: "string" } },
* { p2: { type: "number" } }
* ]
* }
* after merged:
* { p1: { type: "string" },
* p2: { type: "number" }
* }
*
* @param {Object} obj - JSON schema object
* @return {Object} schema - with `allOf` merged
*/
TaskAnnotation.prototype.mergeSchema = function (obj) {
var self = this;
if (obj.allOf && obj.allOf instanceof Array) {
var all = {};
_.forEach(obj.allOf, function (item) {
if(item.allOf) {
item = self.mergeSchema(item);
}
_.merge(all, item);
});
delete obj.allOf;
_.merge(obj, all);
}
_.forOwn(obj, function(val) {
if (val instanceof Object) {
self.mergeSchema(val);
}
});
return obj;
};
/**
* add default value from task.options to schema
* @param {Object} obj - JSON schema object
*/
TaskAnnotation.prototype.addDefault = function (obj) {
var self = this;
_.forOwn(self.task.options, function (value, name) {
var op = _.get(obj, 'properties.' + name);
if (op && op instanceof Object) {
op.default = value;
}
});
};
/**
* Parse the JSON schema and generate doc data recusively.
* The doc data will be rendered in apiDoc template
*
* @param {Object} obj - JSON schema object
* @param {Object} dataTemplate - the doc data template
* @return {Array} doc data array
*/
TaskAnnotation.prototype.generateDocData = function (obj, dataTemplate) {
var self = this;
var data = {
type: '',
description: (dataTemplate.task && dataTemplate.task.friendlyName) || '',
url: dataTemplate.url || '',
name: dataTemplate.name,
title: dataTemplate.title,
// version: '0.0.0',
group: dataTemplate.group,
groupTitle: dataTemplate.groupTitle,
parameter: {
fields: {
properties: []
}
}
};
var subItems =[];
_.forEach(getProp(obj), function (option, name) {
var subProp = getProp(option);
var subTemp = {};
if (subProp) {
subTemp = {
// url: data.url + '/' + name,
name: data.name + '_' + name,
title: data.title + '.' + name,
group: '~~~', //make sure those parameters are listed at very end, choose ~ since
//it is at the end of the ASCII table
groupTitle: 'Complex Option Types'//data.groupTitle
};
subItems = subItems.concat(self.generateDocData(option, subTemp));
}
var fieldTemp = {
group: 'g1', // TODO: find out group usage
type: getType(option),
optional: _.indexOf(obj.required, name) < 0,
field: name + '',
description: getDescription(option)
};
if (obj.oneOf || obj.anyOf) {
fieldTemp.field = data.type + '[' + name + ']';
}
if (subProp) {
fieldTemp.description += '<p>See details for <a href="#api-' +
subTemp.group + '-' + subTemp.name + '">' + name +'</a></p>';
}
data.parameter.fields.properties.push(fieldTemp);
});
return [data].concat(subItems);
function getProp(obj) {
return obj.properties || _.get(obj, 'items.properties') ||
obj.oneOf || obj.anyOf;
}
function getType(option) {
if (option.oneOf) {
return 'oneOf<' + option.oneOf.length + '>';
}
if (option.anyOf) {
return 'anyOf<<' + option.anyOf.length + '>';
}
if ((option.type === 'array' || option.type === 'enum') &&
option.items && option.items.type) {
return option.type + '<' + option.items.type + '>';
}
return option.type;
}
function getDescription(option) {
var description = '';
if (option.description) {
description += '<p>' + option.description + '</p>';
}
if (option.properties) {
description += '<p>properties: <code>' +
_.keys(option.properties) + '</code></p>';
}
if (option.enum) {
description += '<p>value in: <ul><li>' +
option.enum.join('</li><li>') +'</li></ul></p>';
}
var skipKeys = {
type: 1,
description: 1,
properties: 1,
enum: 1,
items: 1,
oneOf: 1,
anyOf: 1
};
_.forOwn(option, function (val, key) {
if (key in skipKeys) {
return true;
}
description += '<p>' + key + ': <code>' + val +'</code></p>';
});
return description;
}
};
if (require.main === module) {
var di = require('di');
var core = require('on-core')(di);
var onTasks = require('./index.js');
var tasks = core.helper.requireGlob(path.resolve(__dirname, 'lib/task-data/tasks/*.js'));
var injector = new di.Injector(_.flattenDeep([
core.injectables,
onTasks.injectables
])
);
var Task = injector.get('Task.Task');
var validator = injector.get('TaskOption.Validator');
_.sortBy(tasks, function (t) { return t.injectableName; });
TaskAnnotation.run(tasks, validator)
.then(function (docData) {
fs.writeFileSync('task_doc_data.json', JSON.stringify(docData, null, 4));
console.log('========= task_doc_data.json generated =======');
})
.catch(function(err) {
console.error(err.toString());
process.exit(1);
});
}