forked from getconversio/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 256
/
articles.go
137 lines (119 loc) · 5.07 KB
/
articles.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package goshopify
import (
"context"
"fmt"
"time"
)
const articlesBasePath = "articles"
// The ArticlesService allows you to create, publish, and edit articles on a shop's blog
// See: https://shopify.dev/docs/api/admin-rest/stable/resources/article
type ArticlesService interface {
List(context.Context, uint64, interface{}) ([]Article, error)
Create(context.Context, uint64, Article) (*Article, error)
Get(context.Context, uint64, uint64) (*Article, error)
Update(context.Context, uint64, uint64, Article) (*Article, error)
Delete(context.Context, uint64, uint64) error
Count(context.Context, uint64, interface{}) (int, error)
ListTags(context.Context, interface{}) ([]string, error)
ListBlogTags(context.Context, uint64, interface{}) ([]string, error)
}
type ArticleResource struct {
Article *Article `json:"article"`
}
type ArticlesResource struct {
Articles []Article `json:"articles"`
}
// ArticlesServiceOp handles communication with the articles related methods of
// the Shopify API.
type ArticlesServiceOp struct {
client *Client
}
type ArticleTagsResource struct {
Tags []string `json:"tags,omitempty"`
}
type ArticleImage struct {
CreatedAt *time.Time `json:"created_at,omitempty"`
Alt string `json:"alt,omitempty"`
Width int `json:"width,omitempty"`
Height int `json:"height,omitempty"`
Src string `json:"src,omitempty"`
}
type MetaFields struct {
Key string `json:"key,omitempty"`
Value string `json:"value,omitempty"`
Type string `json:"type,omitempty"`
Namespace string `json:"namespace,omitempty"`
}
type Article struct {
Author string `json:"author,omitempty"`
BlogId uint64 `json:"blog_id,omitempty"`
BodyHtml string `json:"body_html,omitempty"`
Id uint64 `json:"id,omitempty"`
Handle string `json:"handle,omitempty"`
Image *ArticleImage `json:"image,omitempty"`
Metafields *MetaFields `json:"metafields"`
Published bool `json:"published,omitempty"`
SummaryHtml string `json:"summary_html,omitempty"`
Tags string `json:"tags,omitempty"`
Title string `json:"title,omitempty"`
UpdatedAt time.Time `json:"updated_at,omitempty"`
UserId int `json:"user_id,omitempty"`
PublishedAt *time.Time `json:"published_at,omitempty"`
CreatedAt *time.Time `json:"created_at,omitempty"`
}
// List all the articles in a blog.
func (s *ArticlesServiceOp) List(ctx context.Context, blogId uint64, options interface{}) ([]Article, error) {
path := fmt.Sprintf("%s/%d/%s.json", blogsBasePath, blogId, articlesBasePath)
resource := new(ArticlesResource)
err := s.client.Get(ctx, path, resource, options)
return resource.Articles, err
}
// Create a article in a blog.
func (s *ArticlesServiceOp) Create(ctx context.Context, blogId uint64, article Article) (*Article, error) {
path := fmt.Sprintf("%s/%d/%s.json", blogsBasePath, blogId, articlesBasePath)
body := ArticleResource{
Article: &article,
}
resource := new(ArticleResource)
err := s.client.Post(ctx, path, body, resource)
return resource.Article, err
}
// Get an article by blog id and article id.
func (s *ArticlesServiceOp) Get(ctx context.Context, blogId uint64, articleId uint64) (*Article, error) {
path := fmt.Sprintf("%s/%d/%s/%d.json", blogsBasePath, blogId, articlesBasePath, articleId)
resource := new(ArticleResource)
err := s.client.Get(ctx, path, resource, nil)
return resource.Article, err
}
// Update an article in a blog.
func (s *ArticlesServiceOp) Update(ctx context.Context, blogId uint64, articleId uint64, article Article) (*Article, error) {
path := fmt.Sprintf("%s/%d/%s/%d.json", blogsBasePath, blogId, articlesBasePath, articleId)
wrappedData := ArticleResource{Article: &article}
resource := new(ArticleResource)
err := s.client.Put(ctx, path, wrappedData, resource)
return resource.Article, err
}
// Delete an article in a blog.
func (s *ArticlesServiceOp) Delete(ctx context.Context, blogId uint64, articleId uint64) error {
path := fmt.Sprintf("%s/%d/%s/%d.json", blogsBasePath, blogId, articlesBasePath, articleId)
return s.client.Delete(ctx, path)
}
// ListTags Get all tags from all articles.
func (s *ArticlesServiceOp) ListTags(ctx context.Context, options interface{}) ([]string, error) {
path := fmt.Sprintf("%s/tags.json", articlesBasePath)
articleTags := new(ArticleTagsResource)
err := s.client.Get(ctx, path, &articleTags, options)
return articleTags.Tags, err
}
// Count Articles from a Blog.
func (s *ArticlesServiceOp) Count(ctx context.Context, blogId uint64, options interface{}) (int, error) {
path := fmt.Sprintf("%s/%d/%s/count.json", blogsBasePath, blogId, articlesBasePath)
return s.client.Count(ctx, path, options)
}
// ListBlogTags Get all tags from all articles in a blog.
func (s *ArticlesServiceOp) ListBlogTags(ctx context.Context, blogId uint64, options interface{}) ([]string, error) {
path := fmt.Sprintf("%s/%d/%s/tags.json", blogsBasePath, blogId, articlesBasePath)
articleTags := new(ArticleTagsResource)
err := s.client.Get(ctx, path, &articleTags, options)
return articleTags.Tags, err
}