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