mirror of https://github.com/Chocobozzz/PeerTube
56 lines
1.8 KiB
TypeScript
56 lines
1.8 KiB
TypeScript
import { logger } from '@server/helpers/logger'
|
|
import { CONFIG } from '@server/initializers/config'
|
|
import { WEBSERVER } from '@server/initializers/constants'
|
|
import { UserModel } from '@server/models/user/user'
|
|
import { UserNotificationModel } from '@server/models/user/user-notification'
|
|
import { MUserDefault, MUserWithNotificationSetting, MVideoFullLight, UserNotificationModelForApi } from '@server/types/models'
|
|
import { UserNotificationType } from '@shared/models'
|
|
import { AbstractNotification } from '../common/abstract-notification'
|
|
|
|
export class UnblacklistForOwner extends AbstractNotification <MVideoFullLight> {
|
|
private user: MUserDefault
|
|
|
|
async prepare () {
|
|
this.user = await UserModel.loadByVideoId(this.payload.id)
|
|
}
|
|
|
|
log () {
|
|
logger.info('Notifying user %s that its video %s has been unblacklisted.', this.user.username, this.payload.url)
|
|
}
|
|
|
|
getSetting (user: MUserWithNotificationSetting) {
|
|
return user.NotificationSetting.blacklistOnMyVideo
|
|
}
|
|
|
|
getTargetUsers () {
|
|
if (!this.user) return []
|
|
|
|
return [ this.user ]
|
|
}
|
|
|
|
createNotification (user: MUserWithNotificationSetting) {
|
|
const notification = UserNotificationModel.build<UserNotificationModelForApi>({
|
|
type: UserNotificationType.UNBLACKLIST_ON_MY_VIDEO,
|
|
userId: user.id,
|
|
videoId: this.payload.id
|
|
})
|
|
notification.Video = this.payload
|
|
|
|
return notification
|
|
}
|
|
|
|
createEmail (to: string) {
|
|
const video = this.payload
|
|
const videoUrl = WEBSERVER.URL + video.getWatchStaticPath()
|
|
|
|
return {
|
|
to,
|
|
subject: `Video ${video.name} unblacklisted`,
|
|
text: `Your video "${video.name}" (${videoUrl}) on ${CONFIG.INSTANCE.NAME} has been unblacklisted.`,
|
|
locals: {
|
|
title: 'Your video was unblacklisted'
|
|
}
|
|
}
|
|
}
|
|
}
|