|
| 1 | +// Copyright 2013 Matthew Baird |
| 2 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | +// you may not use this file except in compliance with the License. |
| 4 | +// You may obtain a copy of the License at |
| 5 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 6 | +// Unless required by applicable law or agreed to in writing, software |
| 7 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 8 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 9 | +// See the License for the specific language governing permissions and |
| 10 | +// limitations under the License. |
| 11 | + |
| 12 | +package gochimp |
| 13 | + |
| 14 | +import ( |
| 15 | + "errors" |
| 16 | +) |
| 17 | + |
| 18 | +// see https://mandrillapp.com/api/docs/inbound.JSON.html |
| 19 | +const inbound_domains_endpoint string = "/inbound/domains.json" //List the domains that have been configured for inbound delivery |
| 20 | +const add_domain_endpoint string = "/inbound/add-domain.json" //Add an inbound domain to your account |
| 21 | +const check_domain_endpoint string = "/inbound/check-domain.json" //Check the MX settings for an inbound domain. |
| 22 | +const delete_domain_endpoint string = "/inbound/delete-domain.json" //Delete an inbound domain from the account. |
| 23 | +const routes_endopoint string = "/inbound/routes.json" //List the mailbox routes defined for an inbound domain |
| 24 | +const add_route_endpoint string = "/inbound/add-route.json" //Add a new mailbox route to an inbound domain |
| 25 | +const update_route_endpoint string = "/inbound/update-route.json" //Update the pattern or webhook of an existing inbound mailbox route. |
| 26 | +const delete_route_endpoint string = "/inbound/delete-route.json" //Delete an existing inbound mailbox route |
| 27 | +const send_raw_endpoint string = "/inbound/send-raw.json" //Send a raw MIME message to an inbound hook as if it had been sent over SMTP. |
| 28 | + |
| 29 | +// can error with one of the following: Invalid_Key, ValidationError, GeneralError |
| 30 | +func (a *MandrillAPI) InboundDomainList() ([]InboundDomain, error) { |
| 31 | + var response []InboundDomain |
| 32 | + var params map[string]interface{} = make(map[string]interface{}) |
| 33 | + err := parseMandrillJson(a, inbound_domains_endpoint, params, &response) |
| 34 | + return response, err |
| 35 | +} |
| 36 | + |
| 37 | +// can error with one of the following: Invalid_Key, ValidationError, GeneralError |
| 38 | +func (a *MandrillAPI) InboundDomainAdd(domain string) (InboundDomain, error) { |
| 39 | + return getInboundDomain(a, domain, add_domain_endpoint) |
| 40 | +} |
| 41 | + |
| 42 | +// can error with one of the following: Invalid_Key, Unknown_InboundDomain, ValidationError, GeneralError |
| 43 | +func (a *MandrillAPI) InboundDomainCheck(domain string) (InboundDomain, error) { |
| 44 | + return getInboundDomain(a, domain, check_domain_endpoint) |
| 45 | +} |
| 46 | + |
| 47 | +// can error with one of the following: Invalid_Key, Unknown_InboundDomain, ValidationError, GeneralError |
| 48 | +func (a *MandrillAPI) InboundDomainDelete(domain string) (InboundDomain, error) { |
| 49 | + return getInboundDomain(a, domain, delete_domain_endpoint) |
| 50 | +} |
| 51 | + |
| 52 | +// can error with one of the following: Invalid_Key, Unknown_InboundDomain, ValidationError, GeneralError |
| 53 | +func (a *MandrillAPI) RouteList(domain string) ([]Route, error) { |
| 54 | + var response []Route |
| 55 | + if domain == "" { |
| 56 | + return response, errors.New("domain cannot be blank") |
| 57 | + } |
| 58 | + var params map[string]interface{} = make(map[string]interface{}) |
| 59 | + params["domain"] = domain |
| 60 | + err := parseMandrillJson(a, routes_endopoint, params, &response) |
| 61 | + return response, err |
| 62 | +} |
| 63 | + |
| 64 | +// can error with one of the following: Invalid_Key, Unknown_InboundDomain, ValidationError, GeneralError |
| 65 | +func (a *MandrillAPI) RouteAdd(domain string, pattern string, url string) (Route, error) { |
| 66 | + var response Route |
| 67 | + if domain == "" { |
| 68 | + return response, errors.New("domain cannot be blank") |
| 69 | + } |
| 70 | + if pattern == "" { |
| 71 | + return response, errors.New("pattern cannot be blank") |
| 72 | + } |
| 73 | + if url == "" { |
| 74 | + return response, errors.New("url cannot be blank") |
| 75 | + } |
| 76 | + return getRoute(a, "", domain, pattern, url, add_route_endpoint) |
| 77 | +} |
| 78 | + |
| 79 | +// can error with one of the following: Invalid_Key, Unknown_InboundDomain, ValidationError, GeneralError |
| 80 | +func (a *MandrillAPI) RouteUpdate(id string, domain string, pattern string, url string) (Route, error) { |
| 81 | + var response Route |
| 82 | + if id == "" { |
| 83 | + return response, errors.New("id cannot be blank") |
| 84 | + } |
| 85 | + return getRoute(a, id, domain, pattern, url, update_route_endpoint) |
| 86 | +} |
| 87 | + |
| 88 | +// can error with one of the following: Invalid_Key, Unknown_InboundDomain, ValidationError, GeneralError |
| 89 | +func (a *MandrillAPI) RouteDelete(id string) (Route, error) { |
| 90 | + var response Route |
| 91 | + if id == "" { |
| 92 | + return response, errors.New("id cannot be blank") |
| 93 | + } |
| 94 | + return getRoute(a, id, "", "", "", delete_route_endpoint) |
| 95 | +} |
| 96 | + |
| 97 | +// can error with one of the following: Invalid_Key, ValidationError, GeneralError |
| 98 | +func (a *MandrillAPI) SendRawMIME(raw_message string, to []string, mail_from string, helo string, client_address string) ([]InboundRecipient, error) { |
| 99 | + var response []InboundRecipient |
| 100 | + if raw_message == "" { |
| 101 | + return response, errors.New("raw_message cannot be blank") |
| 102 | + } |
| 103 | + var params map[string]interface{} = make(map[string]interface{}) |
| 104 | + params["raw_message"] = raw_message |
| 105 | + if len(to) > 0 { |
| 106 | + params["to"] = to |
| 107 | + } |
| 108 | + if mail_from != "" { |
| 109 | + params["mail_from"] = mail_from |
| 110 | + } |
| 111 | + if helo != "" { |
| 112 | + params["helo"] = helo |
| 113 | + } |
| 114 | + if client_address != "" { |
| 115 | + params["client_address"] = client_address |
| 116 | + } |
| 117 | + |
| 118 | + err := parseMandrillJson(a, send_raw_endpoint, params, &response) |
| 119 | + return response, err |
| 120 | +} |
| 121 | + |
| 122 | +func getRoute(a *MandrillAPI, id string, domain string, pattern string, url string, endpoint string) (Route, error) { |
| 123 | + var params map[string]interface{} = make(map[string]interface{}) |
| 124 | + var response Route |
| 125 | + if id != "" { |
| 126 | + params["id"] = id |
| 127 | + } |
| 128 | + if domain != "" { |
| 129 | + params["domain"] = domain |
| 130 | + } |
| 131 | + if pattern != "" { |
| 132 | + params["pattern"] = pattern |
| 133 | + } |
| 134 | + if url != "" { |
| 135 | + params["url"] = url |
| 136 | + } |
| 137 | + |
| 138 | + err := parseMandrillJson(a, endpoint, params, &response) |
| 139 | + return response, err |
| 140 | +} |
| 141 | + |
| 142 | +func getInboundDomain(a *MandrillAPI, domain string, endpoint string) (InboundDomain, error) { |
| 143 | + if domain == "" { |
| 144 | + return InboundDomain{}, errors.New("domain cannot be blank") |
| 145 | + } |
| 146 | + var params map[string]interface{} = make(map[string]interface{}) |
| 147 | + params["domain"] = domain |
| 148 | + var response InboundDomain |
| 149 | + err := parseMandrillJson(a, endpoint, params, &response) |
| 150 | + return response, err |
| 151 | +} |
| 152 | + |
| 153 | +type InboundDomain struct { |
| 154 | + Domain string `json:"domain"` |
| 155 | + CreatedAt APITime `json:"created_at"` |
| 156 | + ValidMx bool `json:"valid_mx"` |
| 157 | +} |
| 158 | + |
| 159 | +type Route struct { |
| 160 | + Id string `json:"id"` |
| 161 | + Pattern string `json:"pattern"` |
| 162 | + Url string `json:"url"` |
| 163 | +} |
| 164 | + |
| 165 | +type InboundRecipient struct { |
| 166 | + Email string `json:"email"` |
| 167 | + Pattern string `json:"pattern"` |
| 168 | + Url string `json:"url"` |
| 169 | +} |
0 commit comments