From 0384d631d2edb8383d0840940be066d96a5badc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sun, 9 Jan 2022 01:20:34 +0100 Subject: #66: Support for specifying custom templates --- main.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'main.go') diff --git a/main.go b/main.go index d2d0a3c..e4593be 100644 --- a/main.go +++ b/main.go @@ -6,6 +6,7 @@ import ( "os" "github.com/Necoro/feed2imap-go/internal/feed/cache" + "github.com/Necoro/feed2imap-go/internal/feed/template" "github.com/Necoro/feed2imap-go/internal/imap" "github.com/Necoro/feed2imap-go/pkg/config" "github.com/Necoro/feed2imap-go/pkg/log" @@ -62,6 +63,18 @@ func processFeed(cf cache.CachedFeed, client *imap.Client, dryRun bool) { cf.Commit() } +func loadTemplate(path string, tpl template.Template) error { + if path == "" { + return nil + } + + log.Printf("Loading custom %s template from %s", tpl.Name(), path) + if err := tpl.LoadFile(path); err != nil { + return fmt.Errorf("loading %s template from %s: %w", tpl.Name(), path, err) + } + return nil +} + func run() error { flag.Parse() if printVersion { @@ -107,6 +120,15 @@ func run() error { return nil } + if !buildCache { + if err = loadTemplate(cfg.HtmlTemplate, template.Html); err != nil { + return err + } + if err = loadTemplate(cfg.TextTemplate, template.Text); err != nil { + return err + } + } + imapErr := make(chan error, 1) var c *imap.Client if !dryRun && !buildCache { -- cgit v1.2.3