mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
df016be29e
* fix(notification): incorrect date header format The date header in the email envelopes was incorrectly formatted missing a space between the `Date:` header and the value of this header. This also refactors the notification templates system allowing people to manually override the envelope itself. * test: fix tests and linting issues * fix: misc issues * refactor: misc refactoring * docs: add example for envelope with message id * refactor: organize smtp notifier * refactor: move subject interpolation * refactor: include additional placeholders * docs: fix missing link * docs: gravity * fix: rcpt to command * refactor: remove mid * refactor: apply suggestions Co-authored-by: Amir Zarrinkafsh <nightah@me.com> * refactor: include pid Co-authored-by: Amir Zarrinkafsh <nightah@me.com>
80 lines
2.5 KiB
Go
80 lines
2.5 KiB
Go
package templates
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
// New creates a new templates' provider.
|
|
func New(config Config) (provider *Provider, err error) {
|
|
provider = &Provider{
|
|
config: config,
|
|
}
|
|
|
|
if err = provider.load(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return provider, nil
|
|
}
|
|
|
|
// Provider of templates.
|
|
type Provider struct {
|
|
config Config
|
|
templates Templates
|
|
}
|
|
|
|
// ExecuteEmailEnvelope writes the envelope template to the given io.Writer.
|
|
func (p Provider) ExecuteEmailEnvelope(wr io.Writer, data EmailEnvelopeValues) (err error) {
|
|
return p.templates.notification.envelope.Execute(wr, data)
|
|
}
|
|
|
|
// ExecuteEmailPasswordResetTemplate writes the password reset template to the given io.Writer.
|
|
func (p Provider) ExecuteEmailPasswordResetTemplate(wr io.Writer, data EmailPasswordResetValues, format Format) (err error) {
|
|
return p.templates.notification.passwordReset.Get(format).Execute(wr, data)
|
|
}
|
|
|
|
// ExecuteEmailIdentityVerificationTemplate writes the identity verification template to the given io.Writer.
|
|
func (p Provider) ExecuteEmailIdentityVerificationTemplate(wr io.Writer, data EmailIdentityVerificationValues, format Format) (err error) {
|
|
return p.templates.notification.identityVerification.Get(format).Execute(wr, data)
|
|
}
|
|
|
|
func (p *Provider) load() (err error) {
|
|
var errs []error
|
|
|
|
if p.templates.notification.envelope, err = loadTemplate(TemplateNameEmailEnvelope, TemplateCategoryNotifications, p.config.EmailTemplatesPath); err != nil {
|
|
errs = append(errs, err)
|
|
}
|
|
|
|
if p.templates.notification.identityVerification.txt, err = loadTemplate(TemplateNameEmailIdentityVerificationTXT, TemplateCategoryNotifications, p.config.EmailTemplatesPath); err != nil {
|
|
errs = append(errs, err)
|
|
}
|
|
|
|
if p.templates.notification.identityVerification.html, err = loadTemplate(TemplateNameEmailIdentityVerificationHTML, TemplateCategoryNotifications, p.config.EmailTemplatesPath); err != nil {
|
|
errs = append(errs, err)
|
|
}
|
|
|
|
if p.templates.notification.passwordReset.txt, err = loadTemplate(TemplateNameEmailPasswordResetTXT, TemplateCategoryNotifications, p.config.EmailTemplatesPath); err != nil {
|
|
errs = append(errs, err)
|
|
}
|
|
|
|
if p.templates.notification.passwordReset.html, err = loadTemplate(TemplateNameEmailPasswordResetHTML, TemplateCategoryNotifications, p.config.EmailTemplatesPath); err != nil {
|
|
errs = append(errs, err)
|
|
}
|
|
|
|
if len(errs) == 0 {
|
|
return nil
|
|
}
|
|
|
|
for i, e := range errs {
|
|
if i == 0 {
|
|
err = e
|
|
continue
|
|
}
|
|
|
|
err = fmt.Errorf("%v, %w", err, e)
|
|
}
|
|
|
|
return fmt.Errorf("one or more errors occurred loading templates: %w", err)
|
|
}
|