1
0
Fork 0
peertube/shared/extra-utils/mock-servers/mock-instances-index.ts

49 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-08-27 12:32:44 +00:00
import express from 'express'
2021-10-14 09:35:43 +00:00
import { Server } from 'http'
2021-04-15 11:52:27 +00:00
import { randomInt } from '@shared/core-utils'
2021-10-14 09:35:43 +00:00
import { terminateServer } from './utils'
export class MockInstancesIndex {
2021-10-14 09:35:43 +00:00
private server: Server
2020-01-31 15:56:52 +00:00
private readonly indexInstances: { host: string, createdAt: string }[] = []
initialize () {
2021-04-15 11:52:27 +00:00
return new Promise<number>(res => {
const app = express()
app.use('/', (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (process.env.DEBUG) console.log('Receiving request on mocked server %s.', req.url)
return next()
})
app.get('/api/v1/instances/hosts', (req: express.Request, res: express.Response) => {
const since = req.query.since
const filtered = this.indexInstances.filter(i => {
if (!since) return true
return i.createdAt > since
})
return res.json({
total: filtered.length,
data: filtered
})
})
2021-10-12 11:30:41 +00:00
const port = 42000 + randomInt(1, 1000)
2021-10-14 09:35:43 +00:00
this.server = app.listen(port, () => res(port))
})
}
addInstance (host: string) {
this.indexInstances.push({ host, createdAt: new Date().toISOString() })
}
2021-10-14 09:35:43 +00:00
terminate () {
return terminateServer(this.server)
}
}