mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 19:42:24 +02:00
Add auto follow instances index support
This commit is contained in:
parent
8424c4026a
commit
6f1b4fa417
8 changed files with 234 additions and 15 deletions
38
shared/extra-utils/instances-index/mock-instances-index.ts
Normal file
38
shared/extra-utils/instances-index/mock-instances-index.ts
Normal file
|
@ -0,0 +1,38 @@
|
|||
import * as express from 'express'
|
||||
|
||||
export class MockInstancesIndex {
|
||||
private indexInstances: { host: string, createdAt: string }[] = []
|
||||
|
||||
initialize () {
|
||||
return new Promise(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
|
||||
})
|
||||
})
|
||||
|
||||
app.listen(42100, () => res())
|
||||
})
|
||||
}
|
||||
|
||||
addInstance (host: string) {
|
||||
this.indexInstances.push({ host, createdAt: new Date().toISOString() })
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue