Revert
This commit is contained in:
parent
99fc77b678
commit
eec1af1f52
@ -15,7 +15,7 @@
|
||||
"ormconfig": "node ./built/ormconfig.js",
|
||||
"migrate": "ts-node ./node_modules/typeorm/cli.js migration:run",
|
||||
"migrateandstart": "npm run migrate && npm run start",
|
||||
"build": "webpack && gulp build && npm run redoc",
|
||||
"build": "webpack && gulp build",
|
||||
"webpack": "webpack",
|
||||
"watch": "webpack --watch",
|
||||
"gulp": "gulp build",
|
||||
@ -23,8 +23,7 @@
|
||||
"cleanall": "gulp cleanall",
|
||||
"lint": "tslint 'src/**/*.ts'",
|
||||
"test": "cross-env TS_NODE_FILES=true gulp test",
|
||||
"format": "gulp format",
|
||||
"redoc": "node ./built/tools/ make-api-json && redoc-cli bundle built/client/assets/api.json -o built/client/assets/redoc.html --options.expandResponses '200,204' --options.expandSingleSchemaField true --cdn true"
|
||||
"format": "gulp format"
|
||||
},
|
||||
"resolutions": {
|
||||
"https-proxy-agent": "^3.0.0",
|
||||
@ -203,7 +202,6 @@
|
||||
"reconnecting-websocket": "4.4.0",
|
||||
"redis": "3.0.2",
|
||||
"redis-lock": "0.1.4",
|
||||
"redoc-cli": "0.9.7",
|
||||
"reflect-metadata": "0.1.13",
|
||||
"rename": "1.0.4",
|
||||
"request": "2.88.2",
|
||||
|
24
src/client/assets/redoc.html
Normal file
24
src/client/assets/redoc.html
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Misskey API</title>
|
||||
<!-- needed for adaptive design -->
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
|
||||
|
||||
<!--
|
||||
ReDoc doesn't change outer page styles
|
||||
-->
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<redoc spec-url='/api.json'></redoc>
|
||||
<script src="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js"> </script>
|
||||
</body>
|
||||
</html>
|
@ -15,6 +15,7 @@ import * as MarkdownIt from 'markdown-it';
|
||||
|
||||
import packFeed from './feed';
|
||||
import { fetchMeta } from '../../misc/fetch-meta';
|
||||
import { genOpenapiSpec } from '../api/openapi/gen-spec';
|
||||
import config from '../../config';
|
||||
import { Users, Notes, Emojis, UserProfiles, Pages } from '../../models';
|
||||
import parseAcct from '../../misc/acct/parse';
|
||||
@ -96,15 +97,13 @@ router.get('/api-doc', async ctx => {
|
||||
});
|
||||
});
|
||||
|
||||
router.get('/api.json', async ctx => {
|
||||
await send(ctx as any, '/assets/api.json', {
|
||||
root: client
|
||||
});
|
||||
});
|
||||
|
||||
// URL preview endpoint
|
||||
router.get('/url', require('./url-preview'));
|
||||
|
||||
router.get('/api.json', async ctx => {
|
||||
ctx.body = genOpenapiSpec();
|
||||
});
|
||||
|
||||
router.get('/docs.json', async ctx => {
|
||||
const lang = ctx.query.lang;
|
||||
if (!Object.keys(locales).includes(lang)) {
|
||||
|
@ -14,8 +14,7 @@ async function main(name: string, url: string, alias?: string): Promise<any> {
|
||||
});
|
||||
}
|
||||
|
||||
export default () => {
|
||||
const args = process.argv.slice(3);
|
||||
const args = process.argv.slice(2);
|
||||
const name = args[0];
|
||||
const url = args[1];
|
||||
|
||||
@ -29,4 +28,3 @@ export default () => {
|
||||
console.warn(e);
|
||||
process.exit(1);
|
||||
});
|
||||
}
|
||||
|
@ -1,8 +0,0 @@
|
||||
import { initDb } from '../db/postgre';
|
||||
import 'reflect-metadata';
|
||||
|
||||
console.log('Connecting DB...')
|
||||
initDb().then(() => {
|
||||
console.log('Connedted!')
|
||||
require(`./${process.argv[2]}`).default();
|
||||
});
|
@ -1,9 +0,0 @@
|
||||
import { writeFileSync } from 'fs';
|
||||
import { join } from 'path';
|
||||
import { genOpenapiSpec } from '../server/api/openapi/gen-spec';
|
||||
|
||||
export default () => {
|
||||
writeFileSync(join(__dirname, '../../built/client/assets/api.json'), JSON.stringify(genOpenapiSpec()));
|
||||
console.log('Done!');
|
||||
process.exit(0);
|
||||
};
|
@ -21,8 +21,7 @@ async function main(username: string) {
|
||||
}
|
||||
}
|
||||
|
||||
export default () => {
|
||||
const args = process.argv.slice(3);
|
||||
const args = process.argv.slice(2);
|
||||
|
||||
main(args[0]).then(() => {
|
||||
console.log('Success');
|
||||
@ -31,4 +30,3 @@ export default () => {
|
||||
console.error(`Error: ${e.message || e}`);
|
||||
process.exit(1);
|
||||
});
|
||||
}
|
||||
|
@ -4,15 +4,11 @@ async function main(uri: string): Promise<any> {
|
||||
return await updateQuestion(uri);
|
||||
}
|
||||
|
||||
export default () => {
|
||||
const args = process.argv.slice(3);
|
||||
const args = process.argv.slice(2);
|
||||
const uri = args[0];
|
||||
|
||||
main(uri).then(result => {
|
||||
console.log(`Done: ${result}`);
|
||||
process.exit(0);
|
||||
}).catch(e => {
|
||||
console.warn(e);
|
||||
process.exit(1);
|
||||
});
|
||||
}
|
||||
|
@ -6,9 +6,8 @@ async function main(acct: string): Promise<any> {
|
||||
await resolveUser(username, host, {}, true);
|
||||
}
|
||||
|
||||
export default () => {
|
||||
// get args
|
||||
const args = process.argv.slice(3);
|
||||
const args = process.argv.slice(2);
|
||||
let acct = args[0];
|
||||
|
||||
// normalize args
|
||||
@ -23,9 +22,6 @@ export default () => {
|
||||
|
||||
main(acct).then(() => {
|
||||
console.log('Done');
|
||||
process.exit(0);
|
||||
}).catch(e => {
|
||||
console.warn(e);
|
||||
process.exit(1);
|
||||
});
|
||||
}
|
||||
|
@ -35,9 +35,8 @@ async function main(username: string, headers?: string[]) {
|
||||
}
|
||||
}
|
||||
|
||||
export default () => {
|
||||
// get args
|
||||
const args = process.argv.slice(3);
|
||||
const args = process.argv.slice(2);
|
||||
|
||||
let username = args[0];
|
||||
let headers: string[] | undefined;
|
||||
@ -55,5 +54,3 @@ export default () => {
|
||||
console.warn(e);
|
||||
process.exit(1);
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user