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