b4ea1bac42
When a someone tries to create an account with an email that is already associated with a verified account, send them an email with options to sign in, create an account on another satellite, or reset password. Change-Id: I844144d88b7356bd7064c4840c9441347a5368b0
108 lines
3.5 KiB
Go
108 lines
3.5 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information
|
|
|
|
package consoleql
|
|
|
|
const (
|
|
// ActivationPath is key for path which handles account activation.
|
|
ActivationPath = "activationPath"
|
|
// PasswordRecoveryPath is key for path which handles password recovery.
|
|
PasswordRecoveryPath = "passwordRecoveryPath"
|
|
// CancelPasswordRecoveryPath is key for path which handles let us know sequence.
|
|
CancelPasswordRecoveryPath = "cancelPasswordRecoveryPath"
|
|
// SignInPath is key for sign in server route.
|
|
SignInPath = "signInPath"
|
|
// LetUsKnowURL is key to store let us know URL.
|
|
LetUsKnowURL = "letUsKnowURL"
|
|
// ContactInfoURL is a key to store contact info URL.
|
|
ContactInfoURL = "contactInfoURL"
|
|
// TermsAndConditionsURL is a key to store terms and conditions URL.
|
|
TermsAndConditionsURL = "termsAndConditionsURL"
|
|
)
|
|
|
|
// AccountActivationEmail is mailservice template with activation data.
|
|
type AccountActivationEmail struct {
|
|
Origin string
|
|
ActivationLink string
|
|
ContactInfoURL string
|
|
TermsAndConditionsURL string
|
|
UserName string
|
|
}
|
|
|
|
// Template returns email template name.
|
|
func (*AccountActivationEmail) Template() string { return "Welcome" }
|
|
|
|
// Subject gets email subject.
|
|
func (*AccountActivationEmail) Subject() string { return "Activate your email" }
|
|
|
|
// ForgotPasswordEmail is mailservice template with reset password data.
|
|
type ForgotPasswordEmail struct {
|
|
Origin string
|
|
UserName string
|
|
ResetLink string
|
|
CancelPasswordRecoveryLink string
|
|
LetUsKnowURL string
|
|
ContactInfoURL string
|
|
TermsAndConditionsURL string
|
|
}
|
|
|
|
// Template returns email template name.
|
|
func (*ForgotPasswordEmail) Template() string { return "Forgot" }
|
|
|
|
// Subject gets email subject.
|
|
func (*ForgotPasswordEmail) Subject() string { return "Password recovery request" }
|
|
|
|
// ProjectInvitationEmail is mailservice template for project invitation email.
|
|
type ProjectInvitationEmail struct {
|
|
Origin string
|
|
UserName string
|
|
ProjectName string
|
|
SignInLink string
|
|
LetUsKnowURL string
|
|
ContactInfoURL string
|
|
TermsAndConditionsURL string
|
|
}
|
|
|
|
// Template returns email template name.
|
|
func (*ProjectInvitationEmail) Template() string { return "Invite" }
|
|
|
|
// Subject gets email subject.
|
|
func (email *ProjectInvitationEmail) Subject() string {
|
|
return "You were invited to join the Project " + email.ProjectName
|
|
}
|
|
|
|
// UnknownResetPasswordEmail is mailservice template with unknown password reset data.
|
|
type UnknownResetPasswordEmail struct {
|
|
Satellite string
|
|
Email string
|
|
DoubleCheckLink string
|
|
ResetPasswordLink string
|
|
CreateAnAccountLink string
|
|
SupportTeamLink string
|
|
}
|
|
|
|
// Template returns email template name.
|
|
func (*UnknownResetPasswordEmail) Template() string { return "UnknownReset" }
|
|
|
|
// Subject gets email subject.
|
|
func (*UnknownResetPasswordEmail) Subject() string {
|
|
return "You have requested to reset your password, but..."
|
|
}
|
|
|
|
// AccountAlreadyExistsEmail is mailservice template for email where user tries to create account, but one already exists.
|
|
type AccountAlreadyExistsEmail struct {
|
|
Origin string
|
|
SatelliteName string
|
|
SignInLink string
|
|
ResetPasswordLink string
|
|
CreateAccountLink string
|
|
}
|
|
|
|
// Template returns email template name.
|
|
func (*AccountAlreadyExistsEmail) Template() string { return "AccountAlreadyExists" }
|
|
|
|
// Subject gets email subject.
|
|
func (*AccountAlreadyExistsEmail) Subject() string {
|
|
return "Are you trying to sign in?"
|
|
}
|