-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforceng.js
More file actions
465 lines (394 loc) · 15.6 KB
/
forceng.js
File metadata and controls
465 lines (394 loc) · 15.6 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
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
/**
* ForceNG - REST toolkit for Salesforce.com
* Author: Christophe Coenraets @ccoenraets
* Works with browser apps or Salesforce Mobile SDK
* Version: 0.4
*/
angular.module('forceng', [])
.factory('force', function ($rootScope, $q, $window, $http) {
var loginURL = 'https://login.salesforce.com',
// The Connected App client Id
appId = '3MVG9A2kN3Bn17htrGcJ8DnRaOl8WTI7pvuhUty5FMXjedLdIMITLDTVW3uh2ZsYUPWLkKBU.Pi5ZJpRRdb9m',
// The force.com API version to use. Default can be overriden in login()
apiVersion = 'v32.0',
// Keep track of OAuth data (access_token, instance_url, and refresh_token)
oauth,
// Only required when using REST APIs in an app hosted on your own server to avoid cross domain policy issues
proxyURL = "https://samforceng.herokuapp.com/oauthcallback.html", //"http://localhost:8200",
// By default we store fbtoken in memory. 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, baseURL is http://localhost:3000/myapp
baseURL = location.protocol + '//' + location.hostname + (location.port ? ':' + location.port : '') + context,
// if page URL is http://localhost:3000/myapp/index.html, oauthCallbackURL is http://localhost:3000/myapp/oauthcallback.html
oauthCallbackURL = baseURL + '/oauthcallback.html',
// Because the OAuth login spans multiple processes, we need to keep the success/error handlers as variables
// inside the module instead of keeping them local within the login function.
deferredLogin,
// Indicates if the app is running inside Cordova
oauthPlugin;
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 = oauthPlugin ? loginURL : proxyURL;
// 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 (!oauthPlugin) {
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) {
// Load previously saved token
if (tokenStore.forceOAuth) {
oauth = JSON.parse(tokenStore.forceOAuth);
}
if (params) {
appId = params.appId || appId;
apiVersion = params.apiVersion || apiVersion;
tokenStore = params.tokenStore || tokenStore;
loginURL = params.loginURL || loginURL;
oauthCallbackURL = params.oauthCallbackURL || oauthCallbackURL;
proxyURL = params.proxyURL || proxyURL;
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;
}
}
}
/**
* 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) {
console.log(JSON.stringify(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 isLoggedIn() {
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) {
if (!oauth || (!oauth.access_token && !oauth.refresh_token)) {
deferred.reject(data);
return;
}
var method = obj.method || 'GET',
headers = {},
url = oauthPlugin ? oauth.instance_url : proxyURL;
deferred = $q.defer('No access token. Login and try again.');
// dev friendly API: Remove trailing '/' if any so url + path concat always works
if (url.slice(-1) === '/') {
url = url.slice(0, -1);
}
// 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 (!oauthPlugin) {
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
});
}
// The public API
return {
init: init,
login: login,
getUserId: getUserId,
isLoggedIn: isLoggedIn,
request: request,
query: query,
create: create,
update: update,
del: del,
upsert: upsert,
retrieve: retrieve,
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);
});
}