2018-12-10 14:25:41 +01:00
import { Email } from "./email" ;
2018-12-18 13:23:14 +01:00
import { Body } from "./body" ;
2020-03-16 14:09:46 +01:00
import { FormArray } from "@angular/forms" ;
2020-11-19 18:13:27 +01:00
import { properties } from "../../../../environments/environment" ;
2018-12-10 14:25:41 +01:00
export class Composer {
private static noteBodySize = "14px" ;
private static noteFontSize = "11px" ;
// TODO move to properties
private static openaireEmail = "mailto:openaire.test@gmail.com" ;
2018-12-19 14:26:41 +01:00
private static subjectPrefix = "[OpenAIRE-Connect] " ;
2020-03-19 10:10:42 +01:00
private static closing = "OpenAIRE team" ;
2018-12-18 13:23:14 +01:00
private static openaireAddress = "<a href='https://www.openaire.eu'>www.openaire.eu</a><br>" ;
2018-12-19 14:26:41 +01:00
private static signature = Composer . closing + "<br>" + Composer . openaireAddress ;
2018-12-10 14:25:41 +01:00
2020-05-08 17:01:59 +02:00
private static ifYouAreNotResponsible ( mail ) : string {
2018-12-12 14:30:07 +01:00
return "If you are not responsible for this community, please "
2020-05-08 17:01:59 +02:00
+ "<a href=\mailto:'" + mail + "\'>contact us</a>. " ;
2018-12-10 14:25:41 +01:00
}
2018-12-12 14:03:12 +01:00
private static manageNotificationSettings ( communityId : string ) : string {
2020-12-07 11:22:24 +01:00
return "Click <a href='" + properties . adminPortalURL + "/manage-user-notifications?communityId="
2018-12-12 14:30:07 +01:00
+ communityId + "'>here</a> to manage your notification settings. " ;
2018-12-10 14:25:41 +01:00
}
2018-12-12 14:03:12 +01:00
private static youAreManagerOfTheCommunity ( communityId : string , communityName : string ) : string {
2018-12-12 14:30:07 +01:00
return "You are receiving this e-mail as manager of the community "
+ "<a href='https://beta." + communityId + ".openaire.eu/'>" + communityName + "</a>. " ;
2018-12-10 14:25:41 +01:00
}
2020-05-08 17:01:59 +02:00
public static composeEmailForNewManager ( communityId : string , communityName : string , newCommunityManagers : any , mail : string ) : Email {
2018-12-10 14:25:41 +01:00
let email : Email = new Email ( ) ;
2018-12-19 14:26:41 +01:00
email . subject = this . subjectPrefix + communityName + ": Welcome new manager" ;
2018-12-10 14:25:41 +01:00
email . body = "<div style='font-size:" + this . noteBodySize + "'><p>Welcome to OpenAIRE Connect!</p>"
+ "<p>You are receiving this e-mail as you were assigned as manager of the community <a href='https://beta."
2018-12-12 14:30:07 +01:00
+ communityId + ".openaire.eu/'>" + communityName + "</a> dashboard. "
2018-12-10 14:25:41 +01:00
+ "In order to access the administration section of your community you must first login using one of the available options. "
+ "<br>The administrative rights are associated to the e-mail address, that was used to send you this message."
+ " If you login with an account associated to a different email, please <a href='mailto:helpdesk@openaire.eu'>contact us</a>"
+ " or your colleagues, that already have access to the administration tool, to update your e-mail. <br>"
+ "You can access the administration tool by clicking the \"Manage\" button that will be available in the top right corner of the dashboard."
+ "</p>"
2018-12-12 14:03:12 +01:00
+ this . signature
2020-05-08 17:01:59 +02:00
+ "<p style='font-size:" + this . noteFontSize + "'>" + this . ifYouAreNotResponsible ( mail ) + "<p>"
2018-12-10 14:25:41 +01:00
+ "</div>" ;
email . recipients = newCommunityManagers ;
return email ;
}
2019-12-03 13:50:39 +01:00
public static composeEmailForNewCommunity ( contactForm : any , admins : any ) : Email {
2019-04-10 20:55:17 +02:00
let email : Email = new Email ( ) ;
2020-06-11 19:03:03 +02:00
2020-10-23 20:04:56 +02:00
email . subject = "OpenAIRE - Connect" ;
2019-04-12 10:52:31 +02:00
email . body = "<div style='font-size:" + this . noteBodySize + "'>"
+ "<span><b>Name</b>: " + contactForm . name + "</span><br>"
+ "<span><b>Surname</b>: " + contactForm . surname + "</span><br>"
+ "<span><b>Email</b>: " + contactForm . email + "</span><br>"
+ "<span><b>Affiliation</b>: " + contactForm . affiliation + "</span><br>"
+ "<span><b>Community Name</b>: " + contactForm . community + "</span>"
+ "<p>" + contactForm . message + "</p>"
+ "</div>" ;
2019-04-10 20:55:17 +02:00
email . recipients = admins ;
return email ;
}
2020-03-16 14:09:46 +01:00
2020-06-23 22:50:46 +02:00
public static composeEmailForMonitor ( contactForm : any , admins : any ) : Email {
2020-06-11 19:03:03 +02:00
let email : Email = new Email ( ) ;
2020-10-23 19:46:13 +02:00
email . subject = "OpenAIRE - Monitor" ;
2020-06-11 19:03:03 +02:00
email . body = "<div style='font-size:" + this . noteBodySize + "'>"
+ "<span><b>Name</b>: " + contactForm . name + "</span><br>"
+ "<span><b>Surname</b>: " + contactForm . surname + "</span><br>"
+ "<span><b>Email</b>: " + contactForm . email + "</span><br>"
2020-06-23 22:50:46 +02:00
+ "<span><b>Job Title</b>: " + contactForm . job + "</span><br>"
+ "<span><b>Organization</b>: " + contactForm . organization + " (" + contactForm . organizationType + " )</span>"
2020-06-11 19:03:03 +02:00
+ "<p>" + contactForm . message + "</p>"
+ "</div>" ;
email . recipients = admins ;
return email ;
}
2020-09-14 17:08:34 +02:00
public static composeEmailForUsageCounts ( contactForm : any , admins : any ) : Email {
let email : Email = new Email ( ) ;
2020-10-23 19:46:13 +02:00
email . subject = "OpenAIRE - UsageCounts" ;
2020-09-14 17:08:34 +02:00
email . body = "<div style='font-size:" + this . noteBodySize + "'>"
+ "<span><b>Name</b>: " + contactForm . name + "</span><br>"
+ "<span><b>Email</b>: " + contactForm . email + "</span><br>"
2020-10-09 18:36:09 +02:00
+ "<span><b>Affiliation</b>: " + contactForm . affiliation + "</span><br>"
+ "<span><b>Organization</b>: " + contactForm . organization + "</span>"
+ "<p>" + contactForm . description + "</p>"
+ "</div>" ;
email . recipients = admins ;
return email ;
}
public static composeEmailForGraph ( contactForm : any , admins : any ) : Email {
let email : Email = new Email ( ) ;
2020-10-23 20:04:56 +02:00
email . subject = "OpenAIRE - Research Graph" ;
2020-10-09 18:36:09 +02:00
email . body = "<div style='font-size:" + this . noteBodySize + "'>"
+ "<span><b>Name</b>: " + contactForm . name + "</span><br>"
+ "<span><b>Email</b>: " + contactForm . email + "</span><br>"
2020-09-14 17:08:34 +02:00
+ "<span><b>Affiliation</b>: " + contactForm . affiliation + "</span><br>"
+ "<span><b>Organization</b>: " + contactForm . organization + "</span>"
+ "<p>" + contactForm . description + "</p>"
+ "</div>" ;
email . recipients = admins ;
return email ;
}
2020-03-19 13:26:55 +01:00
public static composeEmailForFeedback ( info : { name : string , url : string , email : string , issues : any [ ] } , recipients : string [ ] ) : Email {
2020-03-19 10:10:42 +01:00
let email : Email = new Email ( ) ;
email . subject = 'Feedback report for ' + info . name ;
email . body = "<div style='font-size:" + this . noteBodySize + "'>"
+ "<p>A user" + ( ( info . email ) ? ( " with email " + info . email ) : "" ) + " has reported the following issue(s) for "
+ "<a href=\'" + info . url + "\'>" + info . name + "</a></p><ul>" ;
info . issues . forEach ( ( issue , index ) = > {
email . body += "<br><li><span><b><u>" + issue . field + "</u>: </b></span>" + issue . report + "</li>" ;
} ) ;
email . body += "</ul></div>" ;
email . recipients = recipients ;
return email ;
}
2020-03-16 14:09:46 +01:00
2020-03-19 13:26:55 +01:00
public static composeEmailForUserAfterFeedback ( recipients : string [ ] ) : Email {
let email : Email = new Email ( ) ;
email . subject = 'Feedback report received' ;
email . body = "<div style='font-size:" + this . noteBodySize + "'>"
+ "<p>This is an automated message to let you know that your feedback has been successfully received. Our graph experts will get back to you as soon as possible.</p><br>"
+ "Thank you for contacting OpenAIRE."
+ "</div>" ;
email . recipients = recipients ;
return email ;
}
2020-05-08 17:01:59 +02:00
public static composeEmailToInformOldManagersForTheNewOnes ( communityName : string , communityId : string , firstVersionOfManagers : any , managers : any , mail : string ) : Email {
2018-12-12 14:03:12 +01:00
let email : Email = new Email ( ) ;
2018-12-10 14:25:41 +01:00
2018-12-19 14:26:41 +01:00
email . subject = this . subjectPrefix + communityName + ": Managers list notification" ;
2018-12-12 14:03:12 +01:00
email . body = "<div style='font-size:" + this . noteBodySize + "'>"
2018-12-10 14:25:41 +01:00
+ "<p>There are updates in the managers list for \"" + communityName + "\" community.<br>"
+ "The list of managers is: " + managers . join ( ', ' ) + "</p>"
2018-12-12 14:03:12 +01:00
+ this . signature
+ "<p style='font-size:" + this . noteFontSize + "'>"
+ this . youAreManagerOfTheCommunity ( communityId , communityName )
2020-05-08 17:01:59 +02:00
+ this . ifYouAreNotResponsible ( mail )
2018-12-10 14:25:41 +01:00
+ "<br>"
2018-12-12 14:03:12 +01:00
+ this . manageNotificationSettings ( communityId )
+ "</p>"
2018-12-10 14:25:41 +01:00
+ "</div>" ;
email . recipients = firstVersionOfManagers ;
2018-12-12 14:30:07 +01:00
2018-12-10 14:25:41 +01:00
return email ;
}
2018-12-13 12:38:29 +01:00
2020-05-08 17:01:59 +02:00
public static composeEmailToInformManagers ( communityName : string , communityId : string , managers : any , subscriberMail : any , adminPortalURL : string ) : Email {
2018-12-13 12:38:29 +01:00
let email : Email = new Email ( ) ;
2018-12-19 14:26:41 +01:00
email . subject = this . subjectPrefix + communityName + ": New subscriber notification" ;
2018-12-13 12:38:29 +01:00
email . body = "<div style='font-size" + this . noteBodySize + "'>"
2019-02-14 10:54:55 +01:00
+ "<p>There is a new subscriber (" + subscriberMail + ") for \"" + communityName + "\" community. Click "
2020-05-08 17:01:59 +02:00
+ "<a href='" + adminPortalURL + "/manage-subscribers?communityId="
2019-02-14 10:54:55 +01:00
+ communityId + "'>here</a> to manage the subscribers list. </p>"
2018-12-13 12:38:29 +01:00
+ this . signature
+ "<p style='font-size:" + this . noteFontSize + "'>"
+ this . youAreManagerOfTheCommunity ( communityId , communityName )
+ "<br>"
+ this . manageNotificationSettings ( communityId )
+ "</p>"
+ "</div>" ;
email . recipients = managers ;
return email ;
}
2018-12-18 13:23:14 +01:00
public static formatEmailBodyForInvitation ( body : Body ) : string {
let fromMessageAndName = "" ;
if ( body . fromName != "" ) {
fromMessageAndName = "<span>" + body . fromMessage + body . fromName + "</span>" ;
}
let formattedEmail = "<div style='font-size:" + this . noteBodySize + "'>"
+ body . paragraphs
+ "<p>" + body . signature + fromMessageAndName + "<br>"
+ this . openaireAddress
+ "</p>"
+ "</div>" ;
return formattedEmail ;
}
2020-05-08 13:10:40 +02:00
// TODO remove this after adding this on admin
2018-12-19 14:26:41 +01:00
public static initializeInvitationsBody ( communityId : string , communityTitle : string , fullname : string ) : Body {
let body : Body = new Body ( ) ;
2020-05-08 13:10:40 +02:00
let defaultMainBody ;
if ( communityId !== 'covid-19' ) {
defaultMainBody = '<p>You are invited to subscribe to <a href="https://beta.' + communityId + '.openaire.eu/">'
+ communityTitle + '</a> dashboard.<br>'
+ 'The purpose of this dashboard is to gather, link & monitor the research results related to your community.</p>'
+ '<p>The community dashboard is part of the <a href="https://connect.openaire.eu/">OpenAIRE-Connect</a> '
+ 'project and currently is in BETA version.'
+ '</p>' ;
} else {
defaultMainBody = '<p>This is a dashboard that gathers, links & monitors research results related COVID-19 (multi-disciplinary) from authoritative OA sources around the world. ' +
'We have a community of experts moderating and curating the content.</p> ' +
'<p>What you can do:</p>' +
'<ul>' +
'<li>navigate in a linked open data space, a contextual discovery</li>' +
'<li>automatically deposit in Zenodo designated communities</li>' +
'<li>link research results among themselves and to projects</li>' +
'<li>join the team of experts to curate/moderate the traffic, mining, links to the data</li>' +
'</ul> ' +
'<p>The community dashboard is part of the<a href="https://connect.openaire.eu/"> OpenAIRE-Connect</a> project.</p>'
}
2018-12-19 14:26:41 +01:00
return body = { fromMessage : ", on behalf of " , fromName : fullname , paragraphs : defaultMainBody , signature : this.closing , note : "" } ;
2018-12-18 13:58:46 +01:00
}
2018-12-19 14:26:41 +01:00
public static initializeInvitationsEmail ( communityTitle : string ) {
let email : Email = new Email ( ) ;
return email = { body : "" , subject : this.subjectPrefix + communityTitle , recipients : [ ] } ;
}
2020-11-19 18:13:27 +01:00
public static composeEmailForMonitorDashboard ( name : string , recipient : string , role : "manager" | "member" ) {
let email : Email = new Email ( ) ;
email . subject = 'OpenAIRE Monitor Dashboard | ' + name ;
email . body = '<p>Dear ((__user__)),</p>' +
'<p>You have been invited to be a ' + role + ' of the OpenAIRE Monitor Dashboard for the ' + name + '.</p>' +
'<p>Click <a href="((__link__))">this URL</a> and use the verification code below to accept the invitation.</p>' +
'<p>The verification code is <b>((__code__))</b>.</p>' +
( role === "manager" ?
'<p>As a manager of the OpenAIRE Monitor Dashboard, you will have access to the administration part of the dashboard, ' +
'where you will be able to customize and manage the profile of the ' + name + '.</p>' :
'<p>As a member of the OpenAIRE Monitor Dashboard, you will have access to the restricted access areas of the profile for the ' + name + '.' ) +
'<p>Please contact us at <a href="mailto:' + properties . helpdeskEmail + '">' + properties . helpdeskEmail +
'</a> if you have any questions or concerns.</p>' +
'<p>Kind Regards<br>The OpenAIRE Team</p>' +
'<p><a href="' + properties . domain + '">OpenAIRE Monitor</a></p>'
email . recipient = recipient ;
return email ;
}
2018-12-10 14:25:41 +01:00
}