2021-07-30 10:51:27 -04:00
|
|
|
import { logger } from '@server/helpers/logger'
|
|
|
|
import { WEBSERVER } from '@server/initializers/constants'
|
|
|
|
import { UserModel } from '@server/models/user/user'
|
|
|
|
import { UserNotificationModel } from '@server/models/user/user-notification'
|
|
|
|
import { MPlugin, MUserDefault, MUserWithNotificationSetting, UserNotificationModelForApi } from '@server/types/models'
|
|
|
|
import { UserNotificationType, UserRight } from '@shared/models'
|
|
|
|
import { AbstractNotification } from '../common/abstract-notification'
|
|
|
|
|
|
|
|
export class NewPluginVersionForAdmins extends AbstractNotification <MPlugin> {
|
|
|
|
private admins: MUserDefault[]
|
|
|
|
|
|
|
|
async prepare () {
|
|
|
|
// Use the debug right to know who is an administrator
|
|
|
|
this.admins = await UserModel.listWithRight(UserRight.MANAGE_DEBUG)
|
|
|
|
}
|
|
|
|
|
|
|
|
log () {
|
|
|
|
logger.info('Notifying %s admins of new PeerTube version %s.', this.admins.length, this.payload.latestVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
getSetting (user: MUserWithNotificationSetting) {
|
|
|
|
return user.NotificationSetting.newPluginVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
getTargetUsers () {
|
|
|
|
return this.admins
|
|
|
|
}
|
|
|
|
|
2022-08-03 05:33:43 -04:00
|
|
|
createNotification (user: MUserWithNotificationSetting) {
|
|
|
|
const notification = UserNotificationModel.build<UserNotificationModelForApi>({
|
2021-07-30 10:51:27 -04:00
|
|
|
type: UserNotificationType.NEW_PLUGIN_VERSION,
|
|
|
|
userId: user.id,
|
|
|
|
pluginId: this.plugin.id
|
|
|
|
})
|
|
|
|
notification.Plugin = this.plugin
|
|
|
|
|
|
|
|
return notification
|
|
|
|
}
|
|
|
|
|
2021-08-25 10:14:11 -04:00
|
|
|
createEmail (to: string) {
|
2021-07-30 10:51:27 -04:00
|
|
|
const pluginUrl = WEBSERVER.URL + '/admin/plugins/list-installed?pluginType=' + this.plugin.type
|
|
|
|
|
|
|
|
return {
|
|
|
|
to,
|
|
|
|
template: 'plugin-version-new',
|
|
|
|
subject: `A new plugin/theme version is available: ${this.plugin.name}@${this.plugin.latestVersion}`,
|
|
|
|
locals: {
|
|
|
|
pluginName: this.plugin.name,
|
|
|
|
latestVersion: this.plugin.latestVersion,
|
|
|
|
pluginUrl
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private get plugin () {
|
|
|
|
return this.payload
|
|
|
|
}
|
|
|
|
}
|