diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-11-09 17:51:58 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-11-27 19:40:51 +0100 |
commit | e4f97babf701481b55cc10fb3448feab5f97c867 (patch) | |
tree | af37402a594dc5ff09f71ecb0687e8cfe4cdb471 /server/controllers/api/remote/pods.ts | |
parent | 343ad675f2a26c15b86150a9a3552e619d5d44f4 (diff) | |
download | PeerTube-e4f97babf701481b55cc10fb3448feab5f97c867.tar.gz PeerTube-e4f97babf701481b55cc10fb3448feab5f97c867.tar.zst PeerTube-e4f97babf701481b55cc10fb3448feab5f97c867.zip |
Begin activitypub
Diffstat (limited to 'server/controllers/api/remote/pods.ts')
-rw-r--r-- | server/controllers/api/remote/pods.ts | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/server/controllers/api/remote/pods.ts b/server/controllers/api/remote/pods.ts deleted file mode 100644 index 326eb61ac..000000000 --- a/server/controllers/api/remote/pods.ts +++ /dev/null | |||
@@ -1,69 +0,0 @@ | |||
1 | import * as express from 'express' | ||
2 | |||
3 | import { database as db } from '../../../initializers/database' | ||
4 | import { | ||
5 | checkSignature, | ||
6 | signatureValidator, | ||
7 | setBodyHostPort, | ||
8 | remotePodsAddValidator, | ||
9 | asyncMiddleware | ||
10 | } from '../../../middlewares' | ||
11 | import { sendOwnedDataToPod } from '../../../lib' | ||
12 | import { getMyPublicCert, getFormattedObjects } from '../../../helpers' | ||
13 | import { CONFIG } from '../../../initializers' | ||
14 | import { PodInstance } from '../../../models' | ||
15 | import { PodSignature, Pod as FormattedPod } from '../../../../shared' | ||
16 | |||
17 | const remotePodsRouter = express.Router() | ||
18 | |||
19 | remotePodsRouter.post('/remove', | ||
20 | signatureValidator, | ||
21 | checkSignature, | ||
22 | asyncMiddleware(removePods) | ||
23 | ) | ||
24 | |||
25 | remotePodsRouter.post('/list', | ||
26 | asyncMiddleware(remotePodsList) | ||
27 | ) | ||
28 | |||
29 | remotePodsRouter.post('/add', | ||
30 | setBodyHostPort, // We need to modify the host before running the validator! | ||
31 | remotePodsAddValidator, | ||
32 | asyncMiddleware(addPods) | ||
33 | ) | ||
34 | |||
35 | // --------------------------------------------------------------------------- | ||
36 | |||
37 | export { | ||
38 | remotePodsRouter | ||
39 | } | ||
40 | |||
41 | // --------------------------------------------------------------------------- | ||
42 | |||
43 | async function addPods (req: express.Request, res: express.Response, next: express.NextFunction) { | ||
44 | const information = req.body | ||
45 | |||
46 | const pod = db.Pod.build(information) | ||
47 | const podCreated = await pod.save() | ||
48 | |||
49 | await sendOwnedDataToPod(podCreated.id) | ||
50 | |||
51 | const cert = await getMyPublicCert() | ||
52 | return res.json({ cert, email: CONFIG.ADMIN.EMAIL }) | ||
53 | } | ||
54 | |||
55 | async function remotePodsList (req: express.Request, res: express.Response, next: express.NextFunction) { | ||
56 | const pods = await db.Pod.list() | ||
57 | |||
58 | return res.json(getFormattedObjects<FormattedPod, PodInstance>(pods, pods.length)) | ||
59 | } | ||
60 | |||
61 | async function removePods (req: express.Request, res: express.Response, next: express.NextFunction) { | ||
62 | const signature: PodSignature = req.body.signature | ||
63 | const host = signature.host | ||
64 | |||
65 | const pod = await db.Pod.loadByHost(host) | ||
66 | await pod.destroy() | ||
67 | |||
68 | return res.type('json').status(204).end() | ||
69 | } | ||