forked from bold-commerce/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
asset.go
89 lines (77 loc) · 2.68 KB
/
asset.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
package goshopify
import (
"fmt"
"time"
)
const assetsBasePath = "themes"
// AssetService is an interface for interfacing with the asset endpoints
// of the Shopify API.
// See: https://help.shopify.com/api/reference/asset
type AssetService interface {
List(int64, interface{}) ([]Asset, error)
Get(int64, string) (*Asset, error)
Update(int64, Asset) (*Asset, error)
Delete(int64, string) error
}
// AssetServiceOp handles communication with the asset related methods of
// the Shopify API.
type AssetServiceOp struct {
client *Client
}
// Asset represents a Shopify asset
type Asset struct {
Attachment string `json:"attachment"`
ContentType string `json:"content_type"`
Key string `json:"key"`
PublicURL string `json:"public_url"`
Size int `json:"size"`
SourceKey string `json:"source_key"`
Src string `json:"src"`
ThemeID int64 `json:"theme_id"`
Value string `json:"value"`
CreatedAt *time.Time `json:"created_at"`
UpdatedAt *time.Time `json:"updated_at"`
}
// AssetResource is the result from the themes/x/assets.json?asset[key]= endpoint
type AssetResource struct {
Asset *Asset `json:"asset"`
}
// AssetsResource is the result from the themes/x/assets.json endpoint
type AssetsResource struct {
Assets []Asset `json:"assets"`
}
type assetGetOptions struct {
Key string `url:"asset[key]"`
ThemeID int64 `url:"theme_id"`
}
// List the metadata for all assets in the given theme
func (s *AssetServiceOp) List(themeID int64, options interface{}) ([]Asset, error) {
path := fmt.Sprintf("%s/%s/%d/assets.json", globalApiPathPrefix, assetsBasePath, themeID)
resource := new(AssetsResource)
err := s.client.Get(path, resource, options)
return resource.Assets, err
}
// Get an asset by key from the given theme
func (s *AssetServiceOp) Get(themeID int64, key string) (*Asset, error) {
path := fmt.Sprintf("%s/%s/%d/assets.json", globalApiPathPrefix, assetsBasePath, themeID)
options := assetGetOptions{
Key: key,
ThemeID: themeID,
}
resource := new(AssetResource)
err := s.client.Get(path, resource, options)
return resource.Asset, err
}
// Update an asset
func (s *AssetServiceOp) Update(themeID int64, asset Asset) (*Asset, error) {
path := fmt.Sprintf("%s/%s/%d/assets.json", globalApiPathPrefix, assetsBasePath, themeID)
wrappedData := AssetResource{Asset: &asset}
resource := new(AssetResource)
err := s.client.Put(path, wrappedData, resource)
return resource.Asset, err
}
// Delete an asset
func (s *AssetServiceOp) Delete(themeID int64, key string) error {
path := fmt.Sprintf("%s/%s/%d/assets.json?asset[key]=%s", globalApiPathPrefix, assetsBasePath, themeID, key)
return s.client.Delete(path)
}