2020-07-01 09:05:30 -05:00
|
|
|
import { readFileSync } from 'fs-extra'
|
2021-07-30 09:51:27 -05:00
|
|
|
import { isArray, merge } from 'lodash'
|
2018-01-30 06:27:07 -06:00
|
|
|
import { createTransport, Transporter } from 'nodemailer'
|
2020-07-01 09:05:30 -05:00
|
|
|
import { join } from 'path'
|
2021-07-30 09:51:27 -05:00
|
|
|
import { EmailPayload } from '@shared/models'
|
2021-03-12 03:22:17 -06:00
|
|
|
import { SendEmailDefaultOptions } from '../../shared/models/server/emailer.model'
|
2021-11-02 13:11:20 -05:00
|
|
|
import { isTestInstance } from '../helpers/core-utils'
|
|
|
|
import { root } from '@shared/core-utils'
|
2018-03-22 05:32:43 -05:00
|
|
|
import { bunyanLogger, logger } from '../helpers/logger'
|
2020-02-17 03:27:00 -06:00
|
|
|
import { CONFIG, isEmailEnabled } from '../initializers/config'
|
2019-04-11 04:33:44 -05:00
|
|
|
import { WEBSERVER } from '../initializers/constants'
|
2021-07-30 09:51:27 -05:00
|
|
|
import { MUser } from '../types/models'
|
2020-07-01 09:05:30 -05:00
|
|
|
import { JobQueue } from './job-queue'
|
2020-11-07 15:59:58 -06:00
|
|
|
|
2020-05-05 13:22:22 -05:00
|
|
|
const Email = require('email-templates')
|
2019-02-20 08:54:32 -06:00
|
|
|
|
2018-01-30 06:27:07 -06:00
|
|
|
class Emailer {
|
|
|
|
|
|
|
|
private static instance: Emailer
|
|
|
|
private initialized = false
|
|
|
|
private transporter: Transporter
|
|
|
|
|
2020-01-31 09:56:52 -06:00
|
|
|
private constructor () {
|
|
|
|
}
|
2018-01-30 06:27:07 -06:00
|
|
|
|
|
|
|
init () {
|
|
|
|
// Already initialized
|
|
|
|
if (this.initialized === true) return
|
|
|
|
this.initialized = true
|
|
|
|
|
2021-01-26 02:28:28 -06:00
|
|
|
if (!isEmailEnabled()) {
|
2018-01-30 06:27:07 -06:00
|
|
|
if (!isTestInstance()) {
|
|
|
|
logger.error('Cannot use SMTP server because of lack of configuration. PeerTube will not be able to send mails!')
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:28:28 -06:00
|
|
|
return
|
2019-02-13 05:16:27 -06:00
|
|
|
}
|
2021-01-26 02:28:28 -06:00
|
|
|
|
|
|
|
if (CONFIG.SMTP.TRANSPORT === 'smtp') this.initSMTPTransport()
|
|
|
|
else if (CONFIG.SMTP.TRANSPORT === 'sendmail') this.initSendmailTransport()
|
2018-12-05 08:10:45 -06:00
|
|
|
}
|
|
|
|
|
2020-12-11 14:02:32 -06:00
|
|
|
async checkConnection () {
|
2019-02-13 05:16:27 -06:00
|
|
|
if (!this.transporter || CONFIG.SMTP.TRANSPORT !== 'smtp') return
|
2018-01-30 06:27:07 -06:00
|
|
|
|
2018-04-04 04:04:14 -05:00
|
|
|
logger.info('Testing SMTP server...')
|
|
|
|
|
2018-01-30 06:27:07 -06:00
|
|
|
try {
|
|
|
|
const success = await this.transporter.verify()
|
2020-12-11 14:02:32 -06:00
|
|
|
if (success !== true) this.warnOnConnectionFailure()
|
2018-01-30 06:27:07 -06:00
|
|
|
|
|
|
|
logger.info('Successfully connected to SMTP server.')
|
|
|
|
} catch (err) {
|
2020-12-11 14:02:32 -06:00
|
|
|
this.warnOnConnectionFailure(err)
|
2018-01-30 06:27:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-20 07:58:58 -05:00
|
|
|
addPasswordResetEmailJob (username: string, to: string, resetPasswordUrl: string) {
|
2018-12-26 03:36:24 -06:00
|
|
|
const emailPayload: EmailPayload = {
|
2020-05-05 13:22:22 -05:00
|
|
|
template: 'password-reset',
|
2018-12-26 03:36:24 -06:00
|
|
|
to: [ to ],
|
2020-05-05 13:22:22 -05:00
|
|
|
subject: 'Reset your account password',
|
|
|
|
locals: {
|
2020-07-20 07:58:58 -05:00
|
|
|
username,
|
2020-05-05 13:22:22 -05:00
|
|
|
resetPasswordUrl
|
|
|
|
}
|
2018-12-26 03:36:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return JobQueue.Instance.createJob({ type: 'email', payload: emailPayload })
|
|
|
|
}
|
|
|
|
|
2020-05-05 13:22:22 -05:00
|
|
|
addPasswordCreateEmailJob (username: string, to: string, createPasswordUrl: string) {
|
2020-02-17 03:16:52 -06:00
|
|
|
const emailPayload: EmailPayload = {
|
2020-05-05 13:22:22 -05:00
|
|
|
template: 'password-create',
|
2020-02-17 03:16:52 -06:00
|
|
|
to: [ to ],
|
2020-05-05 13:22:22 -05:00
|
|
|
subject: 'Create your account password',
|
|
|
|
locals: {
|
|
|
|
username,
|
|
|
|
createPasswordUrl
|
|
|
|
}
|
2020-02-17 03:16:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return JobQueue.Instance.createJob({ type: 'email', payload: emailPayload })
|
|
|
|
}
|
|
|
|
|
2020-07-20 07:58:58 -05:00
|
|
|
addVerifyEmailJob (username: string, to: string, verifyEmailUrl: string) {
|
2018-12-26 03:36:24 -06:00
|
|
|
const emailPayload: EmailPayload = {
|
2020-05-05 13:22:22 -05:00
|
|
|
template: 'verify-email',
|
2018-12-26 03:36:24 -06:00
|
|
|
to: [ to ],
|
2020-12-10 17:10:37 -06:00
|
|
|
subject: `Verify your email on ${CONFIG.INSTANCE.NAME}`,
|
2020-05-05 13:22:22 -05:00
|
|
|
locals: {
|
2020-07-20 07:58:58 -05:00
|
|
|
username,
|
2020-05-05 13:22:22 -05:00
|
|
|
verifyEmailUrl
|
|
|
|
}
|
2018-12-26 03:36:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return JobQueue.Instance.createJob({ type: 'email', payload: emailPayload })
|
|
|
|
}
|
|
|
|
|
2019-08-15 04:53:26 -05:00
|
|
|
addUserBlockJob (user: MUser, blocked: boolean, reason?: string) {
|
2018-08-08 10:36:10 -05:00
|
|
|
const reasonString = reason ? ` for the following reason: ${reason}` : ''
|
|
|
|
const blockedWord = blocked ? 'blocked' : 'unblocked'
|
|
|
|
|
|
|
|
const to = user.email
|
|
|
|
const emailPayload: EmailPayload = {
|
|
|
|
to: [ to ],
|
2020-05-05 13:22:22 -05:00
|
|
|
subject: 'Account ' + blockedWord,
|
2020-12-10 17:10:37 -06:00
|
|
|
text: `Your account ${user.username} on ${CONFIG.INSTANCE.NAME} has been ${blockedWord}${reasonString}.`
|
2018-08-08 10:36:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return JobQueue.Instance.createJob({ type: 'email', payload: emailPayload })
|
|
|
|
}
|
|
|
|
|
2019-06-21 01:49:35 -05:00
|
|
|
addContactFormJob (fromEmail: string, fromName: string, subject: string, body: string) {
|
2019-01-09 08:14:29 -06:00
|
|
|
const emailPayload: EmailPayload = {
|
2020-05-05 13:22:22 -05:00
|
|
|
template: 'contact-form',
|
2019-01-09 08:14:29 -06:00
|
|
|
to: [ CONFIG.ADMIN.EMAIL ],
|
2020-05-05 13:22:22 -05:00
|
|
|
replyTo: `"${fromName}" <${fromEmail}>`,
|
|
|
|
subject: `(contact form) ${subject}`,
|
|
|
|
locals: {
|
|
|
|
fromName,
|
|
|
|
fromEmail,
|
2020-11-10 08:56:13 -06:00
|
|
|
body,
|
|
|
|
|
|
|
|
// There are not notification preferences for the contact form
|
|
|
|
hideNotificationPreferences: true
|
2020-05-05 13:22:22 -05:00
|
|
|
}
|
2019-01-09 08:14:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return JobQueue.Instance.createJob({ type: 'email', payload: emailPayload })
|
|
|
|
}
|
|
|
|
|
2019-11-29 06:36:40 -06:00
|
|
|
async sendMail (options: EmailPayload) {
|
2020-02-17 03:27:00 -06:00
|
|
|
if (!isEmailEnabled()) {
|
2018-01-30 06:27:07 -06:00
|
|
|
throw new Error('Cannot send mail because SMTP is not configured.')
|
|
|
|
}
|
|
|
|
|
2020-05-05 13:22:22 -05:00
|
|
|
const fromDisplayName = options.from
|
|
|
|
? options.from
|
2020-12-10 17:10:37 -06:00
|
|
|
: CONFIG.INSTANCE.NAME
|
2019-02-14 04:56:23 -06:00
|
|
|
|
2020-05-05 13:22:22 -05:00
|
|
|
const email = new Email({
|
|
|
|
send: true,
|
|
|
|
message: {
|
|
|
|
from: `"${fromDisplayName}" <${CONFIG.SMTP.FROM_ADDRESS}>`
|
|
|
|
},
|
|
|
|
transport: this.transporter,
|
|
|
|
views: {
|
2020-06-02 02:21:33 -05:00
|
|
|
root: join(root(), 'dist', 'server', 'lib', 'emails')
|
2020-05-05 13:22:22 -05:00
|
|
|
},
|
|
|
|
subjectPrefix: CONFIG.EMAIL.SUBJECT.PREFIX
|
|
|
|
})
|
|
|
|
|
2021-07-30 09:51:27 -05:00
|
|
|
const toEmails = isArray(options.to)
|
|
|
|
? options.to
|
|
|
|
: [ options.to ]
|
|
|
|
|
|
|
|
for (const to of toEmails) {
|
2021-03-12 03:22:17 -06:00
|
|
|
const baseOptions: SendEmailDefaultOptions = {
|
|
|
|
template: 'common',
|
|
|
|
message: {
|
|
|
|
to,
|
|
|
|
from: options.from,
|
|
|
|
subject: options.subject,
|
|
|
|
replyTo: options.replyTo
|
|
|
|
},
|
|
|
|
locals: { // default variables available in all templates
|
|
|
|
WEBSERVER,
|
|
|
|
EMAIL: CONFIG.EMAIL,
|
|
|
|
instanceName: CONFIG.INSTANCE.NAME,
|
|
|
|
text: options.text,
|
|
|
|
subject: options.subject
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// overriden/new variables given for a specific template in the payload
|
|
|
|
const sendOptions = merge(baseOptions, options)
|
|
|
|
|
|
|
|
await email.send(sendOptions)
|
2020-06-02 02:21:33 -05:00
|
|
|
.then(res => logger.debug('Sent email.', { res }))
|
|
|
|
.catch(err => logger.error('Error in email sender.', { err }))
|
2019-11-29 06:36:40 -06:00
|
|
|
}
|
2018-01-30 06:27:07 -06:00
|
|
|
}
|
|
|
|
|
2020-12-11 14:02:32 -06:00
|
|
|
private warnOnConnectionFailure (err?: Error) {
|
2018-03-26 08:54:13 -05:00
|
|
|
logger.error('Failed to connect to SMTP %s:%d.', CONFIG.SMTP.HOSTNAME, CONFIG.SMTP.PORT, { err })
|
2018-01-30 06:27:07 -06:00
|
|
|
}
|
|
|
|
|
2021-01-26 02:28:28 -06:00
|
|
|
private initSMTPTransport () {
|
|
|
|
logger.info('Using %s:%s as SMTP server.', CONFIG.SMTP.HOSTNAME, CONFIG.SMTP.PORT)
|
|
|
|
|
|
|
|
let tls
|
|
|
|
if (CONFIG.SMTP.CA_FILE) {
|
|
|
|
tls = {
|
|
|
|
ca: [ readFileSync(CONFIG.SMTP.CA_FILE) ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let auth
|
|
|
|
if (CONFIG.SMTP.USERNAME && CONFIG.SMTP.PASSWORD) {
|
|
|
|
auth = {
|
|
|
|
user: CONFIG.SMTP.USERNAME,
|
|
|
|
pass: CONFIG.SMTP.PASSWORD
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.transporter = createTransport({
|
|
|
|
host: CONFIG.SMTP.HOSTNAME,
|
|
|
|
port: CONFIG.SMTP.PORT,
|
|
|
|
secure: CONFIG.SMTP.TLS,
|
|
|
|
debug: CONFIG.LOG.LEVEL === 'debug',
|
|
|
|
logger: bunyanLogger as any,
|
|
|
|
ignoreTLS: CONFIG.SMTP.DISABLE_STARTTLS,
|
|
|
|
tls,
|
|
|
|
auth
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
private initSendmailTransport () {
|
|
|
|
logger.info('Using sendmail to send emails')
|
|
|
|
|
|
|
|
this.transporter = createTransport({
|
|
|
|
sendmail: true,
|
|
|
|
newline: 'unix',
|
2021-04-21 02:16:06 -05:00
|
|
|
path: CONFIG.SMTP.SENDMAIL,
|
2021-10-11 07:49:10 -05:00
|
|
|
logger: bunyanLogger
|
2021-01-26 02:28:28 -06:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-01-30 06:27:07 -06:00
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2020-04-23 02:32:53 -05:00
|
|
|
Emailer
|
2018-01-30 06:27:07 -06:00
|
|
|
}
|