diff options
Diffstat (limited to 'server/models/video/video-caption.ts')
-rw-r--r-- | server/models/video/video-caption.ts | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/server/models/video/video-caption.ts b/server/models/video/video-caption.ts index 6335d44e4..1307c27f1 100644 --- a/server/models/video/video-caption.ts +++ b/server/models/video/video-caption.ts | |||
@@ -4,7 +4,7 @@ import { | |||
4 | BeforeDestroy, | 4 | BeforeDestroy, |
5 | BelongsTo, | 5 | BelongsTo, |
6 | Column, | 6 | Column, |
7 | CreatedAt, | 7 | CreatedAt, DataType, |
8 | ForeignKey, | 8 | ForeignKey, |
9 | Is, | 9 | Is, |
10 | Model, | 10 | Model, |
@@ -16,13 +16,14 @@ import { buildWhereIdOrUUID, throwIfNotValid } from '../utils' | |||
16 | import { VideoModel } from './video' | 16 | import { VideoModel } from './video' |
17 | import { isVideoCaptionLanguageValid } from '../../helpers/custom-validators/video-captions' | 17 | import { isVideoCaptionLanguageValid } from '../../helpers/custom-validators/video-captions' |
18 | import { VideoCaption } from '../../../shared/models/videos/caption/video-caption.model' | 18 | import { VideoCaption } from '../../../shared/models/videos/caption/video-caption.model' |
19 | import { LAZY_STATIC_PATHS, VIDEO_LANGUAGES } from '../../initializers/constants' | 19 | import { CONSTRAINTS_FIELDS, LAZY_STATIC_PATHS, STATIC_PATHS, VIDEO_LANGUAGES, WEBSERVER } from '../../initializers/constants' |
20 | import { join } from 'path' | 20 | import { join } from 'path' |
21 | import { logger } from '../../helpers/logger' | 21 | import { logger } from '../../helpers/logger' |
22 | import { remove } from 'fs-extra' | 22 | import { remove } from 'fs-extra' |
23 | import { CONFIG } from '../../initializers/config' | 23 | import { CONFIG } from '../../initializers/config' |
24 | import * as Bluebird from 'bluebird' | 24 | import * as Bluebird from 'bluebird' |
25 | import { MVideoCaptionFormattable, MVideoCaptionVideo } from '@server/typings/models' | 25 | import { MVideo, MVideoAccountLight, MVideoCaptionFormattable, MVideoCaptionVideo } from '@server/typings/models' |
26 | import { buildRemoteVideoBaseUrl } from '@server/helpers/activitypub' | ||
26 | 27 | ||
27 | export enum ScopeNames { | 28 | export enum ScopeNames { |
28 | WITH_VIDEO_UUID_AND_REMOTE = 'WITH_VIDEO_UUID_AND_REMOTE' | 29 | WITH_VIDEO_UUID_AND_REMOTE = 'WITH_VIDEO_UUID_AND_REMOTE' |
@@ -64,6 +65,10 @@ export class VideoCaptionModel extends Model<VideoCaptionModel> { | |||
64 | @Column | 65 | @Column |
65 | language: string | 66 | language: string |
66 | 67 | ||
68 | @AllowNull(true) | ||
69 | @Column(DataType.STRING(CONSTRAINTS_FIELDS.COMMONS.URL.max)) | ||
70 | fileUrl: string | ||
71 | |||
67 | @ForeignKey(() => VideoModel) | 72 | @ForeignKey(() => VideoModel) |
68 | @Column | 73 | @Column |
69 | videoId: number | 74 | videoId: number |
@@ -114,10 +119,11 @@ export class VideoCaptionModel extends Model<VideoCaptionModel> { | |||
114 | return VideoCaptionModel.findOne(query) | 119 | return VideoCaptionModel.findOne(query) |
115 | } | 120 | } |
116 | 121 | ||
117 | static insertOrReplaceLanguage (videoId: number, language: string, transaction: Transaction) { | 122 | static insertOrReplaceLanguage (videoId: number, language: string, fileUrl: string, transaction: Transaction) { |
118 | const values = { | 123 | const values = { |
119 | videoId, | 124 | videoId, |
120 | language | 125 | language, |
126 | fileUrl | ||
121 | } | 127 | } |
122 | 128 | ||
123 | return VideoCaptionModel.upsert(values, { transaction, returning: true }) | 129 | return VideoCaptionModel.upsert(values, { transaction, returning: true }) |
@@ -175,4 +181,14 @@ export class VideoCaptionModel extends Model<VideoCaptionModel> { | |||
175 | removeCaptionFile (this: MVideoCaptionFormattable) { | 181 | removeCaptionFile (this: MVideoCaptionFormattable) { |
176 | return remove(CONFIG.STORAGE.CAPTIONS_DIR + this.getCaptionName()) | 182 | return remove(CONFIG.STORAGE.CAPTIONS_DIR + this.getCaptionName()) |
177 | } | 183 | } |
184 | |||
185 | getFileUrl (video: MVideoAccountLight) { | ||
186 | if (!this.Video) this.Video = video as VideoModel | ||
187 | |||
188 | if (video.isOwned()) return WEBSERVER.URL + this.getCaptionStaticPath() | ||
189 | if (this.fileUrl) return this.fileUrl | ||
190 | |||
191 | // Fallback if we don't have a file URL | ||
192 | return buildRemoteVideoBaseUrl(video, this.getCaptionStaticPath()) | ||
193 | } | ||
178 | } | 194 | } |