forked from saintpete/twilio-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
media.go
174 lines (163 loc) · 5.04 KB
/
media.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
package twilio
import (
"bytes"
"errors"
"fmt"
"image"
"image/gif"
"image/jpeg"
"image/png"
"io"
"io/ioutil"
"net/http"
"net/http/httputil"
"net/url"
"os"
"strings"
"golang.org/x/net/context"
)
// A MediaService lets you retrieve a message's associated Media.
type MediaService struct {
client *Client
}
func mediaPathPart(messageSid string) string {
return "Messages/" + messageSid + "/Media"
}
type MediaPage struct {
Page
MediaList []*Media `json:"media_list"`
}
type Media struct {
Sid string `json:"sid"`
ContentType string `json:"content_type"`
AccountSid string `json:"account_sid"`
DateCreated TwilioTime `json:"date_created"`
DateUpdated TwilioTime `json:"date_updated"`
ParentSid string `json:"parent_sid"`
URI string `json:"uri"`
}
func (m *MediaService) GetPage(ctx context.Context, messageSid string, data url.Values) (*MediaPage, error) {
mp := new(MediaPage)
err := m.client.ListResource(ctx, mediaPathPart(messageSid), data, mp)
return mp, err
}
// Get returns a Media struct representing a Media instance, or an error.
func (m *MediaService) Get(ctx context.Context, messageSid string, sid string) (*Media, error) {
me := new(Media)
err := m.client.GetResource(ctx, mediaPathPart(messageSid), sid, me)
return me, err
}
// GetURL returns a URL that can be retrieved to download the given image.
func (m *MediaService) GetURL(ctx context.Context, messageSid string, sid string) (*url.URL, error) {
uriEnd := strings.Join([]string{mediaPathPart(messageSid), sid}, "/")
path := m.client.FullPath(uriEnd)
// We want the media, not the .json representation
if strings.HasSuffix(path, ".json") {
path = path[:len(path)-len(".json")]
}
urlStr := m.client.Client.Base + path
count := 0
for {
req, err := http.NewRequest("GET", urlStr, nil)
if err != nil {
return nil, err
}
req = withContext(req, ctx)
req.SetBasicAuth(m.client.AccountSid, m.client.AuthToken)
req.Header.Set("User-Agent", userAgent)
if os.Getenv("DEBUG_HTTP_TRAFFIC") == "true" || os.Getenv("DEBUG_HTTP_REQUEST") == "true" {
b := new(bytes.Buffer)
bits, _ := httputil.DumpRequestOut(req, true)
if len(bits) > 0 && bits[len(bits)-1] != '\n' {
bits = append(bits, '\n')
}
b.Write(bits)
io.Copy(os.Stderr, b)
}
resp, err := MediaClient.Do(req)
if err != nil {
return nil, err
}
if os.Getenv("DEBUG_HTTP_TRAFFIC") == "true" || os.Getenv("DEBUG_HTTP_RESPONSES") == "true" {
b := new(bytes.Buffer)
bits, _ := httputil.DumpResponse(resp, true)
if len(bits) > 0 && bits[len(bits)-1] != '\n' {
bits = append(bits, '\n')
}
b.Write(bits)
io.Copy(os.Stderr, b)
} else {
io.Copy(ioutil.Discard, resp.Body)
}
resp.Body.Close()
// This is brittle because we need to detect/rewrite the S3 URL.
// I don't want to hard code a S3 URL but we have to do some
// substitution.
location := resp.Header.Get("Location")
if location == "" {
return nil, errors.New("twilio: Couldn't follow redirect")
}
u, err := url.Parse(location)
if err != nil {
return nil, err
}
if strings.Contains(u.Host, "amazonaws") && strings.Count(u.Host, ".") == 2 && u.Scheme == "https" {
return u, nil
}
if strings.Contains(u.Host, "media.twiliocdn.com.") && strings.Contains(u.Host, "amazonaws") {
// This is the URL we can use to download the content. The URL that
// Twilio gives us back is insecure and uses HTTP. Rewrite it to
// use the HTTPS path-based URL scheme.
//
// https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingBucket.html
if u.Scheme == "http" {
u.Host = strings.Replace(u.Host, "media.twiliocdn.com.", "", 1)
u.Path = "/media.twiliocdn.com" + u.Path
u.Scheme = "https"
}
return u, nil
}
count++
if count > 5 {
return nil, errors.New("twilio: too many redirects")
}
urlStr = location
}
}
// GetImage downloads a Media object and returns an image.Image. The
// documentation isn't great on what happens - as of October 2016, we make a
// request to the Twilio API, then to media.twiliocdn.com, then to a S3 URL. We
// then download that image and decode it based on the provided content-type.
func (m *MediaService) GetImage(ctx context.Context, messageSid string, sid string) (image.Image, error) {
u, err := m.GetURL(ctx, messageSid, sid)
if err != nil {
return nil, err
}
if u.Scheme == "http" {
return nil, fmt.Errorf("Attempted to download image over insecure URL: %s", u.String())
}
req, err := http.NewRequest("GET", u.String(), nil)
if err != nil {
return nil, err
}
req = withContext(req, ctx)
req.Header.Set("User-Agent", userAgent)
resp, err := MediaClient.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
// https://www.twilio.com/docs/api/rest/accepted-mime-types#supported
ctype := resp.Header.Get("Content-Type")
switch ctype {
case "image/jpeg":
return jpeg.Decode(resp.Body)
case "image/gif":
return gif.Decode(resp.Body)
case "image/png":
return png.Decode(resp.Body)
default:
io.Copy(ioutil.Discard, resp.Body)
return nil, fmt.Errorf("twilio: Unknown content-type %s", ctype)
}
}