diff options
Diffstat (limited to 'server/controllers')
-rw-r--r-- | server/controllers/api/video-playlist.ts | 47 | ||||
-rw-r--r-- | server/controllers/api/videos/import.ts | 70 | ||||
-rw-r--r-- | server/controllers/api/videos/index.ts | 62 | ||||
-rw-r--r-- | server/controllers/api/videos/ownership.ts | 1 | ||||
-rw-r--r-- | server/controllers/static.ts | 2 |
5 files changed, 105 insertions, 77 deletions
diff --git a/server/controllers/api/video-playlist.ts b/server/controllers/api/video-playlist.ts index 71c244a60..99325aa9d 100644 --- a/server/controllers/api/video-playlist.ts +++ b/server/controllers/api/video-playlist.ts | |||
@@ -12,7 +12,7 @@ import { | |||
12 | } from '../../middlewares' | 12 | } from '../../middlewares' |
13 | import { videoPlaylistsSortValidator } from '../../middlewares/validators' | 13 | import { videoPlaylistsSortValidator } from '../../middlewares/validators' |
14 | import { buildNSFWFilter, createReqFiles, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils' | 14 | import { buildNSFWFilter, createReqFiles, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils' |
15 | import { MIMETYPES, THUMBNAILS_SIZE, VIDEO_PLAYLIST_PRIVACIES } from '../../initializers/constants' | 15 | import { MIMETYPES, VIDEO_PLAYLIST_PRIVACIES } from '../../initializers/constants' |
16 | import { logger } from '../../helpers/logger' | 16 | import { logger } from '../../helpers/logger' |
17 | import { resetSequelizeInstance } from '../../helpers/database-utils' | 17 | import { resetSequelizeInstance } from '../../helpers/database-utils' |
18 | import { VideoPlaylistModel } from '../../models/video/video-playlist' | 18 | import { VideoPlaylistModel } from '../../models/video/video-playlist' |
@@ -28,7 +28,6 @@ import { | |||
28 | } from '../../middlewares/validators/videos/video-playlists' | 28 | } from '../../middlewares/validators/videos/video-playlists' |
29 | import { VideoPlaylistCreate } from '../../../shared/models/videos/playlist/video-playlist-create.model' | 29 | import { VideoPlaylistCreate } from '../../../shared/models/videos/playlist/video-playlist-create.model' |
30 | import { VideoPlaylistPrivacy } from '../../../shared/models/videos/playlist/video-playlist-privacy.model' | 30 | import { VideoPlaylistPrivacy } from '../../../shared/models/videos/playlist/video-playlist-privacy.model' |
31 | import { processImage } from '../../helpers/image-utils' | ||
32 | import { join } from 'path' | 31 | import { join } from 'path' |
33 | import { sendCreateVideoPlaylist, sendDeleteVideoPlaylist, sendUpdateVideoPlaylist } from '../../lib/activitypub/send' | 32 | import { sendCreateVideoPlaylist, sendDeleteVideoPlaylist, sendUpdateVideoPlaylist } from '../../lib/activitypub/send' |
34 | import { getVideoPlaylistActivityPubUrl, getVideoPlaylistElementActivityPubUrl } from '../../lib/activitypub/url' | 33 | import { getVideoPlaylistActivityPubUrl, getVideoPlaylistElementActivityPubUrl } from '../../lib/activitypub/url' |
@@ -37,12 +36,12 @@ import { VideoModel } from '../../models/video/video' | |||
37 | import { VideoPlaylistElementModel } from '../../models/video/video-playlist-element' | 36 | import { VideoPlaylistElementModel } from '../../models/video/video-playlist-element' |
38 | import { VideoPlaylistElementCreate } from '../../../shared/models/videos/playlist/video-playlist-element-create.model' | 37 | import { VideoPlaylistElementCreate } from '../../../shared/models/videos/playlist/video-playlist-element-create.model' |
39 | import { VideoPlaylistElementUpdate } from '../../../shared/models/videos/playlist/video-playlist-element-update.model' | 38 | import { VideoPlaylistElementUpdate } from '../../../shared/models/videos/playlist/video-playlist-element-update.model' |
40 | import { copy, pathExists } from 'fs-extra' | ||
41 | import { AccountModel } from '../../models/account/account' | 39 | import { AccountModel } from '../../models/account/account' |
42 | import { VideoPlaylistReorder } from '../../../shared/models/videos/playlist/video-playlist-reorder.model' | 40 | import { VideoPlaylistReorder } from '../../../shared/models/videos/playlist/video-playlist-reorder.model' |
43 | import { JobQueue } from '../../lib/job-queue' | 41 | import { JobQueue } from '../../lib/job-queue' |
44 | import { CONFIG } from '../../initializers/config' | 42 | import { CONFIG } from '../../initializers/config' |
45 | import { sequelizeTypescript } from '../../initializers/database' | 43 | import { sequelizeTypescript } from '../../initializers/database' |
44 | import { createPlaylistThumbnailFromExisting } from '../../lib/thumbnail' | ||
46 | 45 | ||
47 | const reqThumbnailFile = createReqFiles([ 'thumbnailfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT, { thumbnailfile: CONFIG.STORAGE.TMP_DIR }) | 46 | const reqThumbnailFile = createReqFiles([ 'thumbnailfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT, { thumbnailfile: CONFIG.STORAGE.TMP_DIR }) |
48 | 47 | ||
@@ -174,14 +173,18 @@ async function addVideoPlaylist (req: express.Request, res: express.Response) { | |||
174 | } | 173 | } |
175 | 174 | ||
176 | const thumbnailField = req.files['thumbnailfile'] | 175 | const thumbnailField = req.files['thumbnailfile'] |
177 | if (thumbnailField) { | 176 | const thumbnailModel = thumbnailField |
178 | const thumbnailPhysicalFile = thumbnailField[ 0 ] | 177 | ? await createPlaylistThumbnailFromExisting(thumbnailField[0].path, videoPlaylist) |
179 | await processImage(thumbnailPhysicalFile, join(CONFIG.STORAGE.THUMBNAILS_DIR, videoPlaylist.getThumbnailName()), THUMBNAILS_SIZE) | 178 | : undefined |
180 | } | ||
181 | 179 | ||
182 | const videoPlaylistCreated: VideoPlaylistModel = await sequelizeTypescript.transaction(async t => { | 180 | const videoPlaylistCreated: VideoPlaylistModel = await sequelizeTypescript.transaction(async t => { |
183 | const videoPlaylistCreated = await videoPlaylist.save({ transaction: t }) | 181 | const videoPlaylistCreated = await videoPlaylist.save({ transaction: t }) |
184 | 182 | ||
183 | if (thumbnailModel) { | ||
184 | thumbnailModel.videoPlaylistId = videoPlaylistCreated.id | ||
185 | videoPlaylistCreated.setThumbnail(await thumbnailModel.save({ transaction: t })) | ||
186 | } | ||
187 | |||
185 | // We need more attributes for the federation | 188 | // We need more attributes for the federation |
186 | videoPlaylistCreated.OwnerAccount = await AccountModel.load(user.Account.id, t) | 189 | videoPlaylistCreated.OwnerAccount = await AccountModel.load(user.Account.id, t) |
187 | await sendCreateVideoPlaylist(videoPlaylistCreated, t) | 190 | await sendCreateVideoPlaylist(videoPlaylistCreated, t) |
@@ -206,14 +209,9 @@ async function updateVideoPlaylist (req: express.Request, res: express.Response) | |||
206 | const wasPrivatePlaylist = videoPlaylistInstance.privacy === VideoPlaylistPrivacy.PRIVATE | 209 | const wasPrivatePlaylist = videoPlaylistInstance.privacy === VideoPlaylistPrivacy.PRIVATE |
207 | 210 | ||
208 | const thumbnailField = req.files['thumbnailfile'] | 211 | const thumbnailField = req.files['thumbnailfile'] |
209 | if (thumbnailField) { | 212 | const thumbnailModel = thumbnailField |
210 | const thumbnailPhysicalFile = thumbnailField[ 0 ] | 213 | ? await createPlaylistThumbnailFromExisting(thumbnailField[0].path, videoPlaylistInstance) |
211 | await processImage( | 214 | : undefined |
212 | thumbnailPhysicalFile, | ||
213 | join(CONFIG.STORAGE.THUMBNAILS_DIR, videoPlaylistInstance.getThumbnailName()), | ||
214 | THUMBNAILS_SIZE | ||
215 | ) | ||
216 | } | ||
217 | 215 | ||
218 | try { | 216 | try { |
219 | await sequelizeTypescript.transaction(async t => { | 217 | await sequelizeTypescript.transaction(async t => { |
@@ -241,6 +239,11 @@ async function updateVideoPlaylist (req: express.Request, res: express.Response) | |||
241 | 239 | ||
242 | const playlistUpdated = await videoPlaylistInstance.save(sequelizeOptions) | 240 | const playlistUpdated = await videoPlaylistInstance.save(sequelizeOptions) |
243 | 241 | ||
242 | if (thumbnailModel) { | ||
243 | thumbnailModel.videoPlaylistId = playlistUpdated.id | ||
244 | playlistUpdated.setThumbnail(await thumbnailModel.save({ transaction: t })) | ||
245 | } | ||
246 | |||
244 | const isNewPlaylist = wasPrivatePlaylist && playlistUpdated.privacy !== VideoPlaylistPrivacy.PRIVATE | 247 | const isNewPlaylist = wasPrivatePlaylist && playlistUpdated.privacy !== VideoPlaylistPrivacy.PRIVATE |
245 | 248 | ||
246 | if (isNewPlaylist) { | 249 | if (isNewPlaylist) { |
@@ -307,15 +310,15 @@ async function addVideoInPlaylist (req: express.Request, res: express.Response) | |||
307 | }) | 310 | }) |
308 | 311 | ||
309 | // If the user did not set a thumbnail, automatically take the video thumbnail | 312 | // If the user did not set a thumbnail, automatically take the video thumbnail |
310 | if (playlistElement.position === 1) { | 313 | if (playlistElement.position === 1 && videoPlaylist.hasThumbnail() === false) { |
311 | const playlistThumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, videoPlaylist.getThumbnailName()) | 314 | logger.info('Generating default thumbnail to playlist %s.', videoPlaylist.url) |
312 | 315 | ||
313 | if (await pathExists(playlistThumbnailPath) === false) { | 316 | const inputPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, video.getThumbnail().filename) |
314 | logger.info('Generating default thumbnail to playlist %s.', videoPlaylist.url) | 317 | const thumbnailModel = await createPlaylistThumbnailFromExisting(inputPath, videoPlaylist, true) |
315 | 318 | ||
316 | const videoThumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, video.getThumbnailName()) | 319 | thumbnailModel.videoPlaylistId = videoPlaylist.id |
317 | await copy(videoThumbnailPath, playlistThumbnailPath) | 320 | |
318 | } | 321 | await thumbnailModel.save() |
319 | } | 322 | } |
320 | 323 | ||
321 | logger.info('Video added in playlist %s at position %d.', videoPlaylist.uuid, playlistElement.position) | 324 | logger.info('Video added in playlist %s at position %d.', videoPlaylist.uuid, playlistElement.position) |
diff --git a/server/controllers/api/videos/import.ts b/server/controllers/api/videos/import.ts index a72b8c72e..f9a24a0c2 100644 --- a/server/controllers/api/videos/import.ts +++ b/server/controllers/api/videos/import.ts | |||
@@ -3,7 +3,7 @@ import * as magnetUtil from 'magnet-uri' | |||
3 | import 'multer' | 3 | import 'multer' |
4 | import { auditLoggerFactory, getAuditIdFromRes, VideoImportAuditView } from '../../../helpers/audit-logger' | 4 | import { auditLoggerFactory, getAuditIdFromRes, VideoImportAuditView } from '../../../helpers/audit-logger' |
5 | import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate, videoImportAddValidator } from '../../../middlewares' | 5 | import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate, videoImportAddValidator } from '../../../middlewares' |
6 | import { MIMETYPES, PREVIEWS_SIZE, THUMBNAILS_SIZE } from '../../../initializers/constants' | 6 | import { MIMETYPES } from '../../../initializers/constants' |
7 | import { getYoutubeDLInfo, YoutubeDLInfo } from '../../../helpers/youtube-dl' | 7 | import { getYoutubeDLInfo, YoutubeDLInfo } from '../../../helpers/youtube-dl' |
8 | import { createReqFiles } from '../../../helpers/express-utils' | 8 | import { createReqFiles } from '../../../helpers/express-utils' |
9 | import { logger } from '../../../helpers/logger' | 9 | import { logger } from '../../../helpers/logger' |
@@ -13,12 +13,10 @@ import { getVideoActivityPubUrl } from '../../../lib/activitypub' | |||
13 | import { TagModel } from '../../../models/video/tag' | 13 | import { TagModel } from '../../../models/video/tag' |
14 | import { VideoImportModel } from '../../../models/video/video-import' | 14 | import { VideoImportModel } from '../../../models/video/video-import' |
15 | import { JobQueue } from '../../../lib/job-queue/job-queue' | 15 | import { JobQueue } from '../../../lib/job-queue/job-queue' |
16 | import { processImage } from '../../../helpers/image-utils' | ||
17 | import { join } from 'path' | 16 | import { join } from 'path' |
18 | import { isArray } from '../../../helpers/custom-validators/misc' | 17 | import { isArray } from '../../../helpers/custom-validators/misc' |
19 | import { FilteredModelAttributes } from 'sequelize-typescript/lib/models/Model' | 18 | import { FilteredModelAttributes } from 'sequelize-typescript/lib/models/Model' |
20 | import { VideoChannelModel } from '../../../models/video/video-channel' | 19 | import { VideoChannelModel } from '../../../models/video/video-channel' |
21 | import { UserModel } from '../../../models/account/user' | ||
22 | import * as Bluebird from 'bluebird' | 20 | import * as Bluebird from 'bluebird' |
23 | import * as parseTorrent from 'parse-torrent' | 21 | import * as parseTorrent from 'parse-torrent' |
24 | import { getSecureTorrentName } from '../../../helpers/utils' | 22 | import { getSecureTorrentName } from '../../../helpers/utils' |
@@ -26,6 +24,9 @@ import { move, readFile } from 'fs-extra' | |||
26 | import { autoBlacklistVideoIfNeeded } from '../../../lib/video-blacklist' | 24 | import { autoBlacklistVideoIfNeeded } from '../../../lib/video-blacklist' |
27 | import { CONFIG } from '../../../initializers/config' | 25 | import { CONFIG } from '../../../initializers/config' |
28 | import { sequelizeTypescript } from '../../../initializers/database' | 26 | import { sequelizeTypescript } from '../../../initializers/database' |
27 | import { createVideoThumbnailFromExisting } from '../../../lib/thumbnail' | ||
28 | import { ThumbnailType } from '../../../../shared/models/videos/thumbnail.type' | ||
29 | import { ThumbnailModel } from '../../../models/video/thumbnail' | ||
29 | 30 | ||
30 | const auditLogger = auditLoggerFactory('video-imports') | 31 | const auditLogger = auditLoggerFactory('video-imports') |
31 | const videoImportsRouter = express.Router() | 32 | const videoImportsRouter = express.Router() |
@@ -89,10 +90,10 @@ async function addTorrentImport (req: express.Request, res: express.Response, to | |||
89 | videoName = isArray(parsed.name) ? parsed.name[ 0 ] : parsed.name as string | 90 | videoName = isArray(parsed.name) ? parsed.name[ 0 ] : parsed.name as string |
90 | } | 91 | } |
91 | 92 | ||
92 | const video = buildVideo(res.locals.videoChannel.id, body, { name: videoName }, user) | 93 | const video = buildVideo(res.locals.videoChannel.id, body, { name: videoName }) |
93 | 94 | ||
94 | await processThumbnail(req, video) | 95 | const thumbnailModel = await processThumbnail(req, video) |
95 | await processPreview(req, video) | 96 | const previewModel = await processPreview(req, video) |
96 | 97 | ||
97 | const tags = body.tags || undefined | 98 | const tags = body.tags || undefined |
98 | const videoImportAttributes = { | 99 | const videoImportAttributes = { |
@@ -101,7 +102,14 @@ async function addTorrentImport (req: express.Request, res: express.Response, to | |||
101 | state: VideoImportState.PENDING, | 102 | state: VideoImportState.PENDING, |
102 | userId: user.id | 103 | userId: user.id |
103 | } | 104 | } |
104 | const videoImport = await insertIntoDB(video, res.locals.videoChannel, tags, videoImportAttributes) | 105 | const videoImport = await insertIntoDB({ |
106 | video, | ||
107 | thumbnailModel, | ||
108 | previewModel, | ||
109 | videoChannel: res.locals.videoChannel, | ||
110 | tags, | ||
111 | videoImportAttributes | ||
112 | }) | ||
105 | 113 | ||
106 | // Create job to import the video | 114 | // Create job to import the video |
107 | const payload = { | 115 | const payload = { |
@@ -132,10 +140,10 @@ async function addYoutubeDLImport (req: express.Request, res: express.Response) | |||
132 | }).end() | 140 | }).end() |
133 | } | 141 | } |
134 | 142 | ||
135 | const video = buildVideo(res.locals.videoChannel.id, body, youtubeDLInfo, user) | 143 | const video = buildVideo(res.locals.videoChannel.id, body, youtubeDLInfo) |
136 | 144 | ||
137 | const downloadThumbnail = !await processThumbnail(req, video) | 145 | const thumbnailModel = await processThumbnail(req, video) |
138 | const downloadPreview = !await processPreview(req, video) | 146 | const previewModel = await processPreview(req, video) |
139 | 147 | ||
140 | const tags = body.tags || youtubeDLInfo.tags | 148 | const tags = body.tags || youtubeDLInfo.tags |
141 | const videoImportAttributes = { | 149 | const videoImportAttributes = { |
@@ -143,15 +151,22 @@ async function addYoutubeDLImport (req: express.Request, res: express.Response) | |||
143 | state: VideoImportState.PENDING, | 151 | state: VideoImportState.PENDING, |
144 | userId: user.id | 152 | userId: user.id |
145 | } | 153 | } |
146 | const videoImport = await insertIntoDB(video, res.locals.videoChannel, tags, videoImportAttributes) | 154 | const videoImport = await insertIntoDB({ |
155 | video: video, | ||
156 | thumbnailModel, | ||
157 | previewModel, | ||
158 | videoChannel: res.locals.videoChannel, | ||
159 | tags, | ||
160 | videoImportAttributes | ||
161 | }) | ||
147 | 162 | ||
148 | // Create job to import the video | 163 | // Create job to import the video |
149 | const payload = { | 164 | const payload = { |
150 | type: 'youtube-dl' as 'youtube-dl', | 165 | type: 'youtube-dl' as 'youtube-dl', |
151 | videoImportId: videoImport.id, | 166 | videoImportId: videoImport.id, |
152 | thumbnailUrl: youtubeDLInfo.thumbnailUrl, | 167 | thumbnailUrl: youtubeDLInfo.thumbnailUrl, |
153 | downloadThumbnail, | 168 | downloadThumbnail: !thumbnailModel, |
154 | downloadPreview | 169 | downloadPreview: !previewModel |
155 | } | 170 | } |
156 | await JobQueue.Instance.createJob({ type: 'video-import', payload }) | 171 | await JobQueue.Instance.createJob({ type: 'video-import', payload }) |
157 | 172 | ||
@@ -160,7 +175,7 @@ async function addYoutubeDLImport (req: express.Request, res: express.Response) | |||
160 | return res.json(videoImport.toFormattedJSON()).end() | 175 | return res.json(videoImport.toFormattedJSON()).end() |
161 | } | 176 | } |
162 | 177 | ||
163 | function buildVideo (channelId: number, body: VideoImportCreate, importData: YoutubeDLInfo, user: UserModel) { | 178 | function buildVideo (channelId: number, body: VideoImportCreate, importData: YoutubeDLInfo) { |
164 | const videoData = { | 179 | const videoData = { |
165 | name: body.name || importData.name || 'Unknown name', | 180 | name: body.name || importData.name || 'Unknown name', |
166 | remote: false, | 181 | remote: false, |
@@ -189,32 +204,34 @@ async function processThumbnail (req: express.Request, video: VideoModel) { | |||
189 | const thumbnailField = req.files ? req.files['thumbnailfile'] : undefined | 204 | const thumbnailField = req.files ? req.files['thumbnailfile'] : undefined |
190 | if (thumbnailField) { | 205 | if (thumbnailField) { |
191 | const thumbnailPhysicalFile = thumbnailField[ 0 ] | 206 | const thumbnailPhysicalFile = thumbnailField[ 0 ] |
192 | await processImage(thumbnailPhysicalFile, join(CONFIG.STORAGE.THUMBNAILS_DIR, video.getThumbnailName()), THUMBNAILS_SIZE) | ||
193 | 207 | ||
194 | return true | 208 | return createVideoThumbnailFromExisting(thumbnailPhysicalFile.path, video, ThumbnailType.THUMBNAIL) |
195 | } | 209 | } |
196 | 210 | ||
197 | return false | 211 | return undefined |
198 | } | 212 | } |
199 | 213 | ||
200 | async function processPreview (req: express.Request, video: VideoModel) { | 214 | async function processPreview (req: express.Request, video: VideoModel) { |
201 | const previewField = req.files ? req.files['previewfile'] : undefined | 215 | const previewField = req.files ? req.files['previewfile'] : undefined |
202 | if (previewField) { | 216 | if (previewField) { |
203 | const previewPhysicalFile = previewField[0] | 217 | const previewPhysicalFile = previewField[0] |
204 | await processImage(previewPhysicalFile, join(CONFIG.STORAGE.PREVIEWS_DIR, video.getPreviewName()), PREVIEWS_SIZE) | ||
205 | 218 | ||
206 | return true | 219 | return createVideoThumbnailFromExisting(previewPhysicalFile.path, video, ThumbnailType.PREVIEW) |
207 | } | 220 | } |
208 | 221 | ||
209 | return false | 222 | return undefined |
210 | } | 223 | } |
211 | 224 | ||
212 | function insertIntoDB ( | 225 | function insertIntoDB (parameters: { |
213 | video: VideoModel, | 226 | video: VideoModel, |
227 | thumbnailModel: ThumbnailModel, | ||
228 | previewModel: ThumbnailModel, | ||
214 | videoChannel: VideoChannelModel, | 229 | videoChannel: VideoChannelModel, |
215 | tags: string[], | 230 | tags: string[], |
216 | videoImportAttributes: FilteredModelAttributes<VideoImportModel> | 231 | videoImportAttributes: FilteredModelAttributes<VideoImportModel> |
217 | ): Bluebird<VideoImportModel> { | 232 | }): Bluebird<VideoImportModel> { |
233 | let { video, thumbnailModel, previewModel, videoChannel, tags, videoImportAttributes } = parameters | ||
234 | |||
218 | return sequelizeTypescript.transaction(async t => { | 235 | return sequelizeTypescript.transaction(async t => { |
219 | const sequelizeOptions = { transaction: t } | 236 | const sequelizeOptions = { transaction: t } |
220 | 237 | ||
@@ -222,6 +239,15 @@ function insertIntoDB ( | |||
222 | const videoCreated = await video.save(sequelizeOptions) | 239 | const videoCreated = await video.save(sequelizeOptions) |
223 | videoCreated.VideoChannel = videoChannel | 240 | videoCreated.VideoChannel = videoChannel |
224 | 241 | ||
242 | if (thumbnailModel) { | ||
243 | thumbnailModel.videoId = videoCreated.id | ||
244 | videoCreated.addThumbnail(await thumbnailModel.save({ transaction: t })) | ||
245 | } | ||
246 | if (previewModel) { | ||
247 | previewModel.videoId = videoCreated.id | ||
248 | videoCreated.addThumbnail(await previewModel.save({ transaction: t })) | ||
249 | } | ||
250 | |||
225 | await autoBlacklistVideoIfNeeded(video, videoChannel.Account.User, t) | 251 | await autoBlacklistVideoIfNeeded(video, videoChannel.Account.User, t) |
226 | 252 | ||
227 | // Set tags to the video | 253 | // Set tags to the video |
diff --git a/server/controllers/api/videos/index.ts b/server/controllers/api/videos/index.ts index d6f513254..24721a17f 100644 --- a/server/controllers/api/videos/index.ts +++ b/server/controllers/api/videos/index.ts | |||
@@ -2,20 +2,11 @@ import * as express from 'express' | |||
2 | import { extname, join } from 'path' | 2 | import { extname, join } from 'path' |
3 | import { VideoCreate, VideoPrivacy, VideoState, VideoUpdate } from '../../../../shared' | 3 | import { VideoCreate, VideoPrivacy, VideoState, VideoUpdate } from '../../../../shared' |
4 | import { getVideoFileFPS, getVideoFileResolution } from '../../../helpers/ffmpeg-utils' | 4 | import { getVideoFileFPS, getVideoFileResolution } from '../../../helpers/ffmpeg-utils' |
5 | import { processImage } from '../../../helpers/image-utils' | ||
6 | import { logger } from '../../../helpers/logger' | 5 | import { logger } from '../../../helpers/logger' |
7 | import { auditLoggerFactory, getAuditIdFromRes, VideoAuditView } from '../../../helpers/audit-logger' | 6 | import { auditLoggerFactory, getAuditIdFromRes, VideoAuditView } from '../../../helpers/audit-logger' |
8 | import { getFormattedObjects, getServerActor } from '../../../helpers/utils' | 7 | import { getFormattedObjects, getServerActor } from '../../../helpers/utils' |
9 | import { autoBlacklistVideoIfNeeded } from '../../../lib/video-blacklist' | 8 | import { autoBlacklistVideoIfNeeded } from '../../../lib/video-blacklist' |
10 | import { | 9 | import { MIMETYPES, VIDEO_CATEGORIES, VIDEO_LANGUAGES, VIDEO_LICENCES, VIDEO_PRIVACIES } from '../../../initializers/constants' |
11 | MIMETYPES, | ||
12 | PREVIEWS_SIZE, | ||
13 | THUMBNAILS_SIZE, | ||
14 | VIDEO_CATEGORIES, | ||
15 | VIDEO_LANGUAGES, | ||
16 | VIDEO_LICENCES, | ||
17 | VIDEO_PRIVACIES | ||
18 | } from '../../../initializers/constants' | ||
19 | import { | 10 | import { |
20 | changeVideoChannelShare, | 11 | changeVideoChannelShare, |
21 | federateVideoIfNeeded, | 12 | federateVideoIfNeeded, |
@@ -61,6 +52,8 @@ import { Notifier } from '../../../lib/notifier' | |||
61 | import { sendView } from '../../../lib/activitypub/send/send-view' | 52 | import { sendView } from '../../../lib/activitypub/send/send-view' |
62 | import { CONFIG } from '../../../initializers/config' | 53 | import { CONFIG } from '../../../initializers/config' |
63 | import { sequelizeTypescript } from '../../../initializers/database' | 54 | import { sequelizeTypescript } from '../../../initializers/database' |
55 | import { createVideoThumbnailFromExisting, generateVideoThumbnail } from '../../../lib/thumbnail' | ||
56 | import { ThumbnailType } from '../../../../shared/models/videos/thumbnail.type' | ||
64 | 57 | ||
65 | const auditLogger = auditLoggerFactory('videos') | 58 | const auditLogger = auditLoggerFactory('videos') |
66 | const videosRouter = express.Router() | 59 | const videosRouter = express.Router() |
@@ -220,21 +213,15 @@ async function addVideo (req: express.Request, res: express.Response) { | |||
220 | 213 | ||
221 | // Process thumbnail or create it from the video | 214 | // Process thumbnail or create it from the video |
222 | const thumbnailField = req.files['thumbnailfile'] | 215 | const thumbnailField = req.files['thumbnailfile'] |
223 | if (thumbnailField) { | 216 | const thumbnailModel = thumbnailField |
224 | const thumbnailPhysicalFile = thumbnailField[0] | 217 | ? await createVideoThumbnailFromExisting(thumbnailField[0].path, video, ThumbnailType.THUMBNAIL) |
225 | await processImage(thumbnailPhysicalFile, join(CONFIG.STORAGE.THUMBNAILS_DIR, video.getThumbnailName()), THUMBNAILS_SIZE) | 218 | : await generateVideoThumbnail(video, videoFile, ThumbnailType.THUMBNAIL) |
226 | } else { | ||
227 | await video.createThumbnail(videoFile) | ||
228 | } | ||
229 | 219 | ||
230 | // Process preview or create it from the video | 220 | // Process preview or create it from the video |
231 | const previewField = req.files['previewfile'] | 221 | const previewField = req.files['previewfile'] |
232 | if (previewField) { | 222 | const previewModel = previewField |
233 | const previewPhysicalFile = previewField[0] | 223 | ? await createVideoThumbnailFromExisting(previewField[0].path, video, ThumbnailType.PREVIEW) |
234 | await processImage(previewPhysicalFile, join(CONFIG.STORAGE.PREVIEWS_DIR, video.getPreviewName()), PREVIEWS_SIZE) | 224 | : await generateVideoThumbnail(video, videoFile, ThumbnailType.PREVIEW) |
235 | } else { | ||
236 | await video.createPreview(videoFile) | ||
237 | } | ||
238 | 225 | ||
239 | // Create the torrent file | 226 | // Create the torrent file |
240 | await video.createTorrentAndSetInfoHash(videoFile) | 227 | await video.createTorrentAndSetInfoHash(videoFile) |
@@ -243,6 +230,13 @@ async function addVideo (req: express.Request, res: express.Response) { | |||
243 | const sequelizeOptions = { transaction: t } | 230 | const sequelizeOptions = { transaction: t } |
244 | 231 | ||
245 | const videoCreated = await video.save(sequelizeOptions) | 232 | const videoCreated = await video.save(sequelizeOptions) |
233 | |||
234 | thumbnailModel.videoId = videoCreated.id | ||
235 | previewModel.videoId = videoCreated.id | ||
236 | |||
237 | videoCreated.addThumbnail(await thumbnailModel.save({ transaction: t })) | ||
238 | videoCreated.addThumbnail(await previewModel.save({ transaction: t })) | ||
239 | |||
246 | // Do not forget to add video channel information to the created video | 240 | // Do not forget to add video channel information to the created video |
247 | videoCreated.VideoChannel = res.locals.videoChannel | 241 | videoCreated.VideoChannel = res.locals.videoChannel |
248 | 242 | ||
@@ -313,16 +307,13 @@ async function updateVideo (req: express.Request, res: express.Response) { | |||
313 | const wasUnlistedVideo = videoInstance.privacy === VideoPrivacy.UNLISTED | 307 | const wasUnlistedVideo = videoInstance.privacy === VideoPrivacy.UNLISTED |
314 | 308 | ||
315 | // Process thumbnail or create it from the video | 309 | // Process thumbnail or create it from the video |
316 | if (req.files && req.files['thumbnailfile']) { | 310 | const thumbnailModel = req.files && req.files['thumbnailfile'] |
317 | const thumbnailPhysicalFile = req.files['thumbnailfile'][0] | 311 | ? await createVideoThumbnailFromExisting(req.files['thumbnailfile'][0].path, videoInstance, ThumbnailType.THUMBNAIL) |
318 | await processImage(thumbnailPhysicalFile, join(CONFIG.STORAGE.THUMBNAILS_DIR, videoInstance.getThumbnailName()), THUMBNAILS_SIZE) | 312 | : undefined |
319 | } | ||
320 | 313 | ||
321 | // Process preview or create it from the video | 314 | const previewModel = req.files && req.files['previewfile'] |
322 | if (req.files && req.files['previewfile']) { | 315 | ? await createVideoThumbnailFromExisting(req.files['previewfile'][0].path, videoInstance, ThumbnailType.PREVIEW) |
323 | const previewPhysicalFile = req.files['previewfile'][0] | 316 | : undefined |
324 | await processImage(previewPhysicalFile, join(CONFIG.STORAGE.PREVIEWS_DIR, videoInstance.getPreviewName()), PREVIEWS_SIZE) | ||
325 | } | ||
326 | 317 | ||
327 | try { | 318 | try { |
328 | const videoInstanceUpdated = await sequelizeTypescript.transaction(async t => { | 319 | const videoInstanceUpdated = await sequelizeTypescript.transaction(async t => { |
@@ -355,6 +346,15 @@ async function updateVideo (req: express.Request, res: express.Response) { | |||
355 | 346 | ||
356 | const videoInstanceUpdated = await videoInstance.save(sequelizeOptions) | 347 | const videoInstanceUpdated = await videoInstance.save(sequelizeOptions) |
357 | 348 | ||
349 | if (thumbnailModel) { | ||
350 | thumbnailModel.videoId = videoInstanceUpdated.id | ||
351 | videoInstanceUpdated.addThumbnail(await thumbnailModel.save({ transaction: t })) | ||
352 | } | ||
353 | if (previewModel) { | ||
354 | previewModel.videoId = videoInstanceUpdated.id | ||
355 | videoInstanceUpdated.addThumbnail(await previewModel.save({ transaction: t })) | ||
356 | } | ||
357 | |||
358 | // Video tags update? | 358 | // Video tags update? |
359 | if (videoInfoToUpdate.tags !== undefined) { | 359 | if (videoInfoToUpdate.tags !== undefined) { |
360 | const tagInstances = await TagModel.findOrCreateTags(videoInfoToUpdate.tags, t) | 360 | const tagInstances = await TagModel.findOrCreateTags(videoInfoToUpdate.tags, t) |
diff --git a/server/controllers/api/videos/ownership.ts b/server/controllers/api/videos/ownership.ts index fc73856c9..bc247c4ee 100644 --- a/server/controllers/api/videos/ownership.ts +++ b/server/controllers/api/videos/ownership.ts | |||
@@ -17,7 +17,6 @@ import { VideoChannelModel } from '../../../models/video/video-channel' | |||
17 | import { getFormattedObjects } from '../../../helpers/utils' | 17 | import { getFormattedObjects } from '../../../helpers/utils' |
18 | import { changeVideoChannelShare } from '../../../lib/activitypub' | 18 | import { changeVideoChannelShare } from '../../../lib/activitypub' |
19 | import { sendUpdateVideo } from '../../../lib/activitypub/send' | 19 | import { sendUpdateVideo } from '../../../lib/activitypub/send' |
20 | import { UserModel } from '../../../models/account/user' | ||
21 | 20 | ||
22 | const ownershipVideoRouter = express.Router() | 21 | const ownershipVideoRouter = express.Router() |
23 | 22 | ||
diff --git a/server/controllers/static.ts b/server/controllers/static.ts index f6bb88725..d75b95f52 100644 --- a/server/controllers/static.ts +++ b/server/controllers/static.ts | |||
@@ -164,7 +164,7 @@ export { | |||
164 | 164 | ||
165 | // --------------------------------------------------------------------------- | 165 | // --------------------------------------------------------------------------- |
166 | 166 | ||
167 | async function getPreview (req: express.Request, res: express.Response, next: express.NextFunction) { | 167 | async function getPreview (req: express.Request, res: express.Response) { |
168 | const path = await VideosPreviewCache.Instance.getFilePath(req.params.uuid) | 168 | const path = await VideosPreviewCache.Instance.getFilePath(req.params.uuid) |
169 | if (!path) return res.sendStatus(404) | 169 | if (!path) return res.sendStatus(404) |
170 | 170 | ||