aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/pods.ts
blob: bf1b744e55a39971492d152656bcfe884cdac412 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import * as express from 'express'

import { database as db } from '../../initializers/database'
import { logger, getFormattedObjects } from '../../helpers'
import {
  makeFriends,
  quitFriends,
  removeFriend
} from '../../lib'
import {
  authenticate,
  ensureIsAdmin,
  makeFriendsValidator,
  setBodyHostsPort,
  podRemoveValidator,
  paginationValidator,
  setPagination,
  setPodsSort,
  podsSortValidator,
  asyncMiddleware
} from '../../middlewares'
import { PodInstance } from '../../models'

const podsRouter = express.Router()

podsRouter.get('/',
  paginationValidator,
  podsSortValidator,
  setPodsSort,
  setPagination,
  asyncMiddleware(listPods)
)
podsRouter.post('/make-friends',
  authenticate,
  ensureIsAdmin,
  makeFriendsValidator,
  setBodyHostsPort,
  asyncMiddleware(makeFriendsController)
)
podsRouter.get('/quit-friends',
  authenticate,
  ensureIsAdmin,
  asyncMiddleware(quitFriendsController)
)
podsRouter.delete('/:id',
  authenticate,
  ensureIsAdmin,
  podRemoveValidator,
  asyncMiddleware(removeFriendController)
)

// ---------------------------------------------------------------------------

export {
  podsRouter
}

// ---------------------------------------------------------------------------

async function listPods (req: express.Request, res: express.Response, next: express.NextFunction) {
  const resultList = await db.Pod.listForApi(req.query.start, req.query.count, req.query.sort)

  return res.json(getFormattedObjects(resultList.data, resultList.total))
}

async function makeFriendsController (req: express.Request, res: express.Response, next: express.NextFunction) {
  const hosts = req.body.hosts as string[]

  // Don't wait the process that could be long
  makeFriends(hosts)
    .then(() => logger.info('Made friends!'))
    .catch(err => logger.error('Could not make friends.', err))

  return res.type('json').status(204).end()
}

async function quitFriendsController (req: express.Request, res: express.Response, next: express.NextFunction) {
  await quitFriends()

  return res.type('json').status(204).end()
}

async function removeFriendController (req: express.Request, res: express.Response, next: express.NextFunction) {
  const pod = res.locals.pod as PodInstance

  await removeFriend(pod)

  return res.type('json').status(204).end()
}