Stricter email options typings
This commit is contained in:
parent
32a18cbf33
commit
cae2df6bdc
2 changed files with 71 additions and 39 deletions
|
@ -7,7 +7,7 @@ import { MVideoBlacklistLightVideo, MVideoBlacklistVideo } from '@server/types/m
|
||||||
import { MVideoImport, MVideoImportVideo } from '@server/types/models/video/video-import'
|
import { MVideoImport, MVideoImportVideo } from '@server/types/models/video/video-import'
|
||||||
import { SANITIZE_OPTIONS, TEXT_WITH_HTML_RULES } from '@shared/core-utils'
|
import { SANITIZE_OPTIONS, TEXT_WITH_HTML_RULES } from '@shared/core-utils'
|
||||||
import { AbuseState, EmailPayload, UserAbuse } from '@shared/models'
|
import { AbuseState, EmailPayload, UserAbuse } from '@shared/models'
|
||||||
import { SendEmailOptions } from '../../shared/models/server/emailer.model'
|
import { SendEmailDefaultOptions } from '../../shared/models/server/emailer.model'
|
||||||
import { isTestInstance, root } from '../helpers/core-utils'
|
import { isTestInstance, root } from '../helpers/core-utils'
|
||||||
import { bunyanLogger, logger } from '../helpers/logger'
|
import { bunyanLogger, logger } from '../helpers/logger'
|
||||||
import { CONFIG, isEmailEnabled } from '../initializers/config'
|
import { CONFIG, isEmailEnabled } from '../initializers/config'
|
||||||
|
@ -473,13 +473,10 @@ class Emailer {
|
||||||
}
|
}
|
||||||
|
|
||||||
addNewPeerTubeVersionNotification (to: string[], latestVersion: string) {
|
addNewPeerTubeVersionNotification (to: string[], latestVersion: string) {
|
||||||
const subject = `A new PeerTube version is available: ${latestVersion}`
|
|
||||||
|
|
||||||
const emailPayload: EmailPayload = {
|
const emailPayload: EmailPayload = {
|
||||||
to,
|
to,
|
||||||
template: 'peertube-version-new',
|
template: 'peertube-version-new',
|
||||||
subject,
|
subject: `A new PeerTube version is available: ${latestVersion}`,
|
||||||
text: subject,
|
|
||||||
locals: {
|
locals: {
|
||||||
latestVersion
|
latestVersion
|
||||||
}
|
}
|
||||||
|
@ -491,13 +488,10 @@ class Emailer {
|
||||||
addNewPlugionVersionNotification (to: string[], plugin: MPlugin) {
|
addNewPlugionVersionNotification (to: string[], plugin: MPlugin) {
|
||||||
const pluginUrl = WEBSERVER.URL + '/admin/plugins/list-installed?pluginType=' + plugin.type
|
const pluginUrl = WEBSERVER.URL + '/admin/plugins/list-installed?pluginType=' + plugin.type
|
||||||
|
|
||||||
const subject = `A new plugin/theme version is available: ${plugin.name}@${plugin.latestVersion}`
|
|
||||||
|
|
||||||
const emailPayload: EmailPayload = {
|
const emailPayload: EmailPayload = {
|
||||||
to,
|
to,
|
||||||
template: 'plugin-version-new',
|
template: 'plugin-version-new',
|
||||||
subject,
|
subject: `A new plugin/theme version is available: ${plugin.name}@${plugin.latestVersion}`,
|
||||||
text: subject,
|
|
||||||
locals: {
|
locals: {
|
||||||
pluginName: plugin.name,
|
pluginName: plugin.name,
|
||||||
latestVersion: plugin.latestVersion,
|
latestVersion: plugin.latestVersion,
|
||||||
|
@ -605,26 +599,27 @@ class Emailer {
|
||||||
})
|
})
|
||||||
|
|
||||||
for (const to of options.to) {
|
for (const to of options.to) {
|
||||||
await email
|
const baseOptions: SendEmailDefaultOptions = {
|
||||||
.send(merge(
|
template: 'common',
|
||||||
{
|
message: {
|
||||||
template: 'common',
|
to,
|
||||||
message: {
|
from: options.from,
|
||||||
to,
|
subject: options.subject,
|
||||||
from: options.from,
|
replyTo: options.replyTo
|
||||||
subject: options.subject,
|
},
|
||||||
replyTo: options.replyTo
|
locals: { // default variables available in all templates
|
||||||
},
|
WEBSERVER,
|
||||||
locals: { // default variables available in all templates
|
EMAIL: CONFIG.EMAIL,
|
||||||
WEBSERVER,
|
instanceName: CONFIG.INSTANCE.NAME,
|
||||||
EMAIL: CONFIG.EMAIL,
|
text: options.text,
|
||||||
instanceName: CONFIG.INSTANCE.NAME,
|
subject: options.subject
|
||||||
text: options.text,
|
}
|
||||||
subject: options.subject
|
}
|
||||||
}
|
|
||||||
},
|
// overriden/new variables given for a specific template in the payload
|
||||||
options // overriden/new variables given for a specific template in the payload
|
const sendOptions = merge(baseOptions, options)
|
||||||
) as SendEmailOptions)
|
|
||||||
|
await email.send(sendOptions)
|
||||||
.then(res => logger.debug('Sent email.', { res }))
|
.then(res => logger.debug('Sent email.', { res }))
|
||||||
.catch(err => logger.error('Error in email sender.', { err }))
|
.catch(err => logger.error('Error in email sender.', { err }))
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,49 @@
|
||||||
export type SendEmailOptions = {
|
type From = string | { name?: string, address: string }
|
||||||
to: string[]
|
|
||||||
|
|
||||||
template?: string
|
interface Base extends Partial<SendEmailDefaultMessageOptions> {
|
||||||
locals?: { [key: string]: any }
|
to: string[] | string
|
||||||
|
|
||||||
// override defaults
|
|
||||||
subject?: string
|
|
||||||
text?: string
|
|
||||||
from?: string | { name?: string, address: string }
|
|
||||||
replyTo?: string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface MailTemplate extends Base {
|
||||||
|
template: string
|
||||||
|
locals?: { [key: string]: any }
|
||||||
|
text?: undefined
|
||||||
|
}
|
||||||
|
|
||||||
|
interface MailText extends Base {
|
||||||
|
text: string
|
||||||
|
|
||||||
|
locals?: Partial<SendEmailDefaultLocalsOptions> & {
|
||||||
|
title?: string
|
||||||
|
action?: {
|
||||||
|
url: string
|
||||||
|
text: string
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SendEmailDefaultLocalsOptions {
|
||||||
|
instanceName: string
|
||||||
|
text: string
|
||||||
|
subject: string
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SendEmailDefaultMessageOptions {
|
||||||
|
to: string[] | string
|
||||||
|
from: From
|
||||||
|
subject: string
|
||||||
|
replyTo: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export type SendEmailDefaultOptions = {
|
||||||
|
template: 'common'
|
||||||
|
|
||||||
|
message: SendEmailDefaultMessageOptions
|
||||||
|
|
||||||
|
locals: SendEmailDefaultLocalsOptions & {
|
||||||
|
WEBSERVER: any
|
||||||
|
EMAIL: any
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export type SendEmailOptions = MailTemplate | MailText
|
||||||
|
|
Loading…
Reference in a new issue