aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/videos/channel.ts
blob: 630fc4f53d02bce16cad4aed37fee0f044c324c1 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
import * as express from 'express'

import { database as db } from '../../../initializers'
import {
  logger,
  getFormattedObjects,
  retryTransactionWrapper
} from '../../../helpers'
import {
  authenticate,
  paginationValidator,
  videoChannelsSortValidator,
  videoChannelsAddValidator,
  setVideoChannelsSort,
  setPagination,
  videoChannelsRemoveValidator,
  videoChannelGetValidator,
  videoChannelsUpdateValidator,
  listVideoAuthorChannelsValidator
} from '../../../middlewares'
import {
  createVideoChannel,
  updateVideoChannelToFriends
} from '../../../lib'
import { VideoChannelInstance, AuthorInstance } from '../../../models'
import { VideoChannelCreate, VideoChannelUpdate } from '../../../../shared'

const videoChannelRouter = express.Router()

videoChannelRouter.get('/channels',
  paginationValidator,
  videoChannelsSortValidator,
  setVideoChannelsSort,
  setPagination,
  listVideoChannels
)

videoChannelRouter.get('/authors/:authorId/channels',
  listVideoAuthorChannelsValidator,
  listVideoAuthorChannels
)

videoChannelRouter.post('/channels',
  authenticate,
  videoChannelsAddValidator,
  addVideoChannelRetryWrapper
)

videoChannelRouter.put('/channels/:id',
  authenticate,
  videoChannelsUpdateValidator,
  updateVideoChannelRetryWrapper
)

videoChannelRouter.delete('/channels/:id',
  authenticate,
  videoChannelsRemoveValidator,
  removeVideoChannelRetryWrapper
)

videoChannelRouter.get('/channels/:id',
  videoChannelGetValidator,
  getVideoChannel
)

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

export {
  videoChannelRouter
}

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

function listVideoChannels (req: express.Request, res: express.Response, next: express.NextFunction) {
  db.VideoChannel.listForApi(req.query.start, req.query.count, req.query.sort)
    .then(result => res.json(getFormattedObjects(result.data, result.total)))
    .catch(err => next(err))
}

function listVideoAuthorChannels (req: express.Request, res: express.Response, next: express.NextFunction) {
  db.VideoChannel.listByAuthor(res.locals.author.id)
    .then(result => res.json(getFormattedObjects(result.data, result.total)))
    .catch(err => next(err))
}

// Wrapper to video channel add that retry the function if there is a database error
// We need this because we run the transaction in SERIALIZABLE isolation that can fail
function addVideoChannelRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
  const options = {
    arguments: [ req, res ],
    errorMessage: 'Cannot insert the video video channel with many retries.'
  }

  retryTransactionWrapper(addVideoChannel, options)
    .then(() => {
      // TODO : include Location of the new video channel -> 201
      res.type('json').status(204).end()
    })
    .catch(err => next(err))
}

function addVideoChannel (req: express.Request, res: express.Response) {
  const videoChannelInfo: VideoChannelCreate = req.body
  const author: AuthorInstance = res.locals.oauth.token.User.Author

  return db.sequelize.transaction(t => {
    return createVideoChannel(videoChannelInfo, author, t)
  })
  .then(videoChannelUUID => logger.info('Video channel with uuid %s created.', videoChannelUUID))
  .catch((err: Error) => {
    logger.debug('Cannot insert the video channel.', err)
    throw err
  })
}

function updateVideoChannelRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
  const options = {
    arguments: [ req, res ],
    errorMessage: 'Cannot update the video with many retries.'
  }

  retryTransactionWrapper(updateVideoChannel, options)
    .then(() => res.type('json').status(204).end())
    .catch(err => next(err))
}

function updateVideoChannel (req: express.Request, res: express.Response) {
  const videoChannelInstance: VideoChannelInstance = res.locals.videoChannel
  const videoChannelFieldsSave = videoChannelInstance.toJSON()
  const videoChannelInfoToUpdate: VideoChannelUpdate = req.body

  return db.sequelize.transaction(t => {
    const options = {
      transaction: t
    }

    if (videoChannelInfoToUpdate.name !== undefined) videoChannelInstance.set('name', videoChannelInfoToUpdate.name)
    if (videoChannelInfoToUpdate.description !== undefined) videoChannelInstance.set('description', videoChannelInfoToUpdate.description)

    return videoChannelInstance.save(options)
      .then(() => {
        const json = videoChannelInstance.toUpdateRemoteJSON()

        // Now we'll update the video channel's meta data to our friends
        return updateVideoChannelToFriends(json, t)
      })
  })
    .then(() => {
      logger.info('Video channel with name %s and uuid %s updated.', videoChannelInstance.name, videoChannelInstance.uuid)
    })
    .catch(err => {
      logger.debug('Cannot update the video channel.', err)

      // Force fields we want to update
      // If the transaction is retried, sequelize will think the object has not changed
      // So it will skip the SQL request, even if the last one was ROLLBACKed!
      Object.keys(videoChannelFieldsSave).forEach(key => {
        const value = videoChannelFieldsSave[key]
        videoChannelInstance.set(key, value)
      })

      throw err
    })
}

function removeVideoChannelRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
  const options = {
    arguments: [ req, res ],
    errorMessage: 'Cannot remove the video channel with many retries.'
  }

  retryTransactionWrapper(removeVideoChannel, options)
    .then(() => res.type('json').status(204).end())
    .catch(err => next(err))
}

function removeVideoChannel (req: express.Request, res: express.Response) {
  const videoChannelInstance: VideoChannelInstance = res.locals.videoChannel

  return db.sequelize.transaction(t => {
    return videoChannelInstance.destroy({ transaction: t })
  })
  .then(() => {
    logger.info('Video channel with name %s and uuid %s deleted.', videoChannelInstance.name, videoChannelInstance.uuid)
  })
  .catch(err => {
    logger.error('Errors when removed the video channel.', err)
    throw err
  })
}

function getVideoChannel (req: express.Request, res: express.Response, next: express.NextFunction) {
  db.VideoChannel.loadAndPopulateAuthorAndVideos(res.locals.videoChannel.id)
    .then(videoChannelWithVideos => res.json(videoChannelWithVideos.toFormattedJSON()))
    .catch(err => next(err))
}