]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1import * as express from 'express'
2import { getFormattedObjects } from '../../helpers/utils'
3import {
4 asyncMiddleware,
5 asyncRetryTransactionMiddleware,
6 authenticate,
7 commonVideosFiltersValidator,
8 optionalAuthenticate,
9 paginationValidator,
10 setDefaultPagination,
11 setDefaultSort,
12 videoChannelsAddValidator,
13 videoChannelsRemoveValidator,
14 videoChannelsSortValidator,
15 videoChannelsUpdateValidator,
16 videoPlaylistsSortValidator
17} from '../../middlewares'
18import { VideoChannelModel } from '../../models/video/video-channel'
19import { videoChannelsNameWithHostValidator, videosSortValidator, videoChannelsOwnSearchValidator } from '../../middlewares/validators'
20import { sendUpdateActor } from '../../lib/activitypub/send'
21import { VideoChannelCreate, VideoChannelUpdate } from '../../../shared'
22import { createLocalVideoChannel, federateAllVideosOfChannel } from '../../lib/video-channel'
23import { buildNSFWFilter, createReqFiles, getCountVideos, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils'
24import { setAsyncActorKeys } from '../../lib/activitypub/actor'
25import { AccountModel } from '../../models/account/account'
26import { MIMETYPES } from '../../initializers/constants'
27import { logger } from '../../helpers/logger'
28import { VideoModel } from '../../models/video/video'
29import { updateAvatarValidator } from '../../middlewares/validators/avatar'
30import { updateActorAvatarFile } from '../../lib/avatar'
31import { auditLoggerFactory, getAuditIdFromRes, VideoChannelAuditView } from '../../helpers/audit-logger'
32import { resetSequelizeInstance } from '../../helpers/database-utils'
33import { JobQueue } from '../../lib/job-queue'
34import { VideoPlaylistModel } from '../../models/video/video-playlist'
35import { commonVideoPlaylistFiltersValidator } from '../../middlewares/validators/videos/video-playlists'
36import { CONFIG } from '../../initializers/config'
37import { sequelizeTypescript } from '../../initializers/database'
38import { MChannelAccountDefault } from '@server/types/models'
39import { getServerActor } from '@server/models/application/application'
40
41const auditLogger = auditLoggerFactory('channels')
42const reqAvatarFile = createReqFiles([ 'avatarfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT, { avatarfile: CONFIG.STORAGE.TMP_DIR })
43
44const videoChannelRouter = express.Router()
45
46videoChannelRouter.get('/',
47 paginationValidator,
48 videoChannelsSortValidator,
49 setDefaultSort,
50 setDefaultPagination,
51 videoChannelsOwnSearchValidator,
52 asyncMiddleware(listVideoChannels)
53)
54
55videoChannelRouter.post('/',
56 authenticate,
57 asyncMiddleware(videoChannelsAddValidator),
58 asyncRetryTransactionMiddleware(addVideoChannel)
59)
60
61videoChannelRouter.post('/:nameWithHost/avatar/pick',
62 authenticate,
63 reqAvatarFile,
64 // Check the rights
65 asyncMiddleware(videoChannelsUpdateValidator),
66 updateAvatarValidator,
67 asyncMiddleware(updateVideoChannelAvatar)
68)
69
70videoChannelRouter.put('/:nameWithHost',
71 authenticate,
72 asyncMiddleware(videoChannelsUpdateValidator),
73 asyncRetryTransactionMiddleware(updateVideoChannel)
74)
75
76videoChannelRouter.delete('/:nameWithHost',
77 authenticate,
78 asyncMiddleware(videoChannelsRemoveValidator),
79 asyncRetryTransactionMiddleware(removeVideoChannel)
80)
81
82videoChannelRouter.get('/:nameWithHost',
83 asyncMiddleware(videoChannelsNameWithHostValidator),
84 asyncMiddleware(getVideoChannel)
85)
86
87videoChannelRouter.get('/:nameWithHost/video-playlists',
88 asyncMiddleware(videoChannelsNameWithHostValidator),
89 paginationValidator,
90 videoPlaylistsSortValidator,
91 setDefaultSort,
92 setDefaultPagination,
93 commonVideoPlaylistFiltersValidator,
94 asyncMiddleware(listVideoChannelPlaylists)
95)
96
97videoChannelRouter.get('/:nameWithHost/videos',
98 asyncMiddleware(videoChannelsNameWithHostValidator),
99 paginationValidator,
100 videosSortValidator,
101 setDefaultSort,
102 setDefaultPagination,
103 optionalAuthenticate,
104 commonVideosFiltersValidator,
105 asyncMiddleware(listVideoChannelVideos)
106)
107
108// ---------------------------------------------------------------------------
109
110export {
111 videoChannelRouter
112}
113
114// ---------------------------------------------------------------------------
115
116async function listVideoChannels (req: express.Request, res: express.Response) {
117 const serverActor = await getServerActor()
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 })
125
126 return res.json(getFormattedObjects(resultList.data, resultList.total))
127}
128
129async function updateVideoChannelAvatar (req: express.Request, res: express.Response) {
130 const avatarPhysicalFile = req.files['avatarfile'][0]
131 const videoChannel = res.locals.videoChannel
132 const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannel.toFormattedJSON())
133
134 const avatar = await updateActorAvatarFile(avatarPhysicalFile, videoChannel)
135
136 auditLogger.update(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannel.toFormattedJSON()), oldVideoChannelAuditKeys)
137
138 return res
139 .json({
140 avatar: avatar.toFormattedJSON()
141 })
142 .end()
143}
144
145async function addVideoChannel (req: express.Request, res: express.Response) {
146 const videoChannelInfo: VideoChannelCreate = req.body
147
148 const videoChannelCreated = await sequelizeTypescript.transaction(async t => {
149 const account = await AccountModel.load(res.locals.oauth.token.User.Account.id, t)
150
151 return createLocalVideoChannel(videoChannelInfo, account, t)
152 })
153
154 setAsyncActorKeys(videoChannelCreated.Actor)
155 .catch(err => logger.error('Cannot set async actor keys for account %s.', videoChannelCreated.Actor.url, { err }))
156
157 auditLogger.create(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannelCreated.toFormattedJSON()))
158 logger.info('Video channel %s created.', videoChannelCreated.Actor.url)
159
160 return res.json({
161 videoChannel: {
162 id: videoChannelCreated.id
163 }
164 }).end()
165}
166
167async function updateVideoChannel (req: express.Request, res: express.Response) {
168 const videoChannelInstance = res.locals.videoChannel
169 const videoChannelFieldsSave = videoChannelInstance.toJSON()
170 const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannelInstance.toFormattedJSON())
171 const videoChannelInfoToUpdate = req.body as VideoChannelUpdate
172 let doBulkVideoUpdate = false
173
174 try {
175 await sequelizeTypescript.transaction(async t => {
176 const sequelizeOptions = {
177 transaction: t
178 }
179
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 }
192
193 const videoChannelInstanceUpdated = await videoChannelInstance.save(sequelizeOptions) as MChannelAccountDefault
194 await sendUpdateActor(videoChannelInstanceUpdated, t)
195
196 auditLogger.update(
197 getAuditIdFromRes(res),
198 new VideoChannelAuditView(videoChannelInstanceUpdated.toFormattedJSON()),
199 oldVideoChannelAuditKeys
200 )
201
202 logger.info('Video channel %s updated.', videoChannelInstance.Actor.url)
203 })
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 }
214
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 }
221}
222
223async function removeVideoChannel (req: express.Request, res: express.Response) {
224 const videoChannelInstance = res.locals.videoChannel
225
226 await sequelizeTypescript.transaction(async t => {
227 await VideoPlaylistModel.resetPlaylistsOfChannel(videoChannelInstance.id, t)
228
229 await videoChannelInstance.destroy({ transaction: t })
230
231 auditLogger.delete(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannelInstance.toFormattedJSON()))
232 logger.info('Video channel %s deleted.', videoChannelInstance.Actor.url)
233 })
234
235 return res.type('json').status(204).end()
236}
237
238async function getVideoChannel (req: express.Request, res: express.Response) {
239 const videoChannelWithVideos = await VideoChannelModel.loadAndPopulateAccountAndVideos(res.locals.videoChannel.id)
240
241 if (videoChannelWithVideos.isOutdated()) {
242 JobQueue.Instance.createJob({ type: 'activitypub-refresher', payload: { type: 'actor', url: videoChannelWithVideos.Actor.url } })
243 }
244
245 return res.json(videoChannelWithVideos.toFormattedJSON())
246}
247
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,
256 videoChannelId: res.locals.videoChannel.id,
257 type: req.query.playlistType
258 })
259
260 return res.json(getFormattedObjects(resultList.data, resultList.total))
261}
262
263async function listVideoChannelVideos (req: express.Request, res: express.Response) {
264 const videoChannelInstance = res.locals.videoChannel
265 const followerActorId = isUserAbleToSearchRemoteURI(res) ? null : undefined
266 const countVideos = getCountVideos(req)
267
268 const resultList = await VideoModel.listForApi({
269 followerActorId,
270 start: req.query.start,
271 count: req.query.count,
272 sort: req.query.sort,
273 includeLocalVideos: true,
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,
279 filter: req.query.filter,
280 nsfw: buildNSFWFilter(res, req.query.nsfw),
281 withFiles: false,
282 videoChannelId: videoChannelInstance.id,
283 user: res.locals.oauth ? res.locals.oauth.token.User : undefined,
284 countVideos
285 })
286
287 return res.json(getFormattedObjects(resultList.data, resultList.total))
288}