-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.ts
233 lines (196 loc) · 5.48 KB
/
app.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import { Logger, Context, Session, Time } from 'koishi'
import fs from 'fs'
import Koa from 'koa'
import path from 'path'
import assert from 'assert'
import cors from '@koa/cors'
import hash from 'object-hash'
import sendFile from 'koa-send'
import Router from '@koa/router'
import { cloneDeep } from 'lodash'
import staticHost from 'koa-static'
import MarkdownIt from 'markdown-it'
import bodyParser from 'koa-bodyparser'
import { Config } from './index'
import { UserMeta, ChannelMeta, getUser, getChannel } from '../../utils/usermeta'
import { shorturlMiddlewareFactory } from '../../commands/shorturl'
export { Context as RouteContext } from 'koa'
const viteDist = path.join(__dirname, 'vite/dist')
type PageMethodCallback = (() => any) | {
arguments: Array<string>
}
export interface PageData {
layout: string
data: any
user?: UserMeta | Promise<UserMeta>
channel?: ChannelMeta | Promise<ChannelMeta>
cacheTime?: number
methods?: {
[k: string]: PageMethodCallback | boolean
}
}
export interface PageArgument {
route?: string
hash?: any
data: PageData
session?: Session
cacheTime?: number
}
export class WebAuthorizeError extends Error { }
export class WebService {
private defaultCacheTime = Time.day
private router: Router
private logger: Logger
private markdown: MarkdownIt
private pages: { [hash: string]: PageData }
private async parseUser(session: Session): Promise<UserMeta> {
assert(session.subtype === 'private')
return getUser(session.platform, session.userId, this.ctx)
}
private async parseChannel(session: Session): Promise<ChannelMeta> {
return getChannel(session.platform, session.channelId, this.ctx)
}
private async handlePageData(page: PageData, ctx: Koa.Context): Promise<PageData> {
page.user = page.user && (await page.user)
page.channel = page.channel && (await page.channel)
for (const key in page.data) {
if (page.data[key] instanceof Function) {
page.data[key] = await page.data[key](ctx)
}
}
return page
}
async authorize(route: string, session: Session) {
if (!route || !(route in this.pages)) {
throw new WebAuthorizeError('对应路由不存在')
}
if (session.subtype !== 'private') {
throw new WebAuthorizeError('只支持在私有回话中授权')
}
const source: PageData = this.pages[route]
if (source.user) {
throw new WebAuthorizeError('对应链接已被授权')
}
const target = cloneDeep(source)
target.user = await this.parseUser(session)
return target
}
getPluginMiddlewares():Array<Koa.Middleware> {
return [
shorturlMiddlewareFactory(this.ctx)
]
}
register(argv: PageArgument): string {
const { data } = argv
let route: string
if (argv.route) {
route = argv.route
} else if (!argv.hash) {
route = hash({ r: Math.random() }, { algorithm: 'sha1' }).slice(0, 8)
} else {
route = hash({ _key: argv.hash?.key || this.config.key, hash: argv.hash }, { algorithm: 'sha1' }).slice(0, 8)
}
if (argv.session) {
if (argv.session.subtype === 'private') {
data.user = data.user || this.parseUser(argv.session)
} else {
data.channel = data.channel || this.parseChannel(argv.session)
}
}
this.pages[route] = data
setTimeout(() => {
delete this.pages[route]
this.pages[route] = null
}, argv.cacheTime || this.defaultCacheTime)
return `${this.config.hostname}/${route}`
}
registerKoaRouter(): void {
this.router.get('/api/get/:key', async (ctx, next) => {
const key = ctx.params.key as string
if (key in this.pages) {
let data = this.pages[key]
ctx.body = await this.handlePageData(cloneDeep(data), ctx)
} else {
await next()
}
})
this.router.get('/:key', async (ctx, next) => {
const key = ctx.params.key as string
if (key in this.pages) {
ctx.url = '/' // The SPA Fallback, should rewrite to index page
await next()
} else {
await next()
}
})
}
registerKoaApp(): void {
if (process.env.NODE_ENV === 'development') {
this.app.use(cors())
}
this.app.use(async (ctx, next) => {
const url = ctx.url
const startTime = Date.now()
await next()
const responseTime = Date.now() - startTime
ctx.set('X-Response-Time', `${responseTime}ms`)
this.logger.info(`${ctx.method} ${url} - ${responseTime}`)
})
this.app.use(bodyParser())
this.app.use(staticHost(viteDist, {
index: false,
gzip: true,
}))
for (const middleware of this.getPluginMiddlewares()) {
this.app.use(middleware)
}
this.app
.use(this.router.routes())
.use(this.router.allowedMethods())
// SPA Root
this.app.use(async (ctx, next) => {
if (ctx.request.method === 'GET' && ctx.request.path === '/') {
await sendFile(ctx, 'index.html', { root: viteDist })
} else {
next()
}
})
// Error Handler
this.app.use(async (ctx, next) => {
ctx.body = '404'
})
this.app.listen(this.config.port)
}
registerGlobalPages() {
this.register({
route: 'test',
data: { layout: 'basic', data: 'hello' },
})
const readmeMarkdown = fs.readFileSync(path.join(__dirname, '../../../README.md')).toString()
const readmeHTML = this.markdown.render(readmeMarkdown)
this.register({
route: 'home',
data: {
layout: 'home',
data: {
readme: readmeHTML,
},
},
})
}
constructor(
private ctx: Context,
private app: Koa,
private config: Config,
) {
this.router = new Router()
this.logger = this.ctx.logger('koa-app')
this.markdown = new MarkdownIt({
html: true,
})
this.pages = {}
this.registerKoaRouter()
this.registerKoaApp()
this.registerGlobalPages()
}
}