Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
131af89f4f | ||
|
|
b93afeec2f | ||
|
|
bc56b4d16a | ||
|
|
b08b64f5b2 | ||
|
|
ad93704f41 | ||
|
|
b97ee3132b | ||
|
|
cfdde462f4 | ||
|
|
e039b583e2 | ||
|
|
26571a41fa | ||
|
|
559a100e90 | ||
|
|
6ff851823e |
@@ -1,6 +1,7 @@
|
||||
package snipcart
|
||||
|
||||
type OrderStatus string
|
||||
type NotificationType string
|
||||
|
||||
const (
|
||||
Processed OrderStatus = "Processed"
|
||||
@@ -10,4 +11,10 @@ const (
|
||||
Pending = "Pending"
|
||||
Cancelled = "Cancelled"
|
||||
Dispatched = "Dispatched"
|
||||
|
||||
Comment NotificationType = "Comment"
|
||||
OrderStatusChanged = "OrderStatusChanged"
|
||||
OrderShipped = "OrderShipped"
|
||||
TrackingNumber = "TrackingNumber"
|
||||
Invoice = "Invice"
|
||||
)
|
||||
@@ -5,6 +5,7 @@ import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
helper "github.com/debyltech/go-helpers/json"
|
||||
"github.com/skip2/go-qrcode"
|
||||
@@ -48,25 +49,31 @@ type SnipcartItem struct {
|
||||
|
||||
type SnipcartOrder struct {
|
||||
Token string `json:"token"`
|
||||
Created time.Time `json:"creationDate"`
|
||||
Modified time.Time `json:"modificationDate"`
|
||||
Invoice string `json:"invoiceNumber"`
|
||||
Subtotal float64 `json:"subtotal,omitempty"`
|
||||
Currency string `json:"currency,omitempty"`
|
||||
Total float64 `json:"grandTotal,omitempty"`
|
||||
Status string `json:"status"`
|
||||
TotalWeight float64 `json:"totalWeight"`
|
||||
Name string `json:"shippingAddressName"`
|
||||
Company string `json:"shippingAddressCompanyName"`
|
||||
Address1 string `json:"shippingAddressAddress1"`
|
||||
Address2 string `json:"shippingAddressAddress2"`
|
||||
City string `json:"shippingAddressCity"`
|
||||
Province string `json:"shippingAddressProvince"`
|
||||
Country string `json:"shippingAddressCountry"`
|
||||
PostalCode string `json:"shippingAddressPostalCode"`
|
||||
ShippingAddress SnipcartShippingAddress `json:"shippingAddress,omitempty"`
|
||||
Name string `json:"shippingAddressName,omitempty"`
|
||||
Company string `json:"shippingAddressCompanyName,omitempty"`
|
||||
Address1 string `json:"shippingAddressAddress1,omitempty"`
|
||||
Address2 string `json:"shippingAddressAddress2,omitempty"`
|
||||
City string `json:"shippingAddressCity,omitempty"`
|
||||
Province string `json:"shippingAddressProvince,omitempty"`
|
||||
Country string `json:"shippingAddressCountry,omitempty"`
|
||||
PostalCode string `json:"shippingAddressPostalCode,omitempty"`
|
||||
Phone string `json:"shippingAddressPhone,omitempty"`
|
||||
Email string `json:"email,omitempty"`
|
||||
TrackingNumber string `json:"trackingNumber"`
|
||||
TrackingUrl string `json:"trackingUrl"`
|
||||
ShippingCost float64 `json:"shippingFees"`
|
||||
ShippingProvider string `json:"shippingProvider,omitempty"`
|
||||
ShippingMethod string `json:"shippingMethod,omitempty"`
|
||||
ShippingRateId string `json:"shippingRateUserDefinedId,omitempty"`
|
||||
Items []SnipcartItem `json:"items"`
|
||||
Metadata any `json:"metadata"`
|
||||
}
|
||||
@@ -84,6 +91,30 @@ type SnipcartOrders struct {
|
||||
Items []SnipcartOrder
|
||||
}
|
||||
|
||||
type SnipcartTax struct {
|
||||
Name string `json:"name"`
|
||||
Amount float64 `json:"amount"`
|
||||
NumberForInvoice string `json:"numberForInvoice"`
|
||||
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 {
|
||||
return Client{
|
||||
SnipcartKey: snipcartApiKey,
|
||||
@@ -156,7 +187,6 @@ func (s *Client) UpdateOrder(token string, orderUpdate *SnipcartOrderUpdate) (*S
|
||||
if response.StatusCode < 200 && response.StatusCode >= 300 {
|
||||
return nil, fmt.Errorf("unexpected response received: %s", response.Status)
|
||||
}
|
||||
fmt.Println(response.Status)
|
||||
|
||||
defer response.Body.Close()
|
||||
|
||||
@@ -168,3 +198,20 @@ func (s *Client) UpdateOrder(token string, orderUpdate *SnipcartOrderUpdate) (*S
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
@@ -11,13 +11,11 @@ type SnipcartShippingAddress struct {
|
||||
City string `json:"city"`
|
||||
Country string `json:"country"`
|
||||
PostalCode string `json:"postalCode"`
|
||||
State string `json:"province"`
|
||||
Province string `json:"province"`
|
||||
Phone string `json:"phone"`
|
||||
VatNumber string `json:"vatNumber,omitempty"`
|
||||
}
|
||||
|
||||
type SnipcartOrderEventContent struct {
|
||||
Token string `json:"token"`
|
||||
Items []SnipcartItem `json:"items"`
|
||||
ShippingAddress SnipcartShippingAddress `json:"shippingAddress"`
|
||||
type SnipcartWebhookTaxResponse struct {
|
||||
Taxes []SnipcartTax `json:"taxes"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user