This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
sms.go
107 lines (85 loc) · 2.65 KB
/
sms.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
package vonage
import (
"context"
"encoding/json"
"io/ioutil"
"github.com/antihax/optional"
"github.com/vonage/vonage-go-sdk/internal/sms"
)
// SMSClient for working with the SMS API
type SMSClient struct {
Config *sms.Configuration
apiKey string
apiSecret string
}
// NewSMSClient Creates a new SMS Client, supplying an Auth to work with
func NewSMSClient(Auth Auth) *SMSClient {
client := new(SMSClient)
creds := Auth.GetCreds()
client.apiKey = creds[0]
client.apiSecret = creds[1]
// Use a default set of config but make it accessible
client.Config = sms.NewConfiguration()
client.Config.UserAgent = GetUserAgent()
return client
}
// SMSOpts holds all the optional values that can be set when sending an SMS, check the https://developer.nexmo.com/api/sms API reference for more information
type SMSOpts struct {
StatusReportReq bool
Callback string
Type string
ClientRef string
}
type Sms struct {
// The amount of messages in the request
MessageCount string
Messages []sms.Message
}
type SmsErrorResponse struct {
MessageCount string
Messages []SmsError
}
type SmsError struct {
Status string `json:"status"`
ErrorText string `json:"error-text"`
}
// Send an SMS. Give some text to send and the number to send to - there are
// some restrictions on what you can send from, to be safe try using a Vonage
// number associated with your account
func (client *SMSClient) Send(from string, to string, text string, opts SMSOpts) (Sms, SmsErrorResponse, error) {
smsClient := sms.NewAPIClient(client.Config)
smsOpts := sms.SendAnSmsOpts{}
smsOpts.Text = optional.NewString(text)
smsOpts.ApiSecret = optional.NewString(client.apiSecret)
// check through the opts and send whatever was set
if opts.ClientRef != "" {
smsOpts.ClientRef = optional.NewString(opts.ClientRef)
}
if opts.Callback != "" {
smsOpts.Callback = optional.NewString(opts.Callback)
}
if opts.Type != "" {
smsOpts.Type_ = optional.NewString(opts.Type)
}
if opts.StatusReportReq {
smsOpts.StatusReportReq = optional.NewBool(opts.StatusReportReq)
}
ctx := context.Background()
// now send the SMS
result, resp, err := smsClient.DefaultApi.SendAnSms(ctx, "json", client.apiKey, from, to, &smsOpts)
// catch HTTP errors
if err != nil {
return Sms{}, SmsErrorResponse{}, err
}
// now worry about the status code in the response
if result.Messages[0].Status != "0" {
data, _ := ioutil.ReadAll(resp.Body)
var errResp SmsErrorResponse
jsonErr := json.Unmarshal(data, &errResp)
if jsonErr == nil {
return Sms(result), errResp, nil
}
return Sms(result), SmsErrorResponse{}, nil
}
return Sms(result), SmsErrorResponse{}, nil
}