]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/controllers/api/video-channel.ts
Add server API actors route
[github/Chocobozzz/PeerTube.git] / server / controllers / api / video-channel.ts
... / ...
CommitLineData
1import * as express from 'express'
2import { Hooks } from '@server/lib/plugins/hooks'
3import { getServerActor } from '@server/models/application/application'
4import { MChannelBannerAccountDefault } from '@server/types/models'
5import { ActorImageType, VideoChannelCreate, VideoChannelUpdate, VideosCommonQuery } from '../../../shared'
6import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
7import { auditLoggerFactory, getAuditIdFromRes, VideoChannelAuditView } from '../../helpers/audit-logger'
8import { resetSequelizeInstance } from '../../helpers/database-utils'
9import { buildNSFWFilter, createReqFiles, getCountVideos, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils'
10import { logger } from '../../helpers/logger'
11import { getFormattedObjects } from '../../helpers/utils'
12import { CONFIG } from '../../initializers/config'
13import { MIMETYPES } from '../../initializers/constants'
14import { sequelizeTypescript } from '../../initializers/database'
15import { sendUpdateActor } from '../../lib/activitypub/send'
16import { deleteLocalActorImageFile, updateLocalActorImageFile } from '../../lib/actor-image'
17import { JobQueue } from '../../lib/job-queue'
18import { createLocalVideoChannel, federateAllVideosOfChannel } from '../../lib/video-channel'
19import {
20 asyncMiddleware,
21 asyncRetryTransactionMiddleware,
22 authenticate,
23 commonVideosFiltersValidator,
24 optionalAuthenticate,
25 paginationValidator,
26 setDefaultPagination,
27 setDefaultSort,
28 setDefaultVideosSort,
29 videoChannelsAddValidator,
30 videoChannelsRemoveValidator,
31 videoChannelsSortValidator,
32 videoChannelsUpdateValidator,
33 videoPlaylistsSortValidator
34} from '../../middlewares'
35import { videoChannelsNameWithHostValidator, videoChannelsOwnSearchValidator, videosSortValidator } from '../../middlewares/validators'
36import { updateAvatarValidator, updateBannerValidator } from '../../middlewares/validators/actor-image'
37import { commonVideoPlaylistFiltersValidator } from '../../middlewares/validators/videos/video-playlists'
38import { AccountModel } from '../../models/account/account'
39import { VideoModel } from '../../models/video/video'
40import { VideoChannelModel } from '../../models/video/video-channel'
41import { VideoPlaylistModel } from '../../models/video/video-playlist'
42
43const auditLogger = auditLoggerFactory('channels')
44const reqAvatarFile = createReqFiles([ 'avatarfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT, { avatarfile: CONFIG.STORAGE.TMP_DIR })
45const reqBannerFile = createReqFiles([ 'bannerfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT, { bannerfile: CONFIG.STORAGE.TMP_DIR })
46
47const videoChannelRouter = express.Router()
48
49videoChannelRouter.get('/',
50 paginationValidator,
51 videoChannelsSortValidator,
52 setDefaultSort,
53 setDefaultPagination,
54 videoChannelsOwnSearchValidator,
55 asyncMiddleware(listVideoChannels)
56)
57
58videoChannelRouter.post('/',
59 authenticate,
60 asyncMiddleware(videoChannelsAddValidator),
61 asyncRetryTransactionMiddleware(addVideoChannel)
62)
63
64videoChannelRouter.post('/:nameWithHost/avatar/pick',
65 authenticate,
66 reqAvatarFile,
67 // Check the rights
68 asyncMiddleware(videoChannelsUpdateValidator),
69 updateAvatarValidator,
70 asyncMiddleware(updateVideoChannelAvatar)
71)
72
73videoChannelRouter.post('/:nameWithHost/banner/pick',
74 authenticate,
75 reqBannerFile,
76 // Check the rights
77 asyncMiddleware(videoChannelsUpdateValidator),
78 updateBannerValidator,
79 asyncMiddleware(updateVideoChannelBanner)
80)
81
82videoChannelRouter.delete('/:nameWithHost/avatar',
83 authenticate,
84 // Check the rights
85 asyncMiddleware(videoChannelsUpdateValidator),
86 asyncMiddleware(deleteVideoChannelAvatar)
87)
88
89videoChannelRouter.delete('/:nameWithHost/banner',
90 authenticate,
91 // Check the rights
92 asyncMiddleware(videoChannelsUpdateValidator),
93 asyncMiddleware(deleteVideoChannelBanner)
94)
95
96videoChannelRouter.put('/:nameWithHost',
97 authenticate,
98 asyncMiddleware(videoChannelsUpdateValidator),
99 asyncRetryTransactionMiddleware(updateVideoChannel)
100)
101
102videoChannelRouter.delete('/:nameWithHost',
103 authenticate,
104 asyncMiddleware(videoChannelsRemoveValidator),
105 asyncRetryTransactionMiddleware(removeVideoChannel)
106)
107
108videoChannelRouter.get('/:nameWithHost',
109 asyncMiddleware(videoChannelsNameWithHostValidator),
110 asyncMiddleware(getVideoChannel)
111)
112
113videoChannelRouter.get('/:nameWithHost/video-playlists',
114 asyncMiddleware(videoChannelsNameWithHostValidator),
115 paginationValidator,
116 videoPlaylistsSortValidator,
117 setDefaultSort,
118 setDefaultPagination,
119 commonVideoPlaylistFiltersValidator,
120 asyncMiddleware(listVideoChannelPlaylists)
121)
122
123videoChannelRouter.get('/:nameWithHost/videos',
124 asyncMiddleware(videoChannelsNameWithHostValidator),
125 paginationValidator,
126 videosSortValidator,
127 setDefaultVideosSort,
128 setDefaultPagination,
129 optionalAuthenticate,
130 commonVideosFiltersValidator,
131 asyncMiddleware(listVideoChannelVideos)
132)
133
134// ---------------------------------------------------------------------------
135
136export {
137 videoChannelRouter
138}
139
140// ---------------------------------------------------------------------------
141
142async function listVideoChannels (req: express.Request, res: express.Response) {
143 const serverActor = await getServerActor()
144 const resultList = await VideoChannelModel.listForApi({
145 actorId: serverActor.id,
146 start: req.query.start,
147 count: req.query.count,
148 sort: req.query.sort
149 })
150
151 return res.json(getFormattedObjects(resultList.data, resultList.total))
152}
153
154async function updateVideoChannelBanner (req: express.Request, res: express.Response) {
155 const bannerPhysicalFile = req.files['bannerfile'][0]
156 const videoChannel = res.locals.videoChannel
157 const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannel.toFormattedJSON())
158
159 const banner = await updateLocalActorImageFile(videoChannel, bannerPhysicalFile, ActorImageType.BANNER)
160
161 auditLogger.update(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannel.toFormattedJSON()), oldVideoChannelAuditKeys)
162
163 return res.json({ banner: banner.toFormattedJSON() })
164}
165async function updateVideoChannelAvatar (req: express.Request, res: express.Response) {
166 const avatarPhysicalFile = req.files['avatarfile'][0]
167 const videoChannel = res.locals.videoChannel
168 const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannel.toFormattedJSON())
169
170 const avatar = await updateLocalActorImageFile(videoChannel, avatarPhysicalFile, ActorImageType.AVATAR)
171
172 auditLogger.update(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannel.toFormattedJSON()), oldVideoChannelAuditKeys)
173
174 return res.json({ avatar: avatar.toFormattedJSON() })
175}
176
177async function deleteVideoChannelAvatar (req: express.Request, res: express.Response) {
178 const videoChannel = res.locals.videoChannel
179
180 await deleteLocalActorImageFile(videoChannel, ActorImageType.AVATAR)
181
182 return res.sendStatus(HttpStatusCode.NO_CONTENT_204)
183}
184
185async function deleteVideoChannelBanner (req: express.Request, res: express.Response) {
186 const videoChannel = res.locals.videoChannel
187
188 await deleteLocalActorImageFile(videoChannel, ActorImageType.BANNER)
189
190 return res.sendStatus(HttpStatusCode.NO_CONTENT_204)
191}
192
193async function addVideoChannel (req: express.Request, res: express.Response) {
194 const videoChannelInfo: VideoChannelCreate = req.body
195
196 const videoChannelCreated = await sequelizeTypescript.transaction(async t => {
197 const account = await AccountModel.load(res.locals.oauth.token.User.Account.id, t)
198
199 return createLocalVideoChannel(videoChannelInfo, account, t)
200 })
201
202 const payload = { actorId: videoChannelCreated.actorId }
203 await JobQueue.Instance.createJobWithPromise({ type: 'actor-keys', payload })
204
205 auditLogger.create(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannelCreated.toFormattedJSON()))
206 logger.info('Video channel %s created.', videoChannelCreated.Actor.url)
207
208 return res.json({
209 videoChannel: {
210 id: videoChannelCreated.id
211 }
212 })
213}
214
215async function updateVideoChannel (req: express.Request, res: express.Response) {
216 const videoChannelInstance = res.locals.videoChannel
217 const videoChannelFieldsSave = videoChannelInstance.toJSON()
218 const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannelInstance.toFormattedJSON())
219 const videoChannelInfoToUpdate = req.body as VideoChannelUpdate
220 let doBulkVideoUpdate = false
221
222 try {
223 await sequelizeTypescript.transaction(async t => {
224 const sequelizeOptions = {
225 transaction: t
226 }
227
228 if (videoChannelInfoToUpdate.displayName !== undefined) videoChannelInstance.name = videoChannelInfoToUpdate.displayName
229 if (videoChannelInfoToUpdate.description !== undefined) videoChannelInstance.description = videoChannelInfoToUpdate.description
230
231 if (videoChannelInfoToUpdate.support !== undefined) {
232 const oldSupportField = videoChannelInstance.support
233 videoChannelInstance.support = videoChannelInfoToUpdate.support
234
235 if (videoChannelInfoToUpdate.bulkVideosSupportUpdate === true && oldSupportField !== videoChannelInfoToUpdate.support) {
236 doBulkVideoUpdate = true
237 await VideoModel.bulkUpdateSupportField(videoChannelInstance, t)
238 }
239 }
240
241 const videoChannelInstanceUpdated = await videoChannelInstance.save(sequelizeOptions) as MChannelBannerAccountDefault
242 await sendUpdateActor(videoChannelInstanceUpdated, t)
243
244 auditLogger.update(
245 getAuditIdFromRes(res),
246 new VideoChannelAuditView(videoChannelInstanceUpdated.toFormattedJSON()),
247 oldVideoChannelAuditKeys
248 )
249
250 logger.info('Video channel %s updated.', videoChannelInstance.Actor.url)
251 })
252 } catch (err) {
253 logger.debug('Cannot update the video channel.', { err })
254
255 // Force fields we want to update
256 // If the transaction is retried, sequelize will think the object has not changed
257 // So it will skip the SQL request, even if the last one was ROLLBACKed!
258 resetSequelizeInstance(videoChannelInstance, videoChannelFieldsSave)
259
260 throw err
261 }
262
263 res.type('json').status(HttpStatusCode.NO_CONTENT_204).end()
264
265 // Don't process in a transaction, and after the response because it could be long
266 if (doBulkVideoUpdate) {
267 await federateAllVideosOfChannel(videoChannelInstance)
268 }
269}
270
271async function removeVideoChannel (req: express.Request, res: express.Response) {
272 const videoChannelInstance = res.locals.videoChannel
273
274 await sequelizeTypescript.transaction(async t => {
275 await VideoPlaylistModel.resetPlaylistsOfChannel(videoChannelInstance.id, t)
276
277 await videoChannelInstance.destroy({ transaction: t })
278
279 auditLogger.delete(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannelInstance.toFormattedJSON()))
280 logger.info('Video channel %s deleted.', videoChannelInstance.Actor.url)
281 })
282
283 return res.type('json').status(HttpStatusCode.NO_CONTENT_204).end()
284}
285
286async function getVideoChannel (req: express.Request, res: express.Response) {
287 const videoChannel = res.locals.videoChannel
288
289 if (videoChannel.isOutdated()) {
290 JobQueue.Instance.createJob({ type: 'activitypub-refresher', payload: { type: 'actor', url: videoChannel.Actor.url } })
291 }
292
293 return res.json(videoChannel.toFormattedJSON())
294}
295
296async function listVideoChannelPlaylists (req: express.Request, res: express.Response) {
297 const serverActor = await getServerActor()
298
299 const resultList = await VideoPlaylistModel.listForApi({
300 followerActorId: serverActor.id,
301 start: req.query.start,
302 count: req.query.count,
303 sort: req.query.sort,
304 videoChannelId: res.locals.videoChannel.id,
305 type: req.query.playlistType
306 })
307
308 return res.json(getFormattedObjects(resultList.data, resultList.total))
309}
310
311async function listVideoChannelVideos (req: express.Request, res: express.Response) {
312 const videoChannelInstance = res.locals.videoChannel
313 const followerActorId = isUserAbleToSearchRemoteURI(res) ? null : undefined
314 const countVideos = getCountVideos(req)
315 const query = req.query as VideosCommonQuery
316
317 const apiOptions = await Hooks.wrapObject({
318 followerActorId,
319 start: query.start,
320 count: query.count,
321 sort: query.sort,
322 includeLocalVideos: true,
323 categoryOneOf: query.categoryOneOf,
324 licenceOneOf: query.licenceOneOf,
325 languageOneOf: query.languageOneOf,
326 tagsOneOf: query.tagsOneOf,
327 tagsAllOf: query.tagsAllOf,
328 filter: query.filter,
329 nsfw: buildNSFWFilter(res, query.nsfw),
330 withFiles: false,
331 videoChannelId: videoChannelInstance.id,
332 user: res.locals.oauth ? res.locals.oauth.token.User : undefined,
333 countVideos
334 }, 'filter:api.video-channels.videos.list.params')
335
336 const resultList = await Hooks.wrapPromiseFun(
337 VideoModel.listForApi,
338 apiOptions,
339 'filter:api.video-channels.videos.list.result'
340 )
341
342 return res.json(getFormattedObjects(resultList.data, resultList.total))
343}