aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/notifier/shared/instance/new-plugin-version-for-admins.ts
blob: 874b10a3deeff276b4372dec9b3b3e8d508b3cf5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
  }

  async createNotification (user: MUserWithNotificationSetting) {
    const notification = await UserNotificationModel.create<UserNotificationModelForApi>({
      type: UserNotificationType.NEW_PLUGIN_VERSION,
      userId: user.id,
      pluginId: this.plugin.id
    })
    notification.Plugin = this.plugin

    return notification
  }

  createEmail (to: string) {
    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
  }
}