2020-07-01 16:05:30 +02:00
|
|
|
import { readFileSync } from 'fs-extra'
|
2022-08-17 14:52:23 +02:00
|
|
|
import { merge } from 'lodash'
|
2018-01-30 13:27:07 +01:00
|
|
|
import { createTransport, Transporter } from 'nodemailer'
|
2020-07-01 16:05:30 +02:00
|
|
|
import { join } from 'path'
|
2022-08-17 15:36:03 +02:00
|
|
|
import { arrayify, root } from '@shared/core-utils'
|
2021-07-30 16:51:27 +02:00
|
|
|
import { EmailPayload } from '@shared/models'
|
2021-03-12 10:22:17 +01:00
|
|
|
import { SendEmailDefaultOptions } from '../../shared/models/server/emailer.model'
|
2022-07-06 15:44:14 +02:00
|
|
|
import { isTestOrDevInstance } from '../helpers/core-utils'
|
2018-03-22 11:32:43 +01:00
|
|
|
import { bunyanLogger, logger } from '../helpers/logger'
|
2020-02-17 10:27:00 +01:00
|
|
|
import { CONFIG, isEmailEnabled } from '../initializers/config'
|
2019-04-11 11:33:44 +02:00
|
|
|
import { WEBSERVER } from '../initializers/constants'
|
2021-07-30 16:51:27 +02:00
|
|
|
import { MUser } from '../types/models'
|
2020-07-01 16:05:30 +02:00
|
|
|
import { JobQueue } from './job-queue'
|
2020-11-07 22:59:58 +01:00
|
|
|
|
2020-05-05 20:22:22 +02:00
|
|
|
const Email = require('email-templates')
|
2019-02-20 15:54:32 +01:00
|
|
|
|
2018-01-30 13:27:07 +01:00
|
|
|
class Emailer {
|
|
|
|
|
|
|
|
private static instance: Emailer
|
|
|
|
private initialized = false
|
|
|
|
private transporter: Transporter
|
|
|
|
|
2020-01-31 16:56:52 +01:00
|
|
|
private constructor () {
|
|
|
|
}
|
2018-01-30 13:27:07 +01:00
|
|
|
|
|
|
|
init () {
|
|
|
|
// Already initialized
|
|
|
|
if (this.initialized === true) return
|
|
|
|
this.initialized = true
|
|
|
|
|
2021-01-26 09:28:28 +01:00
|
|
|
if (!isEmailEnabled()) {
|
2022-07-06 15:44:14 +02:00
|
|
|
if (!isTestOrDevInstance()) {
|
2018-01-30 13:27:07 +01:00
|
|
|
logger.error('Cannot use SMTP server because of lack of configuration. PeerTube will not be able to send mails!')
|
|
|
|
}
|
|
|
|
|
2021-01-26 09:28:28 +01:00
|
|
|
return
|
2019-02-13 12:16:27 +01:00
|
|
|
}
|
2021-01-26 09:28:28 +01:00
|
|
|
|
|
|
|
if (CONFIG.SMTP.TRANSPORT === 'smtp') this.initSMTPTransport()
|
|
|
|
else if (CONFIG.SMTP.TRANSPORT === 'sendmail') this.initSendmailTransport()
|
2018-12-05 15:10:45 +01:00
|
|
|
}
|
|
|
|
|
2020-12-11 21:02:32 +01:00
|
|
|
async checkConnection () {
|
2019-02-13 12:16:27 +01:00
|
|
|
if (!this.transporter || CONFIG.SMTP.TRANSPORT !== 'smtp') return
|
2018-01-30 13:27:07 +01:00
|
|
|
|
2018-04-04 11:04:14 +02:00
|
|
|
logger.info('Testing SMTP server...')
|
|
|
|
|
2018-01-30 13:27:07 +01:00
|
|
|
try {
|
|
|
|
const success = await this.transporter.verify()
|
2020-12-11 21:02:32 +01:00
|
|
|
if (success !== true) this.warnOnConnectionFailure()
|
2018-01-30 13:27:07 +01:00
|
|
|
|
|
|
|
logger.info('Successfully connected to SMTP server.')
|
|
|
|
} catch (err) {
|
2020-12-11 21:02:32 +01:00
|
|
|
this.warnOnConnectionFailure(err)
|
2018-01-30 13:27:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-20 14:58:58 +02:00
|
|
|
addPasswordResetEmailJob (username: string, to: string, resetPasswordUrl: string) {
|
2018-12-26 10:36:24 +01:00
|
|
|
const emailPayload: EmailPayload = {
|
2020-05-05 20:22:22 +02:00
|
|
|
template: 'password-reset',
|
2018-12-26 10:36:24 +01:00
|
|
|
to: [ to ],
|
2020-05-05 20:22:22 +02:00
|
|
|
subject: 'Reset your account password',
|
|
|
|
locals: {
|
2020-07-20 14:58:58 +02:00
|
|
|
username,
|
2020-05-05 20:22:22 +02:00
|
|
|
resetPasswordUrl
|
|
|
|
}
|
2018-12-26 10:36:24 +01:00
|
|
|
}
|
|
|
|
|
2022-08-08 15:48:17 +02:00
|
|
|
return JobQueue.Instance.createJobAsync({ type: 'email', payload: emailPayload })
|
2018-12-26 10:36:24 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 20:22:22 +02:00
|
|
|
addPasswordCreateEmailJob (username: string, to: string, createPasswordUrl: string) {
|
2020-02-17 10:16:52 +01:00
|
|
|
const emailPayload: EmailPayload = {
|
2020-05-05 20:22:22 +02:00
|
|
|
template: 'password-create',
|
2020-02-17 10:16:52 +01:00
|
|
|
to: [ to ],
|
2020-05-05 20:22:22 +02:00
|
|
|
subject: 'Create your account password',
|
|
|
|
locals: {
|
|
|
|
username,
|
|
|
|
createPasswordUrl
|
|
|
|
}
|
2020-02-17 10:16:52 +01:00
|
|
|
}
|
|
|
|
|
2022-08-08 15:48:17 +02:00
|
|
|
return JobQueue.Instance.createJobAsync({ type: 'email', payload: emailPayload })
|
2020-02-17 10:16:52 +01:00
|
|
|
}
|
|
|
|
|
2020-07-20 14:58:58 +02:00
|
|
|
addVerifyEmailJob (username: string, to: string, verifyEmailUrl: string) {
|
2018-12-26 10:36:24 +01:00
|
|
|
const emailPayload: EmailPayload = {
|
2020-05-05 20:22:22 +02:00
|
|
|
template: 'verify-email',
|
2018-12-26 10:36:24 +01:00
|
|
|
to: [ to ],
|
2020-12-11 00:10:37 +01:00
|
|
|
subject: `Verify your email on ${CONFIG.INSTANCE.NAME}`,
|
2020-05-05 20:22:22 +02:00
|
|
|
locals: {
|
2020-07-20 14:58:58 +02:00
|
|
|
username,
|
2020-05-05 20:22:22 +02:00
|
|
|
verifyEmailUrl
|
|
|
|
}
|
2018-12-26 10:36:24 +01:00
|
|
|
}
|
|
|
|
|
2022-08-08 15:48:17 +02:00
|
|
|
return JobQueue.Instance.createJobAsync({ type: 'email', payload: emailPayload })
|
2018-12-26 10:36:24 +01:00
|
|
|
}
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
addUserBlockJob (user: MUser, blocked: boolean, reason?: string) {
|
2018-08-08 17:36:10 +02: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 20:22:22 +02:00
|
|
|
subject: 'Account ' + blockedWord,
|
2020-12-11 00:10:37 +01:00
|
|
|
text: `Your account ${user.username} on ${CONFIG.INSTANCE.NAME} has been ${blockedWord}${reasonString}.`
|
2018-08-08 17:36:10 +02:00
|
|
|
}
|
|
|
|
|
2022-08-08 15:48:17 +02:00
|
|
|
return JobQueue.Instance.createJobAsync({ type: 'email', payload: emailPayload })
|
2018-08-08 17:36:10 +02:00
|
|
|
}
|
|
|
|
|
2019-06-21 08:49:35 +02:00
|
|
|
addContactFormJob (fromEmail: string, fromName: string, subject: string, body: string) {
|
2019-01-09 15:14:29 +01:00
|
|
|
const emailPayload: EmailPayload = {
|
2020-05-05 20:22:22 +02:00
|
|
|
template: 'contact-form',
|
2019-01-09 15:14:29 +01:00
|
|
|
to: [ CONFIG.ADMIN.EMAIL ],
|
2020-05-05 20:22:22 +02:00
|
|
|
replyTo: `"${fromName}" <${fromEmail}>`,
|
|
|
|
subject: `(contact form) ${subject}`,
|
|
|
|
locals: {
|
|
|
|
fromName,
|
|
|
|
fromEmail,
|
2020-11-10 15:56:13 +01:00
|
|
|
body,
|
|
|
|
|
|
|
|
// There are not notification preferences for the contact form
|
|
|
|
hideNotificationPreferences: true
|
2020-05-05 20:22:22 +02:00
|
|
|
}
|
2019-01-09 15:14:29 +01:00
|
|
|
}
|
|
|
|
|
2022-08-08 15:48:17 +02:00
|
|
|
return JobQueue.Instance.createJobAsync({ type: 'email', payload: emailPayload })
|
2019-01-09 15:14:29 +01:00
|
|
|
}
|
|
|
|
|
2019-11-29 13:36:40 +01:00
|
|
|
async sendMail (options: EmailPayload) {
|
2020-02-17 10:27:00 +01:00
|
|
|
if (!isEmailEnabled()) {
|
2022-07-12 16:32:05 +02:00
|
|
|
logger.info('Cannot send mail because SMTP is not configured.')
|
|
|
|
return
|
2018-01-30 13:27:07 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 20:22:22 +02:00
|
|
|
const fromDisplayName = options.from
|
|
|
|
? options.from
|
2020-12-11 00:10:37 +01:00
|
|
|
: CONFIG.INSTANCE.NAME
|
2019-02-14 11:56:23 +01:00
|
|
|
|
2020-05-05 20:22:22 +02:00
|
|
|
const email = new Email({
|
|
|
|
send: true,
|
2022-04-15 14:19:07 +02:00
|
|
|
htmlToText: {
|
|
|
|
selectors: [
|
|
|
|
{ selector: 'img', format: 'skip' },
|
2022-04-15 15:17:32 +02:00
|
|
|
{ selector: 'a', options: { hideLinkHrefIfSameAsText: true } }
|
2022-04-15 14:19:07 +02:00
|
|
|
]
|
|
|
|
},
|
2020-05-05 20:22:22 +02:00
|
|
|
message: {
|
|
|
|
from: `"${fromDisplayName}" <${CONFIG.SMTP.FROM_ADDRESS}>`
|
|
|
|
},
|
|
|
|
transport: this.transporter,
|
|
|
|
views: {
|
2020-06-02 09:21:33 +02:00
|
|
|
root: join(root(), 'dist', 'server', 'lib', 'emails')
|
2020-05-05 20:22:22 +02:00
|
|
|
},
|
|
|
|
subjectPrefix: CONFIG.EMAIL.SUBJECT.PREFIX
|
|
|
|
})
|
|
|
|
|
2022-08-17 15:36:03 +02:00
|
|
|
const toEmails = arrayify(options.to)
|
2021-07-30 16:51:27 +02:00
|
|
|
|
|
|
|
for (const to of toEmails) {
|
2021-03-12 10:22:17 +01: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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Fix various typos
Found via `codespell -q 3 -S ./CREDITS.md,./CHANGELOG.md,./client/src/locale,./yarn.lock,./client/yarn.lock -L doubleclick,followings,nd,ot,ro,serie,splitted,tread,truthy`
2022-06-07 15:45:06 +02:00
|
|
|
// overridden/new variables given for a specific template in the payload
|
2021-03-12 10:22:17 +01:00
|
|
|
const sendOptions = merge(baseOptions, options)
|
|
|
|
|
|
|
|
await email.send(sendOptions)
|
2020-06-02 09:21:33 +02:00
|
|
|
.then(res => logger.debug('Sent email.', { res }))
|
|
|
|
.catch(err => logger.error('Error in email sender.', { err }))
|
2019-11-29 13:36:40 +01:00
|
|
|
}
|
2018-01-30 13:27:07 +01:00
|
|
|
}
|
|
|
|
|
2020-12-11 21:02:32 +01:00
|
|
|
private warnOnConnectionFailure (err?: Error) {
|
2018-03-26 15:54:13 +02:00
|
|
|
logger.error('Failed to connect to SMTP %s:%d.', CONFIG.SMTP.HOSTNAME, CONFIG.SMTP.PORT, { err })
|
2018-01-30 13:27:07 +01:00
|
|
|
}
|
|
|
|
|
2021-01-26 09:28:28 +01: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 09:16:06 +02:00
|
|
|
path: CONFIG.SMTP.SENDMAIL,
|
2021-10-11 14:49:10 +02:00
|
|
|
logger: bunyanLogger
|
2021-01-26 09:28:28 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-01-30 13:27:07 +01:00
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2020-04-23 09:32:53 +02:00
|
|
|
Emailer
|
2018-01-30 13:27:07 +01:00
|
|
|
}
|