PeerTube/shared/extra-utils/mock-servers/mock-instances-index.ts

39 lines
1001 B
TypeScript
Raw Normal View History

import * as express from 'express'
export class MockInstancesIndex {
2020-01-31 16:56:52 +01:00
private readonly indexInstances: { host: string, createdAt: string }[] = []
initialize () {
2021-02-03 09:33:05 +01:00
return new Promise<void>(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
})
})
2020-05-12 09:37:39 +02:00
app.listen(42101, () => res())
})
}
addInstance (host: string) {
this.indexInstances.push({ host, createdAt: new Date().toISOString() })
}
}