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