forked from jdavid/walkhub-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmailchimp.go
118 lines (101 loc) · 2.82 KB
/
mailchimp.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
// Walkhub
// Copyright (C) 2016 Pronovix
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package walkhub
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"github.com/spf13/viper"
"gitlab.com/tamasd/ab"
"gitlab.com/tamasd/ab/lib/log"
)
var _ ab.EntityWriteEvent = &mailchimpClient{}
type mailchimpClient struct {
token string
listid string
datacenter string
logger *log.Log
}
func createMailchimpClient(v *viper.Viper, logger *log.Log) *mailchimpClient {
token := v.GetString("mailchimp.token")
listid := v.GetString("mailchimp.listid")
datacenter := v.GetString("mailchimp.datacenter")
if token != "" && listid != "" && datacenter != "" {
return &mailchimpClient{
token: token,
listid: listid,
datacenter: datacenter,
logger: logger,
}
}
return nil
}
func (c *mailchimpClient) subscribe(mail string) error {
member := mailchimpMember{
Status: "subscribed",
Mail: mail,
}
buf := bytes.NewBuffer(nil)
if err := json.NewEncoder(buf).Encode(member); err != nil {
return err
}
req, err := http.NewRequest("POST", "https://"+c.datacenter+".api.mailchimp.com/3.0/lists/"+c.listid+"/members", buf)
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/json")
req.SetBasicAuth("walkhub", c.token)
resp, err := http.DefaultClient.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
body, _ := ioutil.ReadAll(resp.Body)
return mailchimpError{
Code: resp.StatusCode,
Message: string(body),
}
}
return nil
}
func (c *mailchimpClient) Before(entityType string, e ab.Entity) {
}
func (c *mailchimpClient) After(entityType string, e ab.Entity, err error) error {
if entityType == "user" && err == nil {
user := e.(*User)
if serr := c.subscribe(user.Mail); serr != nil {
c.logger.User().Println(serr)
if mcerr, ok := serr.(mailchimpError); ok {
c.logger.Trace().Println(mcerr.Message)
}
}
}
return err
}
type mailchimpError struct {
Code int
Message string
}
func (e mailchimpError) Error() string {
return fmt.Sprintf("invalid status code: %d", e.Code)
}
type mailchimpMember struct {
Status string `json:"status"`
Mail string `json:"email_address"`
}