-
Notifications
You must be signed in to change notification settings - Fork 43
/
forceng.js
549 lines (458 loc) · 15.3 KB
/
forceng.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
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
/**
* ForceNG - REST toolkit for Salesforce.com
* Author: Christophe Coenraets @ccoenraets
* Version: 0.6.1
*/
angular.module('forceng', [])
.factory('force', function ($rootScope, $q, $window, $http) {
// The login URL for the OAuth process
// To override default, pass loginURL in init(props)
var loginURL = 'https://login.salesforce.com',
// The Connected App client Id. Default app id provided - Not for production use.
// This application supports http://localhost:8200/oauthcallback.html as a valid callback URL
// To override default, pass appId in init(props)
appId = '3MVG9fMtCkV6eLheIEZplMqWfnGlf3Y.BcWdOf1qytXo9zxgbsrUbS.ExHTgUPJeb3jZeT8NYhc.hMyznKU92',
// The force.com API version to use.
// To override default, pass apiVersion in init(props)
apiVersion = 'v33.0',
// Keep track of OAuth data (access_token, refresh_token, and instance_url)
oauth,
// By default we store fbtoken in sessionStorage. This can be overridden in init()
tokenStore = {},
// if page URL is http://localhost:3000/myapp/index.html, context is /myapp
context = window.location.pathname.substring(0, window.location.pathname.lastIndexOf("/")),
// if page URL is http://localhost:3000/myapp/index.html, serverURL is http://localhost:3000
serverURL = window.location.protocol + '//' + window.location.hostname + (window.location.port ? ':' + window.location.port : ''),
// if page URL is http://localhost:3000/myapp/index.html, baseURL is http://localhost:3000/myapp
baseURL = serverURL + context,
// Only required when using REST APIs in an app hosted on your own server to avoid cross domain policy issues
// To override default, pass proxyURL in init(props)
proxyURL = baseURL,
// if page URL is http://localhost:3000/myapp/index.html, oauthCallbackURL is http://localhost:3000/myapp/oauthcallback.html
// To override default, pass oauthCallbackURL in init(props)
oauthCallbackURL = baseURL + '/oauthcallback.html',
// Because the OAuth login spans multiple processes, we need to keep the login success and error handlers as a variables
// inside the module instead of keeping them local within the login function.
deferredLogin,
// Reference to the Salesforce OAuth plugin
oauthPlugin,
// Whether or not to use a CORS proxy. Defaults to false if app running in Cordova or in a VF page
// Can be overriden in init()
useProxy = (window.cordova || window.SfdcApp) ? false : true;
/*
* Determines the request base URL.
*/
function getRequestBaseURL() {
var url;
if (useProxy) {
url = proxyURL;
} else if (oauth.instance_url) {
url = oauth.instance_url;
} else {
url = serverURL;
}
// dev friendly API: Remove trailing '/' if any so url + path concat always works
if (url.slice(-1) === '/') {
url = url.slice(0, -1);
}
return url;
}
function parseQueryString(queryString) {
var qs = decodeURIComponent(queryString),
obj = {},
params = qs.split('&');
params.forEach(function (param) {
var splitter = param.split('=');
obj[splitter[0]] = splitter[1];
});
return obj;
}
function toQueryString(obj) {
var parts = [],
i;
for (i in obj) {
if (obj.hasOwnProperty(i)) {
parts.push(encodeURIComponent(i) + "=" + encodeURIComponent(obj[i]));
}
}
return parts.join("&");
}
function refreshTokenWithPlugin(deferred) {
oauthPlugin.authenticate(
function (response) {
oauth.access_token = response.accessToken;
tokenStore.forceOAuth = JSON.stringify(oauth);
deferred.resolve();
},
function () {
console.log('Error refreshing oauth access token using the oauth plugin');
deferred.reject();
});
}
function refreshTokenWithHTTPRequest(deferred) {
var params = {
'grant_type': 'refresh_token',
'refresh_token': oauth.refresh_token,
'client_id': appId
},
headers = {},
url = useProxy ? proxyURL : loginURL;
// dev friendly API: Remove trailing '/' if any so url + path concat always works
if (url.slice(-1) === '/') {
url = url.slice(0, -1);
}
url = url + '/services/oauth2/token?' + toQueryString(params);
if (!useProxy) {
headers["Target-URL"] = loginURL;
}
$http({
headers: headers,
method: 'POST',
url: url,
params: params
})
.success(function (data, status, headers, config) {
console.log('Token refreshed');
oauth.access_token = data.access_token;
tokenStore.forceOAuth = JSON.stringify(oauth);
deferred.resolve();
})
.error(function (data, status, headers, config) {
console.log('Error while trying to refresh token');
deferred.reject();
});
}
function refreshToken() {
var deferred = $q.defer();
if (oauthPlugin) {
refreshTokenWithPlugin(deferred);
} else {
refreshTokenWithHTTPRequest(deferred);
}
return deferred.promise;
}
/**
* Initialize ForceNG
* @param params
* appId (optional)
* loginURL (optional)
* proxyURL (optional)
* oauthCallbackURL (optional)
* apiVersion (optional)
* accessToken (optional)
* instanceURL (optional)
* refreshToken (optional)
*/
function init(params) {
if (params) {
appId = params.appId || appId;
apiVersion = params.apiVersion || apiVersion;
loginURL = params.loginURL || loginURL;
oauthCallbackURL = params.oauthCallbackURL || oauthCallbackURL;
proxyURL = params.proxyURL || proxyURL;
useProxy = params.useProxy === undefined ? useProxy : params.useProxy;
if (params.accessToken) {
if (!oauth) oauth = {};
oauth.access_token = params.accessToken;
}
if (params.instanceURL) {
if (!oauth) oauth = {};
oauth.instance_url = params.instanceURL;
}
if (params.refreshToken) {
if (!oauth) oauth = {};
oauth.refresh_token = params.refreshToken;
}
}
console.log("useProxy: " + useProxy);
}
/**
* Discard the OAuth access_token. Use this function to test the refresh token workflow.
*/
function discardToken() {
delete oauth.access_token;
tokenStore.forceOAuth = JSON.stringify(oauth);
}
/**
* Called internally either by oauthcallback.html (when the app is running the browser)
* @param url - The oauthCallbackURL called by Salesforce at the end of the OAuth workflow. Includes the access_token in the querystring
*/
function oauthCallback(url) {
// Parse the OAuth data received from Facebook
var queryString,
obj;
if (url.indexOf("access_token=") > 0) {
queryString = url.substr(url.indexOf('#') + 1);
obj = parseQueryString(queryString);
oauth = obj;
tokenStore['forceOAuth'] = JSON.stringify(oauth);
if (deferredLogin) deferredLogin.resolve();
} else if (url.indexOf("error=") > 0) {
queryString = decodeURIComponent(url.substring(url.indexOf('?') + 1));
obj = parseQueryString(queryString);
if (deferredLogin) deferredLogin.reject(obj);
} else {
if (deferredLogin) deferredLogin.reject({status: 'access_denied'});
}
}
/**
* Login to Salesforce using OAuth. If running in a Browser, the OAuth workflow happens in a a popup window.
*/
function login() {
deferredLogin = $q.defer();
if (window.cordova) {
loginWithPlugin();
} else {
loginWithBrowser();
}
return deferredLogin.promise;
}
function loginWithPlugin() {
document.addEventListener("deviceready", function () {
oauthPlugin = cordova.require("com.salesforce.plugin.oauth");
if (!oauthPlugin) {
console.error('Salesforce Mobile SDK OAuth plugin not available');
if (deferredLogin) deferredLogin.reject({status: 'Salesforce Mobile SDK OAuth plugin not available'});
return;
}
oauthPlugin.getAuthCredentials(
function (creds) {
// Initialize ForceJS
init({accessToken: creds.accessToken, instanceURL: creds.instanceUrl, refreshToken: creds.refreshToken});
if (deferredLogin) deferredLogin.resolve();
},
function (error) {
console.log(error);
if (deferredLogin) deferredLogin.reject(error);
}
);
}, false);
}
function loginWithBrowser() {
console.log('loginURL: ' + loginURL);
console.log('oauthCallbackURL: ' + oauthCallbackURL);
var loginWindowURL = loginURL + '/services/oauth2/authorize?client_id=' + appId + '&redirect_uri=' +
oauthCallbackURL + '&response_type=token';
window.open(loginWindowURL, '_blank', 'location=no');
}
/**
* Gets the user's ID (if logged in)
* @returns {string} | undefined
*/
function getUserId() {
return (typeof(oauth) !== 'undefined') ? oauth.id.split('/').pop() : undefined;
}
/**
* Check the login status
* @returns {boolean}
*/
function isAuthenticated() {
return (oauth && oauth.access_token) ? true : false;
}
/**
* Lets you make any Salesforce REST API request.
* @param obj - Request configuration object. Can include:
* method: HTTP method: GET, POST, etc. Optional - Default is 'GET'
* path: path in to the Salesforce endpoint - Required
* params: queryString parameters as a map - Optional
* data: JSON object to send in the request body - Optional
*/
function request(obj) {
var method = obj.method || 'GET',
headers = {},
url = getRequestBaseURL(),
deferred = $q.defer();
if (!oauth || (!oauth.access_token && !oauth.refresh_token)) {
deferred.reject('No access token. Login and try again.');
return deferred.promise;
}
// dev friendly API: Add leading '/' if missing so url + path concat always works
if (obj.path.charAt(0) !== '/') {
obj.path = '/' + obj.path;
}
url = url + obj.path;
headers["Authorization"] = "Bearer " + oauth.access_token;
if (obj.contentType) {
headers["Content-Type"] = obj.contentType;
}
if (useProxy) {
headers["Target-URL"] = oauth.instance_url;
}
$http({
headers: headers,
method: method,
url: url,
params: obj.params,
data: obj.data
})
.success(function (data, status, headers, config) {
deferred.resolve(data);
})
.error(function (data, status, headers, config) {
if (status === 401 && oauth.refresh_token) {
refreshToken()
.success(function () {
// Try again with the new token
request(obj);
})
.error(function () {
console.error(data);
deferred.reject(data);
});
} else {
console.error(data);
deferred.reject(data);
}
});
return deferred.promise;
}
/**
* Execute SOQL query
* @param soql
* @returns {*}
*/
function query(soql) {
return request({
path: '/services/data/' + apiVersion + '/query',
params: {q: soql}
});
}
/**
* Retrieve a record based on its Id
* @param objectName
* @param id
* @param fields
* @returns {*}
*/
function retrieve(objectName, id, fields) {
return request({
path: '/services/data/' + apiVersion + '/sobjects/' + objectName + '/' + id,
params: fields ? {fields: fields} : undefined
});
}
/**
* Create a record
* @param objectName
* @param data
* @returns {*}
*/
function create(objectName, data) {
return request({
method: 'POST',
contentType: 'application/json',
path: '/services/data/' + apiVersion + '/sobjects/' + objectName + '/',
data: data
});
}
/**
* Update a record
* @param objectName
* @param data
* @returns {*}
*/
function update(objectName, data) {
var id = data.Id,
fields = angular.copy(data);
delete fields.attributes;
delete fields.Id;
return request({
method: 'POST',
contentType: 'application/json',
path: '/services/data/' + apiVersion + '/sobjects/' + objectName + '/' + id,
params: {'_HttpMethod': 'PATCH'},
data: fields
});
}
/**
* Delete a record
* @param objectName
* @param id
* @returns {*}
*/
function del(objectName, id) {
return request({
method: 'DELETE',
path: '/services/data/' + apiVersion + '/sobjects/' + objectName + '/' + id
});
}
/**
* Upsert a record
* @param objectName
* @param externalIdField
* @param externalId
* @param data
* @returns {*}
*/
function upsert(objectName, externalIdField, externalId, data) {
return request({
method: 'PATCH',
contentType: 'application/json',
path: '/services/data/' + apiVersion + '/sobjects/' + objectName + '/' + externalIdField + '/' + externalId,
data: data
});
}
/**
* Convenience function to invoke APEX REST endpoints
* @param pathOrParams
* @param successHandler
* @param errorHandler
*/
function apexrest(pathOrParams) {
var params;
if (pathOrParams.substring) {
params = {path: pathOrParams};
} else {
params = pathOrParams;
if (params.path.charAt(0) !== "/") {
params.path = "/" + params.path;
}
if (params.path.substr(0, 18) !== "/services/apexrest") {
params.path = "/services/apexrest" + params.path;
}
}
return request(params);
}
/**
* Convenience function to invoke the Chatter API
* @param params
* @param successHandler
* @param errorHandler
*/
function chatter(params) {
var base = "/services/data/" + apiVersion + "/chatter";
if (!params || !params.path) {
errorHandler("You must specify a path for the request");
return;
}
if (params.path.charAt(0) !== "/") {
params.path = "/" + params.path;
}
params.path = base + params.path;
return request(params);
}
// The public API
return {
init: init,
login: login,
getUserId: getUserId,
isAuthenticated: isAuthenticated,
request: request,
query: query,
create: create,
update: update,
del: del,
upsert: upsert,
retrieve: retrieve,
apexrest: apexrest,
chatter: chatter,
discardToken: discardToken,
oauthCallback: oauthCallback
};
});
// Global function called back by the OAuth login dialog
function oauthCallback(url) {
var injector = angular.element(document.body).injector();
injector.invoke(function (force) {
force.oauthCallback(url);
});
}