forked from ccoenraets/forceng
-
Notifications
You must be signed in to change notification settings - Fork 8
/
forceng.js
735 lines (618 loc) · 21.7 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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
/**
* 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 = 'v39.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,
// 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,
deferredLogout,
// Reference to the Salesforce OAuth plugin
oauthPlugin,
// Reference to the Salesforce Network plugin
networkPlugin,
// Flag for isVisualforce
visualforce = false,
// 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 || baseURL;
} else if (oauth && 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
})
.then(function (data, status, headers, config) {
console.log('Token refreshed');
oauth.access_token = data.access_token;
tokenStore.forceOAuth = JSON.stringify(oauth);
deferred.resolve();
},
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) {
// To make sure salesforce is there or not
if(typeof (Visualforce) != "undefined"){
visualforce = true;
}
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;
}else if(params.instanceUrl) {
if (!oauth) oauth = {};
oauth.instance_url = params.instanceUrl;
}else if(params.instance_url) {
if (!oauth) oauth = {};
oauth.instance_url = params.instance_url;
}
if(!(oauth && oauth.instance_url)) {
if (!oauth) oauth = {};
// location.hostname can be of the form 'abc.na1.visual.force.com',
// 'na1.salesforce.com' or 'abc.my.salesforce.com' (custom domains).
// Split on '.', and take the [1] or [0] element as appropriate
var elements = location.hostname.split("."),
instance = null;
if (elements.length === 4 && elements[1] === 'my') {
instance = elements[0] + '.' + elements[1];
} else if (elements.length === 3) {
instance = elements[0];
} else {
instance = elements[1];
}
oauth.instance_url = "https://" + instance + ".salesforce.com";
}
if (params.refreshToken) {
if (!oauth) oauth = {};
oauth.refresh_token = params.refreshToken;
}
// imitating similar approach by forcetk to handle apex rest inside org
if (proxyURL === undefined || proxyURL === null) {
if (location.protocol === 'file:' || location.protocol === 'ms-appx:') {
// In PhoneGap
proxyURL = null;
} else {
// In Visualforce - still need proxyUrl for Apex REST methods
proxyURL = "https://" + location.hostname
+ location.pathname.replace(/apex\/\w+/, "").replace(/\/$/, "")
+ "/services/proxy";
}
}
}
console.log("useProxy: " + useProxy);
}
function getOAuth(){
return oauth;
}
/**
* 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(oauth);
} 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");
networkPlugin = cordova.require("com.salesforce.plugin.network");
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(creds);
},
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');
}
function logout(){
deferredLogout = $q.defer();
if (window.cordova) {
logoutWithPlugin();
} else {
logoutWithBrowser();
}
return deferredLogout.promise;
}
function logoutWithPlugin(){
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;
}
//logout method doesn't support callbacks.
oauthPlugin.logout();
if (deferredLogout) deferredLogout.resolve();
}, false);
}
function logoutWithBrowser(){
if (deferredLogout) deferredLogout.resolve();
}
/**
* Gets the user's ID (if logged in)
* @returns {string} | undefined
*/
function getUserId() {
//oauth.id could be undefined. it will throw error.
if(typeof(oauth) !== 'undefined') {
if(oauth.id) {
return oauth.id.split('/').pop();
}
}
return 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) {
// NB: networkPlugin will be defined only if login was done through plugin and container is using Mobile SDK 5.0 or above
// turn off CordovaNetwork request, because file:// and CORS issue in iOS10.
if (false && networkPlugin) {
return requestWithPlugin(obj);
} else {
return requestWithBrowser(obj);
}
}
/**
* @param path: full path or path relative to end point - required
* @param endPoint: undefined or endpoint - optional
* @return object with {endPoint:XX, path:relativePathToXX}
*
* For instance for undefined, '/services/data' => {endPoint:'/services/data', path:'/'}
* undefined, '/services/apex/abc' => {endPoint:'/services/apex', path:'/abc'}
* '/services/data, '/versions' => {endPoint:'/services/data', path:'/versions'}
*/
function computeEndPointIfMissing(endPoint, path) {
if (endPoint !== undefined) {
return {endPoint:endPoint, path:path};
}
else {
var parts = path.split('/').filter(function(s) { return s !== ""; });
if (parts.length >= 2) {
return {endPoint: '/' + parts.slice(0,2).join('/'), path: '/' + parts.slice(2).join('/')};
}
else {
return {endPoint: '', path:path};
}
}
}
function requestWithPlugin(obj) {
var deferred = $q.defer();
var obj2 = computeEndPointIfMissing(obj.endPoint, obj.path);
networkPlugin.sendRequest(obj2.endPoint, obj2.path, function(data){
//success
deferred.resolve(data);
}, function(error){
//failure
deferred.reject(error);
}, obj.method, obj.data || obj.params, obj.headerParams);
return deferred.promise;
}
function requestWithBrowser(obj) {
var method = obj.method || 'GET',
headers = {},
deferred = $q.defer();
if(!useProxy && (!oauth || (!oauth.access_token && !oauth.refresh_token))) {
deferred.reject('No access token. Login and try again.');
return deferred.promise;
}
if (obj.path.indexOf('https://') === 0) {
url = obj.path;
} else {
// dev friendly API: Add leading '/' if missing so url + path concat always works
if (obj.path.charAt(0) !== '/') {
obj.path = '/' + obj.path;
}
url = getRequestBaseURL() + obj.path;
}
if(oauth && oauth.access_token){
headers["Authorization"] = "Bearer " + oauth.access_token;
}
if (obj.contentType) {
headers["Content-Type"] = obj.contentType;
}
if (useProxy && oauth && oauth.instance_url) {
headers["Target-URL"] = oauth.instance_url;
}
//handle apexrest inside org
if (proxyURL !== null && !useProxy) {
headers['SalesforceProxy-Endpoint'] = url;
}
headers['X-User-Agent'] = 'salesforce-toolkit-rest-javascript/' + apiVersion;
$http({
headers: headers,
method: method,
url: (useProxy || !visualforce) ? url : proxyURL,
params: obj.params,
data: obj.data,
timeout: 30000
}).then(function (data, status, headers, config) {
deferred.resolve(data);
}, function (data, status, headers, config) {
if ((status === 401 || status === 403) && oauth.refresh_token) {
refreshToken()
.then(function () {
// Try again with the new token
requestWithBrowser(obj).then(function(data) {
deferred.resolve(data);
}, function(error){
deferred.reject(error);
});
}, function(){
console.error(data);
deferred.reject(data);
});
} else {
if (!data) {
data = [{
'errorCode': 'Request Error',
'message': 'Can\'t connect to the server. Please try again!'
}];
}
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}
});
}
/**
* Execute SOSL Query
* @param sosl
* @returns {*}
*/
function search(sosl) {
return request({
path: '/services/data/' + apiVersion + '/search',
params: {q: sosl}
});
}
/**
* 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.indexOf('https://') !== 0) {
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);
}
function getURLs() {
return {proxyURL:proxyURL,oauthCallbackURL:oauthCallbackURL, useProxy: useProxy};
}
// The public API
return {
init: init,
getOAuth: getOAuth,
login: login,
logout: logout,
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,
requestBaseURL:getRequestBaseURL,
getURLs: getURLs,
search:search
};
});
// 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);
});
}