]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/video-channel.ts
Add refresh video on search
[github/Chocobozzz/PeerTube.git] / server / controllers / api / video-channel.ts
CommitLineData
48dce1c9 1import * as express from 'express'
06215f15 2import { getFormattedObjects } from '../../helpers/utils'
48dce1c9
C
3import {
4 asyncMiddleware,
90d4bb81 5 asyncRetryTransactionMiddleware,
06215f15
C
6 authenticate,
7 commonVideosFiltersValidator,
cc918ac3 8 optionalAuthenticate,
48dce1c9
C
9 paginationValidator,
10 setDefaultPagination,
11 setDefaultSort,
cc918ac3 12 videoChannelsAddValidator,
cc918ac3
C
13 videoChannelsRemoveValidator,
14 videoChannelsSortValidator,
15 videoChannelsUpdateValidator
48dce1c9
C
16} from '../../middlewares'
17import { VideoChannelModel } from '../../models/video/video-channel'
8a19bee1 18import { videoChannelsNameWithHostValidator, videosSortValidator } from '../../middlewares/validators'
cc918ac3
C
19import { sendUpdateActor } from '../../lib/activitypub/send'
20import { VideoChannelCreate, VideoChannelUpdate } from '../../../shared'
21import { createVideoChannel } from '../../lib/video-channel'
06215f15 22import { buildNSFWFilter, createReqFiles } from '../../helpers/express-utils'
cc918ac3 23import { setAsyncActorKeys } from '../../lib/activitypub'
cc918ac3 24import { AccountModel } from '../../models/account/account'
4bbfc6c6 25import { CONFIG, IMAGE_MIMETYPE_EXT, sequelizeTypescript } from '../../initializers'
cc918ac3
C
26import { logger } from '../../helpers/logger'
27import { VideoModel } from '../../models/video/video'
4bbfc6c6
C
28import { updateAvatarValidator } from '../../middlewares/validators/avatar'
29import { updateActorAvatarFile } from '../../lib/avatar'
80e36cd9 30import { auditLoggerFactory, VideoChannelAuditView } from '../../helpers/audit-logger'
06215f15 31import { resetSequelizeInstance } from '../../helpers/database-utils'
4bbfc6c6 32
80e36cd9 33const auditLogger = auditLoggerFactory('channels')
4bbfc6c6 34const reqAvatarFile = createReqFiles([ 'avatarfile' ], IMAGE_MIMETYPE_EXT, { avatarfile: CONFIG.STORAGE.AVATARS_DIR })
48dce1c9
C
35
36const videoChannelRouter = express.Router()
37
38videoChannelRouter.get('/',
39 paginationValidator,
40 videoChannelsSortValidator,
41 setDefaultSort,
42 setDefaultPagination,
43 asyncMiddleware(listVideoChannels)
44)
45
cc918ac3
C
46videoChannelRouter.post('/',
47 authenticate,
48 videoChannelsAddValidator,
90d4bb81 49 asyncRetryTransactionMiddleware(addVideoChannel)
cc918ac3
C
50)
51
8a19bee1 52videoChannelRouter.post('/:nameWithHost/avatar/pick',
4bbfc6c6
C
53 authenticate,
54 reqAvatarFile,
55 // Check the rights
56 asyncMiddleware(videoChannelsUpdateValidator),
57 updateAvatarValidator,
58 asyncMiddleware(updateVideoChannelAvatar)
59)
60
8a19bee1 61videoChannelRouter.put('/:nameWithHost',
cc918ac3
C
62 authenticate,
63 asyncMiddleware(videoChannelsUpdateValidator),
90d4bb81 64 asyncRetryTransactionMiddleware(updateVideoChannel)
cc918ac3
C
65)
66
8a19bee1 67videoChannelRouter.delete('/:nameWithHost',
cc918ac3
C
68 authenticate,
69 asyncMiddleware(videoChannelsRemoveValidator),
90d4bb81 70 asyncRetryTransactionMiddleware(removeVideoChannel)
cc918ac3
C
71)
72
8a19bee1
C
73videoChannelRouter.get('/:nameWithHost',
74 asyncMiddleware(videoChannelsNameWithHostValidator),
cc918ac3
C
75 asyncMiddleware(getVideoChannel)
76)
77
8a19bee1
C
78videoChannelRouter.get('/:nameWithHost/videos',
79 asyncMiddleware(videoChannelsNameWithHostValidator),
cc918ac3
C
80 paginationValidator,
81 videosSortValidator,
82 setDefaultSort,
83 setDefaultPagination,
84 optionalAuthenticate,
d525fc39 85 commonVideosFiltersValidator,
cc918ac3
C
86 asyncMiddleware(listVideoChannelVideos)
87)
88
48dce1c9
C
89// ---------------------------------------------------------------------------
90
91export {
92 videoChannelRouter
93}
94
95// ---------------------------------------------------------------------------
96
97async function listVideoChannels (req: express.Request, res: express.Response, next: express.NextFunction) {
98 const resultList = await VideoChannelModel.listForApi(req.query.start, req.query.count, req.query.sort)
99
100 return res.json(getFormattedObjects(resultList.data, resultList.total))
101}
cc918ac3 102
4bbfc6c6
C
103async function updateVideoChannelAvatar (req: express.Request, res: express.Response, next: express.NextFunction) {
104 const avatarPhysicalFile = req.files[ 'avatarfile' ][ 0 ]
80e36cd9
AB
105 const videoChannel = res.locals.videoChannel as VideoChannelModel
106 const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannel.toFormattedJSON())
4bbfc6c6
C
107
108 const avatar = await updateActorAvatarFile(avatarPhysicalFile, videoChannel.Actor, videoChannel)
109
80e36cd9
AB
110 auditLogger.update(
111 res.locals.oauth.token.User.Account.Actor.getIdentifier(),
112 new VideoChannelAuditView(videoChannel.toFormattedJSON()),
113 oldVideoChannelAuditKeys
114 )
115
4bbfc6c6
C
116 return res
117 .json({
118 avatar: avatar.toFormattedJSON()
119 })
120 .end()
121}
122
cc918ac3
C
123async function addVideoChannel (req: express.Request, res: express.Response) {
124 const videoChannelInfo: VideoChannelCreate = req.body
125 const account: AccountModel = res.locals.oauth.token.User.Account
126
127 const videoChannelCreated: VideoChannelModel = await sequelizeTypescript.transaction(async t => {
128 return createVideoChannel(videoChannelInfo, account, t)
129 })
130
131 setAsyncActorKeys(videoChannelCreated.Actor)
132 .catch(err => logger.error('Cannot set async actor keys for account %s.', videoChannelCreated.Actor.uuid, { err }))
133
80e36cd9
AB
134 auditLogger.create(
135 res.locals.oauth.token.User.Account.Actor.getIdentifier(),
136 new VideoChannelAuditView(videoChannelCreated.toFormattedJSON())
137 )
cc918ac3
C
138 logger.info('Video channel with uuid %s created.', videoChannelCreated.Actor.uuid)
139
90d4bb81
C
140 return res.json({
141 videoChannel: {
142 id: videoChannelCreated.id,
143 uuid: videoChannelCreated.Actor.uuid
144 }
145 }).end()
cc918ac3
C
146}
147
148async function updateVideoChannel (req: express.Request, res: express.Response) {
149 const videoChannelInstance = res.locals.videoChannel as VideoChannelModel
150 const videoChannelFieldsSave = videoChannelInstance.toJSON()
80e36cd9 151 const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannelInstance.toFormattedJSON())
cc918ac3
C
152 const videoChannelInfoToUpdate = req.body as VideoChannelUpdate
153
154 try {
155 await sequelizeTypescript.transaction(async t => {
156 const sequelizeOptions = {
157 transaction: t
158 }
159
08c1efbe 160 if (videoChannelInfoToUpdate.displayName !== undefined) videoChannelInstance.set('name', videoChannelInfoToUpdate.displayName)
cc918ac3
C
161 if (videoChannelInfoToUpdate.description !== undefined) videoChannelInstance.set('description', videoChannelInfoToUpdate.description)
162 if (videoChannelInfoToUpdate.support !== undefined) videoChannelInstance.set('support', videoChannelInfoToUpdate.support)
163
164 const videoChannelInstanceUpdated = await videoChannelInstance.save(sequelizeOptions)
165 await sendUpdateActor(videoChannelInstanceUpdated, t)
cc918ac3 166
80e36cd9
AB
167 auditLogger.update(
168 res.locals.oauth.token.User.Account.Actor.getIdentifier(),
169 new VideoChannelAuditView(videoChannelInstanceUpdated.toFormattedJSON()),
170 oldVideoChannelAuditKeys
171 )
172 logger.info('Video channel with name %s and uuid %s updated.', videoChannelInstance.name, videoChannelInstance.Actor.uuid)
173 })
cc918ac3
C
174 } catch (err) {
175 logger.debug('Cannot update the video channel.', { err })
176
177 // Force fields we want to update
178 // If the transaction is retried, sequelize will think the object has not changed
179 // So it will skip the SQL request, even if the last one was ROLLBACKed!
180 resetSequelizeInstance(videoChannelInstance, videoChannelFieldsSave)
181
182 throw err
183 }
cc918ac3
C
184
185 return res.type('json').status(204).end()
186}
187
188async function removeVideoChannel (req: express.Request, res: express.Response) {
189 const videoChannelInstance: VideoChannelModel = res.locals.videoChannel
190
90d4bb81 191 await sequelizeTypescript.transaction(async t => {
cc918ac3
C
192 await videoChannelInstance.destroy({ transaction: t })
193
80e36cd9
AB
194 auditLogger.delete(
195 res.locals.oauth.token.User.Account.Actor.getIdentifier(),
196 new VideoChannelAuditView(videoChannelInstance.toFormattedJSON())
197 )
cc918ac3
C
198 logger.info('Video channel with name %s and uuid %s deleted.', videoChannelInstance.name, videoChannelInstance.Actor.uuid)
199 })
200
90d4bb81 201 return res.type('json').status(204).end()
cc918ac3
C
202}
203
204async function getVideoChannel (req: express.Request, res: express.Response, next: express.NextFunction) {
205 const videoChannelWithVideos = await VideoChannelModel.loadAndPopulateAccountAndVideos(res.locals.videoChannel.id)
206
207 return res.json(videoChannelWithVideos.toFormattedJSON())
208}
209
210async function listVideoChannelVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
211 const videoChannelInstance: VideoChannelModel = res.locals.videoChannel
212
213 const resultList = await VideoModel.listForApi({
214 start: req.query.start,
215 count: req.query.count,
216 sort: req.query.sort,
8a19bee1 217 includeLocalVideos: true,
d525fc39
C
218 categoryOneOf: req.query.categoryOneOf,
219 licenceOneOf: req.query.licenceOneOf,
220 languageOneOf: req.query.languageOneOf,
221 tagsOneOf: req.query.tagsOneOf,
222 tagsAllOf: req.query.tagsAllOf,
223 nsfw: buildNSFWFilter(res, req.query.nsfw),
cc918ac3
C
224 withFiles: false,
225 videoChannelId: videoChannelInstance.id
226 })
227
228 return res.json(getFormattedObjects(resultList.data, resultList.total))
229}