forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle.js
67 lines (53 loc) · 1.47 KB
/
article.js
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
'use strict';
const assign = require('lodash/assign');
const qs = require('qs');
const baseChild = require('../mixins/base-child');
const base = require('../mixins/base');
/**
* Creates an Article instance.
*
* @param {Shopify} shopify Reference to the Shopify instance
* @constructor
* @public
*/
function Article(shopify) {
this.shopify = shopify;
this.parentName = 'blogs';
this.name = 'articles';
this.key = 'article';
}
assign(Article.prototype, baseChild);
/**
* Gets a list of all the authors of articles.
*
* @return {Promise} Promise that resolves with the result
* @public
*/
Article.prototype.authors = function authors() {
const key = 'authors';
const url = base.buildUrl.call(this, key);
return this.shopify.request(url, 'GET', key);
};
/**
* Gets a list of all the tags of articles.
*
* @param {Number} [blogId] Blog ID
* @param {Object} [params] Query parameters
* @return {Promise} Promise that resolves with the result
* @public
*/
Article.prototype.tags = function tags(blogId, params) {
let pathname = '/admin';
if (!params && typeof blogId === 'object') {
params = blogId;
blogId = undefined;
}
if (blogId || blogId === 0) pathname += `/blogs/${blogId}`;
pathname += `/${this.name}/tags.json`;
const url = { pathname };
if (params) {
url.search = '?' + qs.stringify(params, { arrayFormat: 'brackets' });
}
return this.shopify.request(assign(url, this.shopify.baseUrl), 'GET', 'tags');
};
module.exports = Article;