moved enums to enums.go, added SendNotification, Notification structs & enums

This commit is contained in:
Bastian de Byl
2023-04-12 16:56:01 -04:00
parent b93afeec2f
commit 131af89f4f
2 changed files with 41 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
package snipcart package snipcart
type OrderStatus string type OrderStatus string
type NotificationType string
const ( const (
Processed OrderStatus = "Processed" Processed OrderStatus = "Processed"
@@ -10,4 +11,10 @@ const (
Pending = "Pending" Pending = "Pending"
Cancelled = "Cancelled" Cancelled = "Cancelled"
Dispatched = "Dispatched" Dispatched = "Dispatched"
Comment NotificationType = "Comment"
OrderStatusChanged = "OrderStatusChanged"
OrderShipped = "OrderShipped"
TrackingNumber = "TrackingNumber"
Invoice = "Invice"
) )

View File

@@ -98,6 +98,23 @@ type SnipcartTax struct {
Rate float64 `json:"rate"` Rate float64 `json:"rate"`
} }
type SnipcartNotification struct {
Type NotificationType `json:"type"`
DeliveryMethod string `json:"deliveryMethod"`
Message string `json:"message,omitempty"`
}
type SnipcartNotificationResponse struct {
Id string `json:"id"`
Created time.Time `json:"creationDate"`
Type NotificationType `json:"type"`
DeliveryMethod string `json:"deliveryMethod"`
Body string `json:"body"`
Message string `json:"message"`
Subject string `json:"subject"`
SentOn time.Time `json:"sentOn"`
}
func NewClient(snipcartApiKey string) Client { func NewClient(snipcartApiKey string) Client {
return Client{ return Client{
SnipcartKey: snipcartApiKey, SnipcartKey: snipcartApiKey,
@@ -170,7 +187,6 @@ func (s *Client) UpdateOrder(token string, orderUpdate *SnipcartOrderUpdate) (*S
if response.StatusCode < 200 && response.StatusCode >= 300 { if response.StatusCode < 200 && response.StatusCode >= 300 {
return nil, fmt.Errorf("unexpected response received: %s", response.Status) return nil, fmt.Errorf("unexpected response received: %s", response.Status)
} }
fmt.Println(response.Status)
defer response.Body.Close() defer response.Body.Close()
@@ -182,3 +198,20 @@ func (s *Client) UpdateOrder(token string, orderUpdate *SnipcartOrderUpdate) (*S
return &responseOrder, nil return &responseOrder, nil
} }
func (s *Client) SendNotification(token string, notification *SnipcartNotification) (*SnipcartNotificationResponse, error) {
response, err := helper.Post(orderUri+"/"+token+"/notifications", "Basic", s.AuthBase64, notification)
if err != nil {
return nil, err
}
defer response.Body.Close()
var responseNotification SnipcartNotificationResponse
err = json.NewDecoder(response.Body).Decode(&responseNotification)
if err != nil {
return nil, err
}
return &responseNotification, nil
}