PeerTube/server/controllers/api/remote/pods.ts

33 lines
911 B
TypeScript
Raw Normal View History

2017-06-05 21:53:49 +02:00
import * as express from 'express'
2017-03-19 18:56:10 +01:00
2017-05-22 20:58:25 +02:00
import { database as db } from '../../../initializers/database'
2017-05-15 22:22:03 +02:00
import { checkSignature, signatureValidator } from '../../../middlewares'
import { PodSignature } from '../../../../shared'
2017-03-19 18:56:10 +01:00
2017-05-15 22:22:03 +02:00
const remotePodsRouter = express.Router()
2017-03-19 18:56:10 +01:00
// Post because this is a secured request
2017-05-15 22:22:03 +02:00
remotePodsRouter.post('/remove',
signatureValidator,
2017-03-19 18:56:10 +01:00
checkSignature,
removePods
)
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
remotePodsRouter
}
2017-03-19 18:56:10 +01:00
// ---------------------------------------------------------------------------
2017-06-10 22:15:25 +02:00
function removePods (req: express.Request, res: express.Response, next: express.NextFunction) {
const signature: PodSignature = req.body.signature
const host = signature.host
2017-03-19 18:56:10 +01:00
db.Pod.loadByHost(host)
.then(pod => pod.destroy())
.then(() => res.type('json').status(204).end())
.catch(err => next(err))
2017-03-19 18:56:10 +01:00
}