diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2020-04-03 17:13:41 +0900 |
|---|---|---|
| committer | tamaina <tamaina@hotmail.co.jp> | 2020-04-03 17:13:41 +0900 |
| commit | 795fb0eb60ea475533b1d9a12182030f93f01cac (patch) | |
| tree | c42e570047d1e67108d7bb1f8bd5c9fd165bbb1b /src | |
| parent | feat(streaming): Add emoji added event (diff) | |
| download | misskey-795fb0eb60ea475533b1d9a12182030f93f01cac.tar.gz misskey-795fb0eb60ea475533b1d9a12182030f93f01cac.tar.bz2 misskey-795fb0eb60ea475533b1d9a12182030f93f01cac.zip | |
Pre-render ReDoc
redoc-cliはexpandResponsesは200のみとすると数値と認識されてしまい設定できないため202,204という指定にしています
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/assets/redoc.html | 24 | ||||
| -rw-r--r-- | src/server/web/index.ts | 11 | ||||
| -rw-r--r-- | src/tools/add-emoji.ts | 30 | ||||
| -rw-r--r-- | src/tools/index.ts | 8 | ||||
| -rw-r--r-- | src/tools/make-api-json.ts | 9 | ||||
| -rw-r--r-- | src/tools/mark-admin.ts | 18 | ||||
| -rw-r--r-- | src/tools/refresh-question.ts | 20 | ||||
| -rw-r--r-- | src/tools/resync-remote-user.ts | 40 | ||||
| -rw-r--r-- | src/tools/show-signin-history.ts | 39 |
9 files changed, 104 insertions, 95 deletions
diff --git a/src/client/assets/redoc.html b/src/client/assets/redoc.html deleted file mode 100644 index 9803464cb1..0000000000 --- a/src/client/assets/redoc.html +++ /dev/null @@ -1,24 +0,0 @@ -<!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> diff --git a/src/server/web/index.ts b/src/server/web/index.ts index 3da86944d7..55a2620ad5 100644 --- a/src/server/web/index.ts +++ b/src/server/web/index.ts @@ -15,7 +15,6 @@ 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'; @@ -97,13 +96,15 @@ router.get('/api-doc', async ctx => { }); }); -// URL preview endpoint -router.get('/url', require('./url-preview')); - router.get('/api.json', async ctx => { - ctx.body = genOpenapiSpec(); + await send(ctx as any, '/assets/api.json', { + root: client + }); }); +// URL preview endpoint +router.get('/url', require('./url-preview')); + router.get('/docs.json', async ctx => { const lang = ctx.query.lang; if (!Object.keys(locales).includes(lang)) { diff --git a/src/tools/add-emoji.ts b/src/tools/add-emoji.ts index 3745b48889..911108b045 100644 --- a/src/tools/add-emoji.ts +++ b/src/tools/add-emoji.ts @@ -14,17 +14,19 @@ async function main(name: string, url: string, alias?: string): Promise<any> { }); } -const args = process.argv.slice(2); -const name = args[0]; -const url = args[1]; - -if (!name) throw new Error('require name'); -if (!url) throw new Error('require url'); - -main(name, url).then(() => { - console.log('success'); - process.exit(0); -}).catch(e => { - console.warn(e); - process.exit(1); -}); +export default () => { + const args = process.argv.slice(3); + const name = args[0]; + const url = args[1]; + + if (!name) throw new Error('require name'); + if (!url) throw new Error('require url'); + + main(name, url).then(() => { + console.log('success'); + process.exit(0); + }).catch(e => { + console.warn(e); + process.exit(1); + }); +} diff --git a/src/tools/index.ts b/src/tools/index.ts new file mode 100644 index 0000000000..0b59b547d8 --- /dev/null +++ b/src/tools/index.ts @@ -0,0 +1,8 @@ +import { initDb } from '../db/postgre'; +import 'reflect-metadata'; + +console.log('Connecting DB...') +initDb().then(() => { + console.log('Connedted!') + require(`./${process.argv[2]}`).default(); +}); diff --git a/src/tools/make-api-json.ts b/src/tools/make-api-json.ts new file mode 100644 index 0000000000..a8b7559e8d --- /dev/null +++ b/src/tools/make-api-json.ts @@ -0,0 +1,9 @@ +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); +}; diff --git a/src/tools/mark-admin.ts b/src/tools/mark-admin.ts index 5844bb464e..b630dbe901 100644 --- a/src/tools/mark-admin.ts +++ b/src/tools/mark-admin.ts @@ -21,12 +21,14 @@ async function main(username: string) { } } -const args = process.argv.slice(2); +export default () => { + const args = process.argv.slice(3); -main(args[0]).then(() => { - console.log('Success'); - process.exit(0); -}).catch(e => { - console.error(`Error: ${e.message || e}`); - process.exit(1); -}); + main(args[0]).then(() => { + console.log('Success'); + process.exit(0); + }).catch(e => { + console.error(`Error: ${e.message || e}`); + process.exit(1); + }); +} diff --git a/src/tools/refresh-question.ts b/src/tools/refresh-question.ts index 83d71ff303..5104590bf4 100644 --- a/src/tools/refresh-question.ts +++ b/src/tools/refresh-question.ts @@ -4,11 +4,15 @@ async function main(uri: string): Promise<any> { return await updateQuestion(uri); } -const args = process.argv.slice(2); -const uri = args[0]; - -main(uri).then(result => { - console.log(`Done: ${result}`); -}).catch(e => { - console.warn(e); -}); +export default () => { + const args = process.argv.slice(3); + const uri = args[0]; + + main(uri).then(result => { + console.log(`Done: ${result}`); + process.exit(0); + }).catch(e => { + console.warn(e); + process.exit(1); + }); +} diff --git a/src/tools/resync-remote-user.ts b/src/tools/resync-remote-user.ts index c9d1ed588c..497bb89f36 100644 --- a/src/tools/resync-remote-user.ts +++ b/src/tools/resync-remote-user.ts @@ -6,22 +6,26 @@ async function main(acct: string): Promise<any> { await resolveUser(username, host, {}, true); } -// get args -const args = process.argv.slice(2); -let acct = args[0]; - -// normalize args -acct = acct.replace(/^@/, ''); - -// check args -if (!acct.match(/^\w+@\w/)) { - throw `Invalid acct format. Valid format are user@host`; +export default () => { + // get args + const args = process.argv.slice(3); + let acct = args[0]; + + // normalize args + acct = acct.replace(/^@/, ''); + + // check args + if (!acct.match(/^\w+@\w/)) { + throw `Invalid acct format. Valid format are user@host`; + } + + console.log(`resync ${acct}`); + + main(acct).then(() => { + console.log('Done'); + process.exit(0); + }).catch(e => { + console.warn(e); + process.exit(1); + }); } - -console.log(`resync ${acct}`); - -main(acct).then(() => { - console.log('Done'); -}).catch(e => { - console.warn(e); -}); diff --git a/src/tools/show-signin-history.ts b/src/tools/show-signin-history.ts index fd7cd39e38..233b97a790 100644 --- a/src/tools/show-signin-history.ts +++ b/src/tools/show-signin-history.ts @@ -1,12 +1,12 @@ import { Users, Signins } from '../models'; -// node built/tools/show-signin-history username +// node built/tools/ show-signin-history username // => {Success} {Date} {IPAddrsss} -// node built/tools/show-signin-history username user-agent,x-forwarded-for +// node built/tools/ show-signin-history username user-agent,x-forwarded-for // with user-agent and x-forwarded-for -// node built/tools/show-signin-history username all +// node built/tools/ show-signin-history username all // with full request headers async function main(username: string, headers?: string[]) { @@ -35,22 +35,25 @@ async function main(username: string, headers?: string[]) { } } -// get args -const args = process.argv.slice(2); +export default () => { + // get args + const args = process.argv.slice(3); -let username = args[0]; -let headers: string[] | undefined; + let username = args[0]; + let headers: string[] | undefined; -if (args[1] != null) { - headers = args[1].split(/,/).map(header => header.toLowerCase()); -} + if (args[1] != null) { + headers = args[1].split(/,/).map(header => header.toLowerCase()); + } + + // normalize args + username = username.replace(/^@/, ''); -// normalize args -username = username.replace(/^@/, ''); + main(username, headers).then(() => { + process.exit(0); + }).catch(e => { + console.warn(e); + process.exit(1); + }); +} -main(username, headers).then(() => { - process.exit(0); -}).catch(e => { - console.warn(e); - process.exit(1); -}); |