}
isVideoDownloadable () {
- return this.video && this.video instanceof VideoDetails && this.video.downloadEnabled && !this.video.isLive
+ return this.video && this.video instanceof VideoDetails && this.video.isDownloadableBy(this.user) && !this.video.isLive
}
loadCompleteDescription () {
return serverConfig.instance.defaultNSFWPolicy !== 'display'
}
+ isDownloadableBy (user: AuthUser) {
+ return user && this.isLocal === true && user.hasRight(UserRight.SEE_ALL_VIDEOS)
+ }
+
isRemovableBy (user: AuthUser) {
return user && this.isLocal === true && user.hasRight(UserRight.REMOVE_ANY_VIDEO)
}
return this.video &&
this.video.isLive !== true &&
this.video instanceof VideoDetails &&
- this.video.downloadEnabled
+ this.video.isDownloadableBy(this.user)
}
canVideoBeDuplicated () {