-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathmediumClient.js
More file actions
420 lines (372 loc) · 10 KB
/
mediumClient.js
File metadata and controls
420 lines (372 loc) · 10 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
// Copright 2015 A Medium Corporation
var https = require('https')
var qs = require('querystring')
var url = require('url')
var util = require('util')
var DEFAULT_ERROR_CODE = -1
var DEFAULT_TIMEOUT_MS = 5000
/**
* Valid scope options.
* @enum {string}
*/
var Scope = {
BASIC_PROFILE: 'basicProfile',
LIST_PUBLICATIONS: 'listPublications',
PUBLISH_POST: 'publishPost'
}
/**
* The publish status when creating a post.
* @enum {string}
*/
var PostPublishStatus = {
DRAFT: 'draft',
UNLISTED: 'unlisted',
PUBLIC: 'public'
}
/**
* The content format to use when creating a post.
* @enum {string}
*/
var PostContentFormat = {
HTML: 'html',
MARKDOWN: 'markdown'
}
/**
* The license to use when creating a post.
* @enum {string}
*/
var PostLicense = {
ALL_RIGHTS_RESERVED: 'all-rights-reserved',
CC_40_BY: 'cc-40-by',
CC_40_BY_ND: 'cc-40-by-nd',
CC_40_BY_SA: 'cc-40-by-sa',
CC_40_BY_NC: 'cc-40-by-nc',
CC_40_BY_NC_ND: 'cc-40-by-nc-nd',
CC_40_BY_NC_SA: 'cc-40-by-nc-sa',
CC_40_ZERO: 'cc-40-zero',
PUBLIC_DOMAIN: 'public-domain'
}
/**
* An error with a code.
*
* @param {string} message
* @param {number} code
* @constructor
*/
function MediumError(message, code) {
this.message = message
this.code = code
}
util.inherits(MediumError, Error)
/**
* The core client.
*
* @param {{
* clientId: string,
* clientSecret: string
* }} options
* @constructor
*/
function MediumClient(options) {
this._enforce(options, ['clientId', 'clientSecret'])
this._clientId = options.clientId
this._clientSecret = options.clientSecret
this._accessToken = ""
}
/**
* Sets an access token on the client used for making requests.
*
* @param {string} accessToken
* @return {MediumClient}
*/
MediumClient.prototype.setAccessToken = function (accessToken) {
this._accessToken = accessToken
return this
}
/**
* Builds a URL at which you may request authorization from the user.
*
* @param {string} state
* @param {string} redirectUrl
* @param {Array.<Scope>} requestedScope
* @return {string}
*/
MediumClient.prototype.getAuthorizationUrl = function (state, redirectUrl, requestedScope) {
return url.format({
protocol: 'https',
host: 'medium.com',
pathname: '/m/oauth/authorize',
query: {
client_id: this._clientId,
scope: requestedScope.join(','),
response_type: 'code',
state: state,
redirect_uri: redirectUrl
}
})
}
/**
* Exchanges an authorization code for an access token and a refresh token.
*
* @param {string} code
* @param {string} redirectUrl
* @param {NodeCallback} callback
*/
MediumClient.prototype.exchangeAuthorizationCode = function (code, redirectUrl, callback) {
this._acquireAccessToken({
code: code,
client_id: this._clientId,
client_secret: this._clientSecret,
grant_type: 'authorization_code',
redirect_uri: redirectUrl
}, callback)
}
/**
* Exchanges a refresh token for an access token and a refresh token.
*
* @param {string} refreshToken
* @param {NodeCallback} callback
*/
MediumClient.prototype.exchangeRefreshToken = function (refreshToken, callback) {
this._acquireAccessToken({
refresh_token: refreshToken,
client_id: this._clientId,
client_secret: this._clientSecret,
grant_type: 'refresh_token'
}, callback)
}
/**
* Returns the details of the user associated with the current
* access token.
*
* Requires the current access token to have the basicProfile scope.
*
* @param {NodeCallback} callback
*/
MediumClient.prototype.getUser = function (callback) {
this._makeRequest({
method: 'GET',
path: '/v1/me'
}, callback)
}
/**
* Returns the publications related to the current user. Notice that
* the userId needs to be passed in as an option. It can be acquired
* with a call to getUser().
*
* Requires the current access token to have the
* listPublications scope.
*
* @param {{
* userId: string
* }} options
* @param {NodeCallback} callback
*/
MediumClient.prototype.getPublicationsForUser = function (options, callback) {
this._enforce(options, ['userId'])
this._makeRequest({
method: 'GET',
path: '/v1/users/' + options.userId + '/publications'
}, callback)
}
/**
* Returns the contributors for a chosen publication. The publication is identified
* by the publication ID included in the options argument. IDs for publications
* can be acquired by getUsersPublications.
*
* Requires the current access token to have the basicProfile scope.
*
* @param {{
* publicationId: string
* }} options
* @param {NodeCallback} callback
*/
MediumClient.prototype.getContributorsForPublication = function (options, callback) {
this._enforce(options, ['publicationId'])
this._makeRequest({
method: 'GET',
path: '/v1/publications/' + options.publicationId + '/contributors'
}, callback)
}
/**
* Creates a post on Medium.
*
* Requires the current access token to have the publishPost scope.
*
* @param {{
* userId: string,
* title: string,
* contentFormat: PostContentFormat,
* content: string,
* tags: Array.<string>,
* canonicalUrl: string,
* publishedAt: string,
* publishStatus: PostPublishStatus,
* license: PostLicense,
* notifyFollowers: bool
* }} options
* @param {NodeCallback} callback
*/
MediumClient.prototype.createPost = function (options, callback) {
this._enforce(options, ['userId'])
this._makeRequest({
method: 'POST',
path: '/v1/users/' + options.userId + '/posts',
data: {
title: options.title,
content: options.content,
contentFormat: options.contentFormat,
tags: options.tags,
canonicalUrl: options.canonicalUrl,
publishedAt: options.publishedAt,
publishStatus: options.publishStatus,
license: options.license,
notifyFollowers: options.notifyFollowers
}
}, callback)
}
/**
* Creates a post on Medium and places it under specified publication.
* Please refer to the API documentation for rules around publishing in
* a publication: https://github.com/Medium/medium-api-docs
*
* Requires the current access token to have the publishPost scope.
*
* @param {{
* userId: string,
* publicationId: string,
* title: string,
* contentFormat: PostContentFormat,
* content: string,
* tags: Array.<string>,
* canonicalUrl: string,
* publishedAt: string,
* publishStatus: PostPublishStatus,
* license: PostLicense,
* notifyFollowers: bool
* }} options
* @param {NodeCallback} callback
*/
MediumClient.prototype.createPostInPublication = function (options, callback) {
this._enforce(options, ['publicationId'])
this._makeRequest({
method: 'POST',
path: '/v1/publications/' + options.publicationId + '/posts',
data: {
title: options.title,
content: options.content,
contentFormat: options.contentFormat,
tags: options.tags,
canonicalUrl: options.canonicalUrl,
publishedAt: options.publishedAt,
publishStatus: options.publishStatus,
license: options.license,
notifyFollowers: options.notifyFollowers
}
}, callback)
}
/**
* Acquires an access token for the Medium API.
*
* Sets the access token on the client on success.
*
* @param {Object} params
* @param {NodeCallback} callback
*/
MediumClient.prototype._acquireAccessToken = function (params, callback) {
this._makeRequest({
method: 'POST',
path: '/v1/tokens',
contentType: 'application/x-www-form-urlencoded',
data: qs.stringify(params)
}, function (err, data) {
if (!err) {
this._accessToken = data.access_token
}
callback(err, data)
}.bind(this))
}
/**
* Enforces that given options object (first param) defines
* all keys requested (second param). Raises an error if any
* is missing.
*
* @param {Object} options
* @param {keys} requiredKeys
*/
MediumClient.prototype._enforce = function (options, requiredKeys) {
if (!options) {
throw new MediumError('Parameters for this call are undefined', DEFAULT_ERROR_CODE)
}
requiredKeys.forEach(function (requiredKey) {
if (!options[requiredKey]) throw new MediumError('Missing required parameter "' + requiredKey + '"', DEFAULT_ERROR_CODE)
})
}
/**
* Makes a request to the Medium API.
*
* @param {Object} options
* @param {NodeCallback} callback
*/
MediumClient.prototype._makeRequest = function (options, callback) {
var requestParams = {
host: 'api.medium.com',
port: 443,
method: options.method,
path: options.path
}
var req = https.request(requestParams, function (res) {
var body = []
res.setEncoding('utf-8')
res.on('data', function (data) {
body.push(data)
})
res.on('end', function () {
var payload
var responseText = body.join('')
try {
payload = JSON.parse(responseText)
} catch (err) {
callback(new MediumError('Failed to parse response', DEFAULT_ERROR_CODE), null)
return
}
var statusCode = res.statusCode
var statusType = Math.floor(res.statusCode / 100)
if (statusType == 4 || statusType == 5) {
var err = payload.errors[0]
callback(new MediumError(err.message, err.code), null)
} else if (statusType == 2) {
callback(null, payload.data || payload)
} else {
callback(new MediumError('Unexpected response', DEFAULT_ERROR_CODE), null)
}
})
}).on('error', function (err) {
callback(new MediumError(err.message, DEFAULT_ERROR_CODE), null)
})
req.setHeader('Content-Type', options.contentType || 'application/json')
req.setHeader('Authorization', 'Bearer ' + this._accessToken)
req.setHeader('Accept', 'application/json')
req.setHeader('Accept-Charset', 'utf-8')
req.setTimeout(DEFAULT_TIMEOUT_MS, function () {
// Aborting a request triggers the 'error' event.
req.abort()
})
if (options.data) {
var data = options.data
if (typeof data == 'object') {
data = JSON.stringify(data)
}
req.write(data)
}
req.end()
}
// Exports
module.exports = {
MediumClient: MediumClient,
MediumError: MediumError,
Scope: Scope,
PostPublishStatus: PostPublishStatus,
PostLicense: PostLicense,
PostContentFormat: PostContentFormat
}