-
Notifications
You must be signed in to change notification settings - Fork 167
/
Copy pathsend.go
206 lines (174 loc) · 4.9 KB
/
send.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
package main
import (
"bufio"
"bytes"
"context"
"fmt"
"path/filepath"
"strings"
"github.com/aymerick/douceur/inliner"
"github.com/mailgun/mailgun-go/v4"
"golang.org/x/xerrors"
"github.com/brandur/modulir"
"github.com/brandur/modulir/modules/mace"
"github.com/brandur/sorg/modules/scommon"
"github.com/brandur/sorg/modules/snewsletter"
)
//////////////////////////////////////////////////////////////////////////////
//
//
//
// Public
//
//
//
//////////////////////////////////////////////////////////////////////////////
func sendNewsletter(c *modulir.Context, source string, live, staging bool) {
ctx := context.Background()
if err := renderAndSend(ctx, c, source, live, staging); err != nil {
scommon.ExitWithError(err)
}
}
//////////////////////////////////////////////////////////////////////////////
//
//
//
// Types
//
//
//
//////////////////////////////////////////////////////////////////////////////
// Contains some metadata for a newsletter around email addresses, paths, etc.
type newsletterInfo struct {
ContentDir string
ContentDirDrafts string
Layout string
MailAddress string
MailAddressStaging string
TitleFormat string
View string
}
//////////////////////////////////////////////////////////////////////////////
//
//
//
// Private
//
//
//
//////////////////////////////////////////////////////////////////////////////
const (
mailDomain = "list.brandur.org"
replyToAddress = "[email protected]"
testAddress = replyToAddress
)
var (
// Metadata for the Nanoglyph newsletter.
newsletterInfoNanoglyphs = &newsletterInfo{
ContentDir: "./content/nanoglyphs",
ContentDirDrafts: "./content/nanoglyphs-drafts",
Layout: scommon.NanoglyphsLayout,
MailAddress: "nanoglyph@" + mailDomain,
MailAddressStaging: "nanoglyph-staging@" + mailDomain,
TitleFormat: "ⓝ Nanoglyph %s — %s",
View: scommon.ViewsDir + "/nanoglyphs/show.ace",
}
// Metadata for the Passages & Glass newsletter.
newsletterInfoPassages = &newsletterInfo{
ContentDir: "./content/passages",
ContentDirDrafts: "./content/passages-drafts",
Layout: scommon.PassagesLayout,
MailAddress: "passages@" + mailDomain,
MailAddressStaging: "passages-staging@" + mailDomain,
TitleFormat: "Passages & Glass %s — %s",
View: scommon.ViewsDir + "/passages/show.ace",
}
// All infos combined into a slice.
newsletterInfos = []*newsletterInfo{
newsletterInfoNanoglyphs,
newsletterInfoPassages,
}
)
// Matches a known newsletter based on the path to the source file. The second
// return argument is true if the source is a draft.
func matchNewsletter(source string) (*newsletterInfo, bool) {
source = filepath.Clean(source)
for _, info := range newsletterInfos {
{
dir := filepath.Clean(info.ContentDirDrafts)
if strings.HasPrefix(source, dir) {
return info, true
}
}
{
dir := filepath.Clean(info.ContentDir)
if strings.HasPrefix(source, dir) {
return info, false
}
}
}
return nil, false
}
func renderAndSend(ctx context.Context, c *modulir.Context, source string, live, staging bool) error {
if conf.MailgunAPIKey == "" {
return xerrors.Errorf(
"MAILGUN_API_KEY must be configured in the environment")
}
newsletterInfo, draft := matchNewsletter(source)
if newsletterInfo == nil {
return xerrors.Errorf("'%s' does not appear to be a known newsletter (check its path)",
source)
}
if live && draft {
return xerrors.Errorf("refusing to send a draft newsletter to a live list")
}
dir := filepath.Dir(source)
name := filepath.Base(source)
issue, err := snewsletter.Render(c, dir, name, conf.AbsoluteURL, true)
if err != nil {
return err
}
locals := map[string]interface{}{
"InEmail": true,
"Issue": issue,
"Title": issue.Title,
"URLPrefix": conf.AbsoluteURL,
}
var b bytes.Buffer
writer := bufio.NewWriter(&b)
if err := mace.Render(c, newsletterInfo.Layout, newsletterInfo.View,
writer, getAceOptions(false), locals); err != nil {
return err
}
writer.Flush()
html, err := inliner.Inline(b.String())
if err != nil {
return xerrors.Errorf("error inlining CSS: %w", err)
}
var recipient string
switch {
case live:
recipient = newsletterInfo.MailAddress
case staging:
recipient = newsletterInfo.MailAddressStaging
default:
recipient = testAddress
}
mg := mailgun.NewMailgun(mailDomain, conf.MailgunAPIKey)
fromAddress := "Brandur <" + newsletterInfo.MailAddress + ">"
subject := fmt.Sprintf(newsletterInfo.TitleFormat,
issue.Number, issue.Title)
message := mg.NewMessage(
fromAddress,
subject,
issue.ContentRaw,
recipient)
message.SetReplyTo(replyToAddress)
message.SetHtml(html)
resp, _, err := mg.Send(ctx, message)
if err != nil {
return xerrors.Errorf("error sending email: %w", err)
}
c.Log.Infof(`Sent to: %s (response: "%s")`, recipient, resp)
return nil
}