]> git.proxmox.com Git - proxmox-widget-toolkit.git/blame - src/api-viewer/APIViewer.js
api-viewer: show min/max for values without any other format
[proxmox-widget-toolkit.git] / src / api-viewer / APIViewer.js
CommitLineData
8556628c
TL
1/*global apiSchema*/
2
4ae75df3 3Ext.onReady(function() {
4ae75df3
DC
4 Ext.define('pmx-param-schema', {
5 extend: 'Ext.data.Model',
52428d60 6 fields: [
4ae75df3
DC
7 'name', 'type', 'typetext', 'description', 'verbose_description',
8 'enum', 'minimum', 'maximum', 'minLength', 'maxLength',
9 'pattern', 'title', 'requires', 'format', 'default',
10 'disallow', 'extends', 'links',
11 {
12 name: 'optional',
52428d60
TL
13 type: 'boolean',
14 },
15 ],
4ae75df3
DC
16 });
17
52428d60 18 let store = Ext.define('pmx-updated-treestore', {
4ae75df3
DC
19 extend: 'Ext.data.TreeStore',
20 model: Ext.define('pmx-api-doc', {
21 extend: 'Ext.data.Model',
52428d60 22 fields: [
4ae75df3 23 'path', 'info', 'text',
52428d60 24 ],
4ae75df3 25 }),
52428d60
TL
26 proxy: {
27 type: 'memory',
8556628c 28 data: apiSchema,
52428d60
TL
29 },
30 sorters: [{
31 property: 'leaf',
32 direction: 'ASC',
33 }, {
34 property: 'text',
35 direction: 'ASC',
4ae75df3
DC
36 }],
37 filterer: 'bottomup',
38 doFilter: function(node) {
39 this.filterNodes(node, this.getFilters().getFilterFn(), true);
40 },
41
42 filterNodes: function(node, filterFn, parentVisible) {
ac4fa7fe
TL
43 let me = this;
44
45 let match = filterFn(node) && (parentVisible || (node.isRoot() && !me.getRootVisible()));
46
47 if (node.childNodes && node.childNodes.length) {
48 let bottomUpFiltering = me.filterer === 'bottomup';
49 let childMatch;
50 for (const child of node.childNodes) {
51 childMatch = me.filterNodes(child, filterFn, match || bottomUpFiltering) || childMatch;
4ae75df3
DC
52 }
53 if (bottomUpFiltering) {
ac4fa7fe 54 match = childMatch || match;
4ae75df3
DC
55 }
56 }
57
58 node.set("visible", match, me._silentOptions);
59 return match;
60 },
61
62 }).create();
63
52428d60
TL
64 let render_description = function(value, metaData, record) {
65 let pdef = record.data;
4ae75df3
DC
66
67 value = pdef.verbose_description || value;
68
69 // TODO: try to render asciidoc correctly
70
52428d60 71 metaData.style = 'white-space:pre-wrap;';
4ae75df3
DC
72
73 return Ext.htmlEncode(value);
74 };
75
52428d60
TL
76 let render_type = function(value, metaData, record) {
77 let pdef = record.data;
4ae75df3 78
52428d60 79 return pdef.enum ? 'enum' : pdef.type || 'string';
4ae75df3
DC
80 };
81
7148e226
MH
82 const renderFormatString = function(obj) {
83 if (!Ext.isObject(obj)) {
84 return obj;
85 }
86 const mandatory = [];
87 const optional = [];
88 Object.entries(obj).forEach(function([name, param]) {
89 let list = param.optional ? optional : mandatory;
90 let str = param.default_key ? `[${name}=]` : `${name}=`;
91 if (param.alias) {
92 return;
93 } else if (param.enum) {
94 str += `(${param.enum?.join(' | ')})`;
95 } else {
96 str += `<${param.format_description || param.pattern || param.type}>`;
97 }
98 list.push(str);
99 });
100 return mandatory.join(", ") + ' ' + optional.map(each => `[,${each}]`).join(' ');
101 };
102
4ae75df3 103 let render_simple_format = function(pdef, type_fallback) {
ac4fa7fe
TL
104 if (pdef.typetext) {
105 return pdef.typetext;
106 }
107 if (pdef.enum) {
108 return pdef.enum.join(' | ');
109 }
110 if (pdef.format) {
7148e226 111 return renderFormatString(pdef.format);
ac4fa7fe
TL
112 }
113 if (pdef.pattern) {
114 return pdef.pattern;
115 }
116 if (pdef.type === 'boolean') {
117 return `<true|false>`;
118 }
119 if (type_fallback && pdef.type) {
120 return `<${pdef.type}>`;
121 }
28a00089
MH
122 if (pdef.minimum || pdef.maximum) {
123 return `${pdef.minimum || 'N'} - ${pdef.maximum || 'N'}`;
124 }
ac4fa7fe 125 return '';
4ae75df3
DC
126 };
127
128 let render_format = function(value, metaData, record) {
129 let pdef = record.data;
130
52428d60 131 metaData.style = 'white-space:normal;';
4ae75df3
DC
132
133 if (pdef.type === 'array' && pdef.items) {
134 let format = render_simple_format(pdef.items, true);
135 return `[${Ext.htmlEncode(format)}, ...]`;
136 }
137
ac4fa7fe 138 return Ext.htmlEncode(render_simple_format(pdef));
4ae75df3
DC
139 };
140
52428d60 141 let real_path = function(path) {
f0de3268
TL
142 if (!path.match(/^[/]/)) {
143 path = `/${path}`;
144 }
4ae75df3
DC
145 return path.replace(/^.*\/_upgrade_(\/)?/, "/");
146 };
147
52428d60 148 let permission_text = function(permission) {
4ae75df3
DC
149 let permhtml = "";
150
151 if (permission.user) {
152 if (!permission.description) {
153 if (permission.user === 'world') {
154 permhtml += "Accessible without any authentication.";
155 } else if (permission.user === 'all') {
156 permhtml += "Accessible by all authenticated users.";
157 } else {
ac4fa7fe 158 permhtml += `Only accessible by user "${permission.user}"`;
4ae75df3
DC
159 }
160 }
161 } else if (permission.check) {
ac4fa7fe 162 permhtml += `<pre>Check: ${Ext.htmlEncode(JSON.stringify(permission.check))}</pre>`;
4ae75df3
DC
163 } else if (permission.userParam) {
164 permhtml += `<div>Check if user matches parameter '${permission.userParam}'`;
165 } else if (permission.or) {
166 permhtml += "<div>Or<div style='padding-left: 10px;'>";
ac4fa7fe 167 permhtml += permission.or.map(v => permission_text(v)).join('');
4ae75df3
DC
168 permhtml += "</div></div>";
169 } else if (permission.and) {
170 permhtml += "<div>And<div style='padding-left: 10px;'>";
ac4fa7fe 171 permhtml += permission.and.map(v => permission_text(v)).join('');
4ae75df3
DC
172 permhtml += "</div></div>";
173 } else {
4ae75df3
DC
174 permhtml += "Unknown syntax!";
175 }
176
177 return permhtml;
178 };
179
52428d60
TL
180 let render_docu = function(data) {
181 let md = data.info;
4ae75df3 182
52428d60 183 let items = [];
4ae75df3 184
4ae75df3 185 Ext.Array.each(['GET', 'POST', 'PUT', 'DELETE'], function(method) {
52428d60 186 let info = md[method];
4ae75df3 187 if (info) {
ac4fa7fe
TL
188 let endpoint = real_path(data.path);
189 let usage = `<table><tr><td>HTTP:&nbsp;&nbsp;&nbsp;</td><td>`;
6cc360f2 190 usage += `${method} /api2/json${endpoint}</td></tr>`;
4ae75df3 191
ac4fa7fe
TL
192 if (typeof cliUsageRenderer === 'function') {
193 usage += cliUsageRenderer(method, endpoint); // eslint-disable-line no-undef
4ae75df3
DC
194 }
195
52428d60 196 let sections = [
4ae75df3
DC
197 {
198 title: 'Description',
199 html: Ext.htmlEncode(info.description),
52428d60 200 bodyPadding: 10,
4ae75df3
DC
201 },
202 {
203 title: 'Usage',
204 html: usage,
52428d60
TL
205 bodyPadding: 10,
206 },
4ae75df3
DC
207 ];
208
209 if (info.parameters && info.parameters.properties) {
52428d60 210 let pstore = Ext.create('Ext.data.Store', {
4ae75df3
DC
211 model: 'pmx-param-schema',
212 proxy: {
52428d60 213 type: 'memory',
4ae75df3
DC
214 },
215 groupField: 'optional',
216 sorters: [
217 {
218 property: 'name',
52428d60
TL
219 direction: 'ASC',
220 },
221 ],
4ae75df3
DC
222 });
223
224 Ext.Object.each(info.parameters.properties, function(name, pdef) {
225 pdef.name = name;
226 pstore.add(pdef);
227 });
228
229 pstore.sort();
230
52428d60 231 let groupingFeature = Ext.create('Ext.grid.feature.Grouping', {
4ae75df3 232 enableGroupingMenu: false,
52428d60 233 groupHeaderTpl: '<tpl if="groupValue">Optional</tpl><tpl if="!groupValue">Required</tpl>',
4ae75df3
DC
234 });
235
236 sections.push({
237 xtype: 'gridpanel',
238 title: 'Parameters',
239 features: [groupingFeature],
240 store: pstore,
241 viewConfig: {
242 trackOver: false,
52428d60 243 stripeRows: true,
4ae75df3
DC
244 },
245 columns: [
246 {
247 header: 'Name',
248 dataIndex: 'name',
52428d60 249 flex: 1,
4ae75df3
DC
250 },
251 {
252 header: 'Type',
253 dataIndex: 'type',
254 renderer: render_type,
52428d60 255 flex: 1,
4ae75df3
DC
256 },
257 {
258 header: 'Default',
259 dataIndex: 'default',
52428d60 260 flex: 1,
4ae75df3
DC
261 },
262 {
263 header: 'Format',
264 dataIndex: 'type',
265 renderer: render_format,
52428d60 266 flex: 2,
4ae75df3
DC
267 },
268 {
269 header: 'Description',
270 dataIndex: 'description',
271 renderer: render_description,
52428d60
TL
272 flex: 6,
273 },
274 ],
4ae75df3 275 });
4ae75df3
DC
276 }
277
278 if (info.returns) {
52428d60
TL
279 let retinf = info.returns;
280 let rtype = retinf.type;
281 if (!rtype && retinf.items) {rtype = 'array';}
282 if (!rtype) {rtype = 'object';}
4ae75df3 283
52428d60 284 let rpstore = Ext.create('Ext.data.Store', {
4ae75df3
DC
285 model: 'pmx-param-schema',
286 proxy: {
52428d60 287 type: 'memory',
4ae75df3
DC
288 },
289 groupField: 'optional',
290 sorters: [
291 {
292 property: 'name',
52428d60
TL
293 direction: 'ASC',
294 },
295 ],
4ae75df3
DC
296 });
297
52428d60 298 let properties;
4ae75df3
DC
299 if (rtype === 'array' && retinf.items.properties) {
300 properties = retinf.items.properties;
301 }
302
303 if (rtype === 'object' && retinf.properties) {
304 properties = retinf.properties;
305 }
306
307 Ext.Object.each(properties, function(name, pdef) {
308 pdef.name = name;
309 rpstore.add(pdef);
310 });
311
312 rpstore.sort();
313
52428d60 314 let groupingFeature = Ext.create('Ext.grid.feature.Grouping', {
4ae75df3 315 enableGroupingMenu: false,
52428d60 316 groupHeaderTpl: '<tpl if="groupValue">Optional</tpl><tpl if="!groupValue">Obligatory</tpl>',
4ae75df3 317 });
52428d60 318 let returnhtml;
4ae75df3
DC
319 if (retinf.items) {
320 returnhtml = '<pre>items: ' + Ext.htmlEncode(JSON.stringify(retinf.items, null, 4)) + '</pre>';
321 }
322
323 if (retinf.properties) {
324 returnhtml = returnhtml || '';
325 returnhtml += '<pre>properties:' + Ext.htmlEncode(JSON.stringify(retinf.properties, null, 4)) + '</pre>';
326 }
327
52428d60 328 let rawSection = Ext.create('Ext.panel.Panel', {
4ae75df3
DC
329 bodyPadding: '0px 10px 10px 10px',
330 html: returnhtml,
52428d60 331 hidden: true,
4ae75df3
DC
332 });
333
334 sections.push({
335 xtype: 'gridpanel',
336 title: 'Returns: ' + rtype,
337 features: [groupingFeature],
338 store: rpstore,
339 viewConfig: {
340 trackOver: false,
52428d60 341 stripeRows: true,
4ae75df3 342 },
ac4fa7fe
TL
343 columns: [
344 {
345 header: 'Name',
346 dataIndex: 'name',
347 flex: 1,
52428d60 348 },
ac4fa7fe
TL
349 {
350 header: 'Type',
351 dataIndex: 'type',
352 renderer: render_type,
353 flex: 1,
354 },
355 {
356 header: 'Default',
357 dataIndex: 'default',
358 flex: 1,
359 },
360 {
361 header: 'Format',
362 dataIndex: 'type',
363 renderer: render_format,
364 flex: 2,
365 },
366 {
367 header: 'Description',
368 dataIndex: 'description',
369 renderer: render_description,
370 flex: 6,
371 },
372 ],
373 bbar: [
374 {
375 xtype: 'button',
376 text: 'Show RAW',
377 handler: function(btn) {
378 rawSection.setVisible(!rawSection.isVisible());
379 btn.setText(rawSection.isVisible() ? 'Hide RAW' : 'Show RAW');
380 },
381 },
382 ],
383 });
4ae75df3 384
ac4fa7fe 385 sections.push(rawSection);
4ae75df3
DC
386 }
387
388 if (!data.path.match(/\/_upgrade_/)) {
52428d60 389 let permhtml = '';
4ae75df3
DC
390
391 if (!info.permissions) {
392 permhtml = "Root only.";
393 } else {
394 if (info.permissions.description) {
395 permhtml += "<div style='white-space:pre-wrap;padding-bottom:10px;'>" +
396 Ext.htmlEncode(info.permissions.description) + "</div>";
397 }
398 permhtml += permission_text(info.permissions);
399 }
400
401 if (info.allowtoken !== undefined && !info.allowtoken) {
52428d60 402 permhtml += "<br />This API endpoint is not available for API tokens.";
4ae75df3
DC
403 }
404
405 sections.push({
406 title: 'Required permissions',
407 bodyPadding: 10,
52428d60 408 html: permhtml,
4ae75df3
DC
409 });
410 }
411
412 items.push({
413 title: method,
414 autoScroll: true,
415 defaults: {
52428d60 416 border: false,
4ae75df3 417 },
52428d60 418 items: sections,
4ae75df3
DC
419 });
420 }
421 });
422
52428d60
TL
423 let ct = Ext.getCmp('docview');
424 ct.setTitle("Path: " + real_path(data.path));
4ae75df3
DC
425 ct.removeAll(true);
426 ct.add(items);
427 ct.setActiveTab(0);
428 };
429
430 Ext.define('Ext.form.SearchField', {
431 extend: 'Ext.form.field.Text',
432 alias: 'widget.searchfield',
433
434 emptyText: 'Search...',
435
436 flex: 1,
437
438 inputType: 'search',
439 listeners: {
52428d60
TL
440 'change': function() {
441 let value = this.getValue();
4ae75df3
DC
442 if (!Ext.isEmpty(value)) {
443 store.filter({
444 property: 'path',
445 value: value,
52428d60 446 anyMatch: true,
4ae75df3
DC
447 });
448 } else {
449 store.clearFilter();
450 }
52428d60
TL
451 },
452 },
4ae75df3
DC
453 });
454
ac4fa7fe 455 let treePanel = Ext.create('Ext.tree.Panel', {
4ae75df3
DC
456 title: 'Resource Tree',
457 tbar: [
458 {
459 xtype: 'searchfield',
52428d60 460 },
4ae75df3
DC
461 ],
462 tools: [
463 {
464 type: 'expand',
465 tooltip: 'Expand all',
466 tooltipType: 'title',
ac4fa7fe 467 callback: tree => tree.expandAll(),
4ae75df3
DC
468 },
469 {
470 type: 'collapse',
471 tooltip: 'Collapse all',
472 tooltipType: 'title',
ac4fa7fe 473 callback: tree => tree.collapseAll(),
4ae75df3
DC
474 },
475 ],
476 store: store,
477 width: 200,
478 region: 'west',
479 split: true,
480 margins: '5 0 5 5',
481 rootVisible: false,
482 listeners: {
483 selectionchange: function(v, selections) {
52428d60
TL
484 if (!selections[0]) {return;}
485 let rec = selections[0];
4ae75df3
DC
486 render_docu(rec.data);
487 location.hash = '#' + rec.data.path;
52428d60
TL
488 },
489 },
4ae75df3
DC
490 });
491
492 Ext.create('Ext.container.Viewport', {
493 layout: 'border',
494 renderTo: Ext.getBody(),
495 items: [
ac4fa7fe 496 treePanel,
4ae75df3
DC
497 {
498 xtype: 'tabpanel',
499 title: 'Documentation',
500 id: 'docview',
501 region: 'center',
502 margins: '5 5 5 0',
503 layout: 'fit',
52428d60
TL
504 items: [],
505 },
506 ],
4ae75df3
DC
507 });
508
52428d60
TL
509 let deepLink = function() {
510 let path = window.location.hash.substring(1).replace(/\/\s*$/, '');
511 let endpoint = store.findNode('path', path);
4ae75df3
DC
512
513 if (endpoint) {
ac4fa7fe
TL
514 treePanel.getSelectionModel().select(endpoint);
515 treePanel.expandPath(endpoint.getPath());
4ae75df3
DC
516 render_docu(endpoint.data);
517 }
52428d60 518 };
4ae75df3
DC
519 window.onhashchange = deepLink;
520
521 deepLink();
4ae75df3 522});