Skip to content
Snippets Groups Projects
Commit c416920a authored by Alexandru Munteanu's avatar Alexandru Munteanu
Browse files

feat(eqs-decision): send mail to eic

parent 333eef06
No related branches found
No related tags found
2 merge requests!21Sprint #16 features,!16Eqs decision
......@@ -167,7 +167,15 @@ const sendEQSEmail = ({ eic, email, baseUrl, collection, subjectBaseText }) => {
email.content.unsubscribeLink = baseUrl
email.content.signatureName = `${eic.firstName} ${eic.lastName}`
email.content.subject = `${subjectBaseText} Submitted`
email.content.ctaLink = ''
email.content.ctaLink = services.createUrl(
baseUrl,
config.get('eqs-decision.url'),
{
collectionId: collection.id,
customId: collection.customId,
token: collection.technicalChecks.token,
},
)
email.content.ctaText = 'MAKE DECISION'
const { html, text } = email.getBody({
......
const { v4 } = require('uuid')
const config = require('config')
const { get } = require('lodash')
const { get, set } = require('lodash')
const {
services,
authsome: authsomeHelper,
......@@ -38,6 +39,7 @@ module.exports = models => async (req, res) => {
fragment = await fragment.save()
collection.status = 'technicalChecks'
set(collection, 'technicalChecks.token', v4())
await collection.save()
const { journal, xmlParser, ftp } = mtsConfig
......
const getEmailCopy = ({ emailType, titleText }) => {
let paragraph
switch (emailType) {
case 'eqs-manuscript-accepted':
paragraph = `We are please to inform you that ${titleText} has passed the Hindawi technical check process and is now submitted. Please click the link below to access the manuscript.`
break
default:
throw new Error(`The ${emailType} email type is not defined.`)
}
return { paragraph, hasLink: true }
}
module.exports = {
getEmailCopy,
}
const {
User,
Email,
services,
Fragment,
} = require('pubsweet-component-helper-service')
const { getEmailCopy } = require('./emailCopy')
module.exports = {
async sendNotifications({
baseUrl,
collection,
User: UserModel,
Fragment: FragmentModel,
}) {
const fragment = await FragmentModel.find(collection.fragments[0])
const fragmentHelper = new Fragment({ fragment })
const parsedFragment = await fragmentHelper.getFragmentData({
handlingEditor: collection.handlingEditor,
})
const { submittingAuthor } = await fragmentHelper.getAuthorData({
UserModel,
})
const titleText = `the manuscript titled "${parsedFragment.title}" by ${
submittingAuthor.firstName
} ${submittingAuthor.lastName}`
const userHelper = new User({ UserModel })
const {
lastName,
firstName,
email: eicEmail,
} = await userHelper.getEditorInChief()
const email = new Email({
type: 'user',
toUser: {
email: eicEmail,
name: `${firstName} ${lastName}`,
},
content: {
subject: `${collection.customId}: Manuscript Passed Technical Checks`,
signatureName: 'EQS Team',
ctaLink: services.createUrl(
baseUrl,
`/projects/${collection.id}/versions/${fragment.id}/details`,
),
ctaText: 'MANUSCRIPT DETAILS',
unsubscribeLink: baseUrl,
},
})
const { html, text } = email.getBody({
body: getEmailCopy({
titleText,
emailType: 'eqs-manuscript-accepted',
}),
})
email.sendEmail({ html, text })
},
}
const { get, isEmpty } = require('lodash')
const { services } = require('pubsweet-component-helper-service')
const { sendNotifications } = require('./notifications/notifications')
const TECHNICAL_STEPS = {
EQS: 'eqs',
EQA: 'eqa',
......@@ -14,7 +16,7 @@ const setNewStatus = (step, agree) => {
}
}
module.exports = ({ Collection }) => async (req, res) => {
module.exports = ({ Collection, Fragment, User }) => async (req, res) => {
const { collectionId } = req.params
const { token, agree, step } = req.body
......@@ -38,7 +40,12 @@ module.exports = ({ Collection }) => async (req, res) => {
collection.status = setNewStatus(step, agree)
await collection.save()
// TODO: send email to EiC here
sendNotifications({
User,
Fragment,
collection,
baseUrl: services.getBaseUrl(req),
})
return res.status(200).json(collection)
} catch (e) {
......
......@@ -33,7 +33,6 @@ const EQSDecisionPage = ({
<Root>
<Title>
Take a decision for manuscript <b>{params.customId}</b>.
{params.collectionId}
</Title>
{errorMessage && <Err>{errorMessage}</Err>}
{successMessage && <Subtitle>{successMessage}</Subtitle>}
......
......@@ -94,6 +94,9 @@ module.exports = {
'confirm-signup': {
url: process.env.PUBSWEET_CONFIRM_SIGNUP_URL || '/confirm-signup',
},
'eqs-decision': {
url: process.env.PUBSWEET_EQS_DECISION || '/eqs-decision',
},
unsubscribe: {
url: process.env.PUBSWEET_UNSUBSCRIBE_URL || '/unsubscribe',
},
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment