Remove redundant scripts under api/
We now use newer swagger, via scripts/dump-swagger.py
This commit is contained in:
parent
60f36bf868
commit
affb106014
4 changed files with 2 additions and 165 deletions
|
@ -1,4 +1,3 @@
|
||||||
To get this running:
|
This directory contains swagger-compatible representations of our APIs. See
|
||||||
python -m SimpleHTTPServer
|
scripts/README.md for details on how to make use of them.
|
||||||
|
|
||||||
Go to http://localhost:8000/swagger.html
|
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
{
|
|
||||||
"name": "swagger-cli-validator",
|
|
||||||
"version": "0.0.1",
|
|
||||||
"description": "",
|
|
||||||
"main": "validator.js",
|
|
||||||
"scripts": {
|
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
|
||||||
},
|
|
||||||
"author": "",
|
|
||||||
"license": "ISC",
|
|
||||||
"dependencies": {
|
|
||||||
"nopt": "^3.0.2",
|
|
||||||
"swagger-parser": "^3.2.1"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,76 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>Matrix Client-Server API Documentation</title>
|
|
||||||
<link href="./files/css" rel="stylesheet" type="text/css">
|
|
||||||
<link href="./files/reset.css" media="screen" rel="stylesheet" type="text/css">
|
|
||||||
<link href="./files/screen.css" media="screen" rel="stylesheet" type="text/css">
|
|
||||||
<link href="./files/reset.css" media="print" rel="stylesheet" type="text/css">
|
|
||||||
<link href="./files/screen.css" media="print" rel="stylesheet" type="text/css">
|
|
||||||
<script type="text/javascript" src="./files/shred.bundle.js"></script>
|
|
||||||
<script src="./files/jquery-1.8.0.min.js" type="text/javascript"></script>
|
|
||||||
<script src="./files/jquery.slideto.min.js" type="text/javascript"></script>
|
|
||||||
<script src="./files/jquery.wiggle.min.js" type="text/javascript"></script>
|
|
||||||
<script src="./files/jquery.ba-bbq.min.js" type="text/javascript"></script>
|
|
||||||
<script src="./files/handlebars-1.0.0.js" type="text/javascript"></script>
|
|
||||||
<script src="./files/underscore-min.js" type="text/javascript"></script>
|
|
||||||
<script src="./files/backbone-min.js" type="text/javascript"></script>
|
|
||||||
<script src="./files/swagger.js" type="text/javascript"></script>
|
|
||||||
<script src="./files/swagger-ui.js" type="text/javascript"></script>
|
|
||||||
<script src="./files/highlight.7.3.pack.js" type="text/javascript"></script>
|
|
||||||
|
|
||||||
<!-- enabling this will enable oauth2 implicit scope support -->
|
|
||||||
<script src="./files/swagger-oauth.js" type="text/javascript"></script>
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
$(function () {
|
|
||||||
window.swaggerUi = new SwaggerUi({
|
|
||||||
url: "http://localhost:8000/client-server/api-docs",
|
|
||||||
dom_id: "swagger-ui-container",
|
|
||||||
supportedSubmitMethods: ['get', 'post', 'put', 'delete'],
|
|
||||||
onComplete: function(swaggerApi, swaggerUi){
|
|
||||||
log("Loaded SwaggerUI");
|
|
||||||
|
|
||||||
if(typeof initOAuth == "function") {
|
|
||||||
initOAuth({
|
|
||||||
clientId: "your-client-id",
|
|
||||||
realm: "your-realms",
|
|
||||||
appName: "your-app-name"
|
|
||||||
});
|
|
||||||
}
|
|
||||||
$('pre code').each(function(i, e) {
|
|
||||||
hljs.highlightBlock(e)
|
|
||||||
});
|
|
||||||
},
|
|
||||||
onFailure: function(data) {
|
|
||||||
log("Unable to Load SwaggerUI");
|
|
||||||
},
|
|
||||||
docExpansion: "none"
|
|
||||||
});
|
|
||||||
|
|
||||||
$('#input_apiKey').change(function() {
|
|
||||||
var key = $('#input_apiKey')[0].value;
|
|
||||||
log("key: " + key);
|
|
||||||
if(key && key.trim() != "") {
|
|
||||||
log("added key " + key);
|
|
||||||
window.authorizations.add("key", new ApiKeyAuthorization("access_token", key, "query"));
|
|
||||||
}
|
|
||||||
})
|
|
||||||
window.swaggerUi.load();
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body class="swagger-section">
|
|
||||||
<div id="swagger-header">
|
|
||||||
<div class="swagger-ui-wrap">
|
|
||||||
<form id="api_selector">
|
|
||||||
<div class="input"><input placeholder="access_token" id="input_apiKey" name="apiKey" type="text"></div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="message-bar" class="swagger-ui-wrap message-fail">Can't read from server. It may not have the appropriate access-control-origin settings.</div>
|
|
||||||
<div id="swagger-ui-container" class="swagger-ui-wrap"></div>
|
|
||||||
|
|
||||||
|
|
||||||
</body></html>
|
|
|
@ -1,71 +0,0 @@
|
||||||
"use strict";
|
|
||||||
var fs = require("fs");
|
|
||||||
var nopt = require("nopt");
|
|
||||||
var parser = require("swagger-parser");
|
|
||||||
var path = require("path");
|
|
||||||
|
|
||||||
var opts = nopt({
|
|
||||||
"help": Boolean,
|
|
||||||
"schema": path
|
|
||||||
}, {
|
|
||||||
"h": "--help",
|
|
||||||
"s": "--schema"
|
|
||||||
});
|
|
||||||
|
|
||||||
if (opts.help) {
|
|
||||||
console.log(
|
|
||||||
"Use swagger-parser to validate against Swagger 2.0\n"+
|
|
||||||
"Usage:\n"+
|
|
||||||
" node validator.js -s <schema_file_or_folder>"
|
|
||||||
);
|
|
||||||
process.exit(0);
|
|
||||||
}
|
|
||||||
if (!opts.schema) {
|
|
||||||
console.error("No [s]chema specified.");
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
var errFn = function(err, api) {
|
|
||||||
if (!err) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
console.error(err);
|
|
||||||
process.exit(1);
|
|
||||||
};
|
|
||||||
|
|
||||||
var isDir = fs.lstatSync(opts.schema).isDirectory()
|
|
||||||
if (isDir) {
|
|
||||||
console.log("Checking directory %s for .yaml files...", opts.schema);
|
|
||||||
fs.readdir(opts.schema, function(err, files) {
|
|
||||||
if (err) {
|
|
||||||
console.error(err);
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
files.forEach(function(f) {
|
|
||||||
var suffix = ".yaml";
|
|
||||||
if (f.indexOf(suffix, f.length - suffix.length) > 0) {
|
|
||||||
parser.validate(path.join(opts.schema, f), function(err, api, metadata) {
|
|
||||||
if (!err) {
|
|
||||||
console.log("%s is valid.", f);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
console.error("%s is not valid.", f);
|
|
||||||
errFn(err, api, metadata);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
parser.validate(opts.schema, function(err, api) {
|
|
||||||
if (!err) {
|
|
||||||
console.log("%s is valid", opts.schema);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
errFn(err, api);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue