2015-10-07 12:47:57 +03:00
|
|
|
'use strict';
|
2016-05-25 18:34:31 +03:00
|
|
|
|
2016-08-28 21:46:10 +03:00
|
|
|
import * as JsonSchemaRefParser from 'json-schema-ref-parser';
|
|
|
|
import { JsonPointer } from './JsonPointer';
|
2016-09-12 22:48:44 +03:00
|
|
|
import { parse as urlParse, resolve as urlResolve } from 'url';
|
2016-10-23 20:18:42 +03:00
|
|
|
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
|
2015-10-07 12:47:57 +03:00
|
|
|
|
2016-10-31 11:15:04 +03:00
|
|
|
import { MdRenderer } from './md-renderer';
|
2016-10-30 18:56:24 +03:00
|
|
|
|
2016-06-22 21:17:48 +03:00
|
|
|
export class SpecManager {
|
2016-07-26 14:51:59 +03:00
|
|
|
public _schema: any = {};
|
2016-06-13 20:54:24 +03:00
|
|
|
public apiUrl: string;
|
2016-10-23 20:18:42 +03:00
|
|
|
|
|
|
|
public spec = new BehaviorSubject<any|null>(null);
|
2016-07-26 14:51:59 +03:00
|
|
|
private _instance: any;
|
|
|
|
private _url: string;
|
2016-06-12 20:44:34 +03:00
|
|
|
|
2016-06-13 20:54:24 +03:00
|
|
|
static instance() {
|
2016-06-22 21:17:48 +03:00
|
|
|
return new SpecManager();
|
2016-06-13 20:54:24 +03:00
|
|
|
}
|
|
|
|
|
2015-10-07 12:47:57 +03:00
|
|
|
constructor() {
|
2016-06-22 21:17:48 +03:00
|
|
|
if (SpecManager.prototype._instance) {
|
|
|
|
return SpecManager.prototype._instance;
|
2015-10-07 12:47:57 +03:00
|
|
|
}
|
|
|
|
|
2016-06-22 21:17:48 +03:00
|
|
|
SpecManager.prototype._instance = this;
|
2015-10-07 12:47:57 +03:00
|
|
|
}
|
|
|
|
|
2016-10-23 20:18:42 +03:00
|
|
|
load(urlOrObject: string|Object) {
|
|
|
|
this.schema = null;
|
2015-10-07 12:47:57 +03:00
|
|
|
let promise = new Promise((resolve, reject) => {
|
2016-10-23 20:18:42 +03:00
|
|
|
JsonSchemaRefParser.bundle(urlOrObject, {http: {withCredentials: false}})
|
2016-06-22 21:17:48 +03:00
|
|
|
.then(schema => {
|
2016-10-23 20:18:42 +03:00
|
|
|
if (typeof urlOrObject === 'string') {
|
|
|
|
this._url = urlOrObject;
|
|
|
|
}
|
|
|
|
this._schema = schema;
|
2016-10-14 11:44:18 +03:00
|
|
|
try {
|
2016-06-22 21:17:48 +03:00
|
|
|
this.init();
|
2016-10-14 11:44:18 +03:00
|
|
|
resolve(this._schema);
|
2016-10-23 20:18:42 +03:00
|
|
|
this.spec.next(this._schema);
|
2016-10-14 11:44:18 +03:00
|
|
|
} catch(err) {
|
|
|
|
reject(err);
|
|
|
|
}
|
2016-06-22 21:17:48 +03:00
|
|
|
}, err => reject(err));
|
2015-10-07 12:47:57 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
return promise;
|
|
|
|
}
|
|
|
|
|
2015-11-17 01:03:09 +03:00
|
|
|
/* calculate common used values */
|
|
|
|
init() {
|
2016-09-12 22:48:44 +03:00
|
|
|
let urlParts = this._url ? urlParse(urlResolve(window.location.href, this._url)) : {};
|
2016-08-01 03:26:10 +03:00
|
|
|
let schemes = this._schema.schemes;
|
2016-07-26 14:51:59 +03:00
|
|
|
let protocol;
|
2016-08-01 03:26:10 +03:00
|
|
|
if (!schemes || !schemes.length) {
|
|
|
|
// url parser incudles ':' in protocol so remove it
|
|
|
|
protocol = urlParts.protocol ? urlParts.protocol.slice(0, -1) : 'http';
|
2016-07-26 14:51:59 +03:00
|
|
|
} else {
|
2016-08-01 03:26:10 +03:00
|
|
|
protocol = schemes[0];
|
|
|
|
if (protocol === 'http' && schemes.indexOf('https') >= 0) {
|
2016-07-26 14:51:59 +03:00
|
|
|
protocol = 'https';
|
|
|
|
}
|
|
|
|
}
|
2016-08-01 03:26:10 +03:00
|
|
|
|
|
|
|
let host = this._schema.host || urlParts.host;
|
2016-09-06 11:52:31 +03:00
|
|
|
let basePath = this._schema.basePath || '/';
|
|
|
|
this.apiUrl = protocol + '://' + host + basePath;
|
2015-11-29 18:14:18 +03:00
|
|
|
if (this.apiUrl.endsWith('/')) {
|
|
|
|
this.apiUrl = this.apiUrl.substr(0, this.apiUrl.length - 1);
|
|
|
|
}
|
2016-07-21 13:35:27 +03:00
|
|
|
|
|
|
|
this.preprocess();
|
|
|
|
}
|
|
|
|
|
|
|
|
preprocess() {
|
2016-10-30 18:56:24 +03:00
|
|
|
let mdRender = new MdRenderer();
|
|
|
|
if (!this._schema.info.description) this._schema.info.description = '';
|
2016-10-31 11:15:04 +03:00
|
|
|
if (this._schema.securityDefinitions) {
|
|
|
|
let SecurityDefinitions = require('../components/').SecurityDefinitions;
|
|
|
|
mdRender.addPreprocessor(SecurityDefinitions.insertTagIntoDescription);
|
|
|
|
}
|
2016-10-30 18:56:24 +03:00
|
|
|
this._schema.info['x-redoc-html-description'] = mdRender.renderMd(this._schema.info.description);
|
|
|
|
this._schema.info['x-redoc-markdown-headers'] = mdRender.firstLevelHeadings;
|
2015-11-17 01:03:09 +03:00
|
|
|
}
|
|
|
|
|
2015-10-07 12:47:57 +03:00
|
|
|
get schema() {
|
|
|
|
return this._schema;
|
|
|
|
}
|
|
|
|
|
2016-10-23 20:18:42 +03:00
|
|
|
set schema(val:any) {
|
|
|
|
this._schema = val;
|
|
|
|
this.spec.next(this._schema);
|
|
|
|
}
|
|
|
|
|
2015-10-08 23:21:51 +03:00
|
|
|
byPointer(pointer) {
|
2015-10-10 16:01:41 +03:00
|
|
|
let res = null;
|
|
|
|
try {
|
2016-01-17 00:25:12 +03:00
|
|
|
res = JsonPointer.get(this._schema, decodeURIComponent(pointer));
|
2015-10-10 16:01:41 +03:00
|
|
|
} catch(e) {/*skip*/ }
|
|
|
|
return res;
|
2015-10-07 12:47:57 +03:00
|
|
|
}
|
2015-10-08 23:21:51 +03:00
|
|
|
|
2015-10-25 14:26:38 +03:00
|
|
|
resolveRefs(obj) {
|
|
|
|
Object.keys(obj).forEach(key => {
|
|
|
|
if (obj[key].$ref) {
|
2015-12-12 18:29:50 +03:00
|
|
|
let resolved = this.byPointer(obj[key].$ref);
|
|
|
|
resolved._pointer = obj[key].$ref;
|
|
|
|
obj[key] = resolved;
|
2015-10-25 14:26:38 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
getMethodParams(methodPtr, resolveRefs) {
|
|
|
|
/* inject JsonPointer into array elements */
|
|
|
|
function injectPointers(array, root) {
|
2015-12-14 16:53:22 +03:00
|
|
|
if (!Array.isArray(array)) {
|
|
|
|
throw new Error(`parameters must be an array. Got ${typeof array} at ${root}`);
|
|
|
|
}
|
2015-10-25 14:26:38 +03:00
|
|
|
return array.map((element, idx) => {
|
|
|
|
element._pointer = JsonPointer.join(root, idx);
|
|
|
|
return element;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-12-12 18:29:50 +03:00
|
|
|
// accept pointer directly to parameters as well
|
|
|
|
if (JsonPointer.baseName(methodPtr) === 'parameters') {
|
|
|
|
methodPtr = JsonPointer.dirName(methodPtr);
|
2015-10-25 14:26:38 +03:00
|
|
|
}
|
|
|
|
|
2015-12-12 18:29:50 +03:00
|
|
|
//get path params
|
|
|
|
let pathParamsPtr = JsonPointer.join(JsonPointer.dirName(methodPtr), ['parameters']);
|
|
|
|
let pathParams = this.byPointer(pathParamsPtr) || [];
|
|
|
|
|
|
|
|
let methodParamsPtr = JsonPointer.join(methodPtr, ['parameters']);
|
|
|
|
let methodParams = this.byPointer(methodParamsPtr) || [];
|
|
|
|
pathParams = injectPointers(pathParams, pathParamsPtr);
|
|
|
|
methodParams = injectPointers(methodParams, methodParamsPtr);
|
|
|
|
|
2015-10-25 14:26:38 +03:00
|
|
|
if (resolveRefs) {
|
|
|
|
methodParams = this.resolveRefs(methodParams);
|
2015-11-04 23:39:46 +03:00
|
|
|
pathParams = this.resolveRefs(pathParams);
|
2015-10-25 14:26:38 +03:00
|
|
|
}
|
|
|
|
return methodParams.concat(pathParams);
|
|
|
|
}
|
|
|
|
|
2015-11-17 02:34:13 +03:00
|
|
|
getTagsMap() {
|
|
|
|
let tags = this._schema.tags || [];
|
|
|
|
var tagsMap = {};
|
|
|
|
for (let tag of tags) {
|
|
|
|
tagsMap[tag.name] = {
|
|
|
|
description: tag.description,
|
2015-12-12 14:49:22 +03:00
|
|
|
'x-traitTag': tag['x-traitTag'] || false
|
2015-11-17 02:34:13 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return tagsMap;
|
|
|
|
}
|
|
|
|
|
2016-01-09 17:52:24 +03:00
|
|
|
findDerivedDefinitions(defPointer) {
|
|
|
|
let definition = this.byPointer(defPointer);
|
2016-01-15 23:42:55 +03:00
|
|
|
if (!definition) throw new Error(`Can't load schema at ${defPointer}`);
|
2016-09-28 09:36:21 +03:00
|
|
|
if (!definition.discriminator && !definition['x-extendedDiscriminator']) return [];
|
2016-01-09 17:52:24 +03:00
|
|
|
|
|
|
|
let globalDefs = this._schema.definitions || {};
|
|
|
|
let res = [];
|
2016-09-28 09:36:21 +03:00
|
|
|
let extendedDiscriminatorProp = definition['x-extendedDiscriminator'];
|
2016-01-09 17:52:24 +03:00
|
|
|
for (let defName of Object.keys(globalDefs)) {
|
2016-09-28 09:36:21 +03:00
|
|
|
let def = globalDefs[defName];
|
|
|
|
if (!def.allOf &&
|
|
|
|
!def['x-derived-from']) continue;
|
|
|
|
let subTypes = def['x-derived-from'] ||
|
|
|
|
def.allOf.map(subType => subType._pointer || subType.$ref);
|
2016-06-22 19:13:57 +03:00
|
|
|
let idx = subTypes.findIndex(ref => ref === defPointer);
|
2016-01-09 17:52:24 +03:00
|
|
|
if (idx < 0) continue;
|
|
|
|
|
2016-09-28 09:36:21 +03:00
|
|
|
let derivedName = defName;
|
|
|
|
if (extendedDiscriminatorProp) {
|
|
|
|
let prop = def.properties && def.properties[extendedDiscriminatorProp];
|
|
|
|
if (prop && prop.enum && prop.enum.length === 1) {
|
|
|
|
derivedName = prop.enum[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res.push({name: derivedName, $ref: `#/definitions/${defName}`});
|
2016-01-09 17:52:24 +03:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2015-10-07 12:47:57 +03:00
|
|
|
}
|