This repository has been archived by the owner on Feb 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
index.js
229 lines (200 loc) · 4.81 KB
/
index.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
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
/**
* Module dependencies.
*/
import requestHandler from 'wpcom-xhr-request';
import debugModule from 'debug';
/**
* Local module dependencies.
*/
import Batch from './lib/batch';
import Domain from './lib/domain';
import Domains from './lib/domains';
import Marketing from './lib/marketing';
import Me from './lib/me';
import Pinghub from './lib/util/pinghub';
import Plans from './lib/plans';
import Request from './lib/util/request';
import Site from './lib/site';
import Users from './lib/users';
import sendRequest from './lib/util/send-request';
/**
* Local module constants
*/
const debug = debugModule( 'wpcom' );
const DEFAULT_ASYNC_TIMEOUT = 30000;
/**
* XMLHttpRequest (and CORS) API access method.
*
* API authentication is done via an (optional) access `token`,
* which needs to be retrieved via OAuth.
*
* Request Handler is optional and XHR is defined as default.
*
* @param {String} [token] - OAuth API access token
* @param {Function} [reqHandler] - function Request Handler
* @return {WPCOM} wpcom instance
*/
export default function WPCOM( token, reqHandler ) {
if ( ! ( this instanceof WPCOM ) ) {
return new WPCOM( token, reqHandler );
}
// `token` is optional
if ( 'function' === typeof token ) {
reqHandler = token;
token = null;
}
if ( token ) {
debug( 'Token defined: %s…', token.substring( 0, 6 ) );
this.token = token;
}
// Set default request handler
if ( ! reqHandler ) {
debug( 'No request handler. Adding default XHR request handler' );
this.request = function( params, fn ) {
params = params || {};
// token is optional
if ( token ) {
params.authToken = token;
}
return requestHandler( params, fn );
};
} else {
this.request = reqHandler;
}
// Add Req instance
this.req = new Request( this );
// Add Pinghub instance
this.pinghub = new Pinghub( this );
// Default api version;
this.apiVersion = '1.1';
}
/**
* Return `Marketing` object instance
*
* @return {Marketing} Marketing instance
*/
WPCOM.prototype.marketing = function() {
return new Marketing( this );
};
/**
* Return `Me` object instance
*
* @return {Me} Me instance
*/
WPCOM.prototype.me = function() {
return new Me( this );
};
/**
* Return `Domains` object instance
*
* @return {Domains} Domains instance
*/
WPCOM.prototype.domains = function() {
return new Domains( this );
};
/**
* Return `Domain` object instance
*
* @param {String} domainId - domain identifier
* @return {Domain} Domain instance
*/
WPCOM.prototype.domain = function( domainId ) {
return new Domain( domainId, this );
};
/**
* Return `Site` object instance
*
* @param {String} id - site identifier
* @return {Site} Site instance
*/
WPCOM.prototype.site = function( id ) {
return new Site( id, this );
};
/**
* Return `Users` object instance
*
* @return {Users} Users instance
*/
WPCOM.prototype.users = function() {
return new Users( this );
};
/**
* Return `Plans` object instance
*
* @return {Plans} Plans instance
*/
WPCOM.prototype.plans = function() {
return new Plans( this );
};
/**
* Return `Batch` object instance
*
* @return {Batch} Batch instance
*/
WPCOM.prototype.batch = function() {
return new Batch( this );
};
/**
* List Freshly Pressed Posts
*
* @param {Object} [query] - query object
* @param {Function} fn - callback function
* @return {Function} request handler
*/
WPCOM.prototype.freshlyPressed = function( query, fn ) {
return this.req.get( '/freshly-pressed', query, fn );
};
/**
* Expose send-request
* @TODO: use `this.req` instead of this method
*/
WPCOM.prototype.sendRequest = function( params, query, body, fn ) {
var msg = 'WARN! Don use `sendRequest() anymore. Use `this.req` method.';
if ( console && console.warn ) {
console.warn( msg );
} else {
console.log( msg );
}
return sendRequest.call( this, params, query, body, fn );
};
/**
* Re-export all the class types.
*/
WPCOM.Batch = Batch;
WPCOM.Domain = Domain;
WPCOM.Domains = Domains;
WPCOM.Marketing = Marketing;
WPCOM.Me = Me;
WPCOM.Pinghub = Pinghub;
WPCOM.Plans = Plans;
WPCOM.Request = Request;
WPCOM.Site = Site;
WPCOM.Users = Users;
if ( ! Promise.prototype.timeout ) {
/**
* Returns a new promise with a deadline
*
* After the timeout interval, the promise will
* reject. If the actual promise settles before
* the deadline, the timer is cancelled.
*
* @param {number} delay how many ms to wait
* @return {Promise} promise
*/
Promise.prototype.timeout = function( delay = DEFAULT_ASYNC_TIMEOUT ) {
let cancelTimeout, timer, timeout;
timeout = new Promise( ( resolve, reject ) => {
timer = setTimeout( () => {
reject( new Error( 'Action timed out while waiting for response.' ) );
}, delay );
} );
cancelTimeout = () => {
clearTimeout( timer );
return this;
};
return Promise.race( [
this.then( cancelTimeout ).catch( cancelTimeout ),
timeout
] );
};
}