Skip to content

Commit 0ca300c

Browse files
committed
Added email service
Signed-off-by: Vishal Rana <[email protected]>
1 parent 42262f8 commit 0ca300c

File tree

7 files changed

+188
-8
lines changed

7 files changed

+188
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
.DS_Store
12
vendor

_fixture/logo.svg

+67
Loading

cube.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
type (
16-
// Cube defines the Cube service.
16+
// Cube defines the LabStack cube service.
1717
Cube struct {
1818
sling *sling.Sling
1919
requests []*Request
@@ -103,7 +103,7 @@ func (c *Cube) dispatch() (err error) {
103103
return
104104
}
105105

106-
// Cube returns the Cube service.
106+
// Cube returns the cube service.
107107
func (c *Client) Cube() (cube *Cube) {
108108
cube = &Cube{
109109
sling: c.sling.Path("/cube"),

email.go

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
package labstack
2+
3+
import (
4+
"fmt"
5+
"net/http"
6+
7+
"github.com/dghubble/sling"
8+
"github.com/labstack/gommon/log"
9+
)
10+
11+
type (
12+
// Email defines the LabStack email service.
13+
Email struct {
14+
sling *sling.Sling
15+
logger *log.Logger
16+
}
17+
18+
// Message defines the email message.
19+
Message struct {
20+
ID string `json:"id,omitempty"`
21+
From string `json:"from,omitempty"`
22+
To string `json:"to,omitempty"`
23+
Subject string `json:"subject,omitempty"`
24+
Body string `json:"body,omitempty"`
25+
Inlines []*File `json:"inlines,omitempty"`
26+
Attachments []*File `json:"attachments,omitempty"`
27+
}
28+
29+
// File defines the email message attachment/inline.
30+
File struct {
31+
// File name
32+
Name string `json:"name"`
33+
34+
// File type
35+
Type string `json:"type"`
36+
37+
// Base64 encoded file content
38+
Content string `json:"content"`
39+
}
40+
)
41+
42+
// Email returns the email service.
43+
func (c *Client) Email() *Email {
44+
return &Email{
45+
sling: c.sling.Path("/email"),
46+
logger: c.logger,
47+
}
48+
}
49+
50+
// Send sends the email message.
51+
func (e *Email) Send(m *Message) (err error) {
52+
res, err := e.sling.Post("").BodyJSON(m).Receive(nil, nil)
53+
if err != nil {
54+
return
55+
}
56+
if res.StatusCode != http.StatusCreated {
57+
return fmt.Errorf("email: error sending email, status=%d, message=%v", res.StatusCode, err)
58+
}
59+
return
60+
}

email_test.go

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
package labstack
2+
3+
import (
4+
"encoding/base64"
5+
"encoding/json"
6+
"net/http"
7+
"net/http/httptest"
8+
"testing"
9+
10+
"io/ioutil"
11+
12+
"github.com/stretchr/testify/assert"
13+
)
14+
15+
func TestEmail(t *testing.T) {
16+
data, _ := ioutil.ReadFile("_fixture/logo.svg")
17+
file := &File{
18+
Name: "logo",
19+
Type: "image/svg+xml",
20+
Content: base64.StdEncoding.EncodeToString(data),
21+
}
22+
msg := &Message{
23+
From: "Jack",
24+
25+
Subject: "Hello",
26+
Body: "How are you doing?",
27+
Attachments: []*File{
28+
file,
29+
},
30+
Inlines: []*File{
31+
file,
32+
},
33+
}
34+
handler := func(w http.ResponseWriter, r *http.Request) {
35+
m := new(Message)
36+
if err := json.NewDecoder(r.Body).Decode(m); err == nil {
37+
if assert.EqualValues(t, msg, m) {
38+
if assert.Len(t, m.Attachments, 1) && assert.Len(t, m.Inlines, 1) {
39+
if assert.EqualValues(t, m.Attachments[0], file) && assert.EqualValues(t, m.Inlines[0], file) {
40+
w.WriteHeader(http.StatusCreated)
41+
return
42+
}
43+
}
44+
}
45+
}
46+
w.WriteHeader(http.StatusInternalServerError)
47+
}
48+
ts := httptest.NewServer(http.HandlerFunc(handler))
49+
defer ts.Close()
50+
apiURL = ts.URL
51+
e := NewClient("").Email()
52+
assert.NoError(t, e.Send(msg))
53+
}

logging.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
type (
14-
// Logging defines the Logging service.
14+
// Logging defines the LabStack logging service.
1515
Logging struct {
1616
sling *sling.Sling
1717
logs []*Log
@@ -90,7 +90,7 @@ func (l *Logging) dispatch() (err error) {
9090
return
9191
}
9292

93-
// Logging returns the Logging service.
93+
// Logging returns the logging service.
9494
func (c *Client) Logging() (logging *Logging) {
9595
logging = &Logging{
9696
sling: c.sling.Path("/logging"),
@@ -137,7 +137,7 @@ func (l *Logging) Log(level, format string, args ...interface{}) {
137137
}
138138
message := fmt.Sprintf(format, args...)
139139
log := &Log{
140-
Time: time.Now().Format(RFC3339Milli),
140+
Time: time.Now().Format(rfc3339Milli),
141141
Module: l.Module,
142142
Level: level,
143143
Message: message,

util.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ import (
66
"strings"
77
)
88

9-
// Time layouts
109
const (
11-
RFC3339Milli = "2006-01-02T15:04:05.000Z07:00"
12-
RFC3339Micro = "2006-01-02T15:04:05.000000Z07:00"
10+
rfc3339Milli = "2006-01-02T15:04:05.000Z07:00"
11+
rfc3339Micro = "2006-01-02T15:04:05.000000Z07:00"
1312
)
1413

1514
func realIP(r *http.Request) string {

0 commit comments

Comments
 (0)