This repository has been archived by the owner on Sep 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 323
/
image.go
106 lines (94 loc) · 3.41 KB
/
image.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
package goshopify
import (
"fmt"
"time"
)
// ImageService is an interface for interacting with the image endpoints
// of the Shopify API.
// See https://help.shopify.com/api/reference/product_image
type ImageService interface {
List(int, interface{}) ([]Image, error)
Count(int, interface{}) (int, error)
Get(int, int, interface{}) (*Image, error)
Create(int, Image) (*Image, error)
Update(int, Image) (*Image, error)
Delete(int, int) error
}
// ImageServiceOp handles communication with the image related methods of
// the Shopify API.
type ImageServiceOp struct {
client *Client
}
// Image represents a Shopify product's image.
type Image struct {
ID int `json:"id"`
ProductID int `json:"product_id"`
Position int `json:"position"`
CreatedAt *time.Time `json:"created_at"`
UpdatedAt *time.Time `json:"updated_at"`
Width int `json:"width"`
Height int `json:"height"`
Src string `json:"src,omitempty"`
Attachment string `json:"attachment,omitempty"`
Filename string `json:"filename,omitempty"`
VariantIds []int `json:"variant_ids"`
}
// ImageResource represents the result form the products/X/images/Y.json endpoint
type ImageResource struct {
Image *Image `json:"image"`
}
// ImagesResource represents the result from the products/X/images.json endpoint
type ImagesResource struct {
Images []Image `json:"images"`
}
// List images
func (s *ImageServiceOp) List(productID int, options interface{}) ([]Image, error) {
path := fmt.Sprintf("%s/%d/images.json", productsBasePath, productID)
resource := new(ImagesResource)
err := s.client.Get(path, resource, options)
return resource.Images, err
}
// Count images
func (s *ImageServiceOp) Count(productID int, options interface{}) (int, error) {
path := fmt.Sprintf("%s/%d/images/count.json", productsBasePath, productID)
return s.client.Count(path, options)
}
// Get individual image
func (s *ImageServiceOp) Get(productID int, imageID int, options interface{}) (*Image, error) {
path := fmt.Sprintf("%s/%d/images/%d.json", productsBasePath, productID, imageID)
resource := new(ImageResource)
err := s.client.Get(path, resource, options)
return resource.Image, err
}
// Create a new image
//
// There are 2 methods of creating an image in Shopify:
// 1. Src
// 2. Filename and Attachment
//
// If both Image.Filename and Image.Attachment are supplied,
// then Image.Src is not needed. And vice versa.
//
// If both Image.Attachment and Image.Src are provided,
// Shopify will take the attachment.
//
// Shopify will accept Image.Attachment without Image.Filename.
func (s *ImageServiceOp) Create(productID int, image Image) (*Image, error) {
path := fmt.Sprintf("%s/%d/images.json", productsBasePath, productID)
wrappedData := ImageResource{Image: &image}
resource := new(ImageResource)
err := s.client.Post(path, wrappedData, resource)
return resource.Image, err
}
// Update an existing image
func (s *ImageServiceOp) Update(productID int, image Image) (*Image, error) {
path := fmt.Sprintf("%s/%d/images/%d.json", productsBasePath, productID, image.ID)
wrappedData := ImageResource{Image: &image}
resource := new(ImageResource)
err := s.client.Put(path, wrappedData, resource)
return resource.Image, err
}
// Delete an existing image
func (s *ImageServiceOp) Delete(productID int, imageID int) error {
return s.client.Delete(fmt.Sprintf("%s/%d/images/%d.json", productsBasePath, productID, imageID))
}