-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.js
482 lines (451 loc) · 13.1 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
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
'use strict'
var through = require('through2')
var rp = require('request-promise');
var u = require('url')
var gutil = require('gulp-util');
var path = require('path');
var util = require("util");
module.exports = function(args){
var options = {
client_id: "",
client_secret: "",
realm: "",
site: "",
verbose: false,
watch: false,
update_metadata: false,
files_metadata: [],
publish: false,
libraryPath: ""
}
if(!args){
throw "options required"
}
if(!args.client_id){
throw "The client_id options parameter is required"
}
if(!args.client_secret){
throw "The client_secret options parameter is required"
}
if(!args.site){
throw "The site options parameter is required"
}
if (args) {
// Required properties
options.client_id = args.client_id;
options.client_secret = args.client_secret;
options.site = args.site;
// Default properties or configured via the gulp script
options.realm = args.realm || options.realm;
options.verbose = args.verbose || options.verbose;
if (typeof (options.verbose) === 'string') {
options.verbose = options.verbose === 'true';
}
if (options.verbose) {
gutil.log('Verbose logging on!')
}
options.watch = args.watch || options.watch;
options.update_metadata = args.update_metadata || options.update_metadata;
options.files_metadata = args.files_metadata || options.files_metadata;
options.publish = args.publish || options.publish;
options.startFolder = args.startFolder || "";
options.libraryPath = args.libraryPath || "";
}
var getFormattedPrincipal = function (principalName, hostName, realm){
var resource = principalName
if(hostName != null && hostName != "" ) {
resource += "/" + hostName
}
resource += "@" + realm
return resource
}
var toDateFromEpoch = function(epoch){
var tmp = parseInt(epoch);
if(tmp<10000000000) tmp *= 1000;
var d = new Date()
d.setTime(tmp)
return d;
}
var now = function() {
return new Date()
}
var globalEndPointPrefix = "accounts";
var acsHostUrl = "accesscontrol.windows.net";
var acsMetadataEndPointRelativeUrl = "/metadata/json/1";
var S2SProtocol = "OAuth2"
var sharePointPrincipal = "00000003-0000-0ff1-ce00-000000000000"
var bearer = "Bearer realm=\""
var https ="https://"
var clientsvc = "/vti_bin/client.svc"
var tokens = null
var getStsUrl = function(realm){
if(options.verbose){
gutil.log('Locating STS Url for ' + realm)
}
var url = https + globalEndPointPrefix + "." + acsHostUrl + acsMetadataEndPointRelativeUrl + "?realm=" + realm
return rp
.get(url)
.then(function(data){
var endpoints =JSON.parse(data).endpoints
for(var i in endpoints){
if(endpoints[i].protocol == S2SProtocol )
{
if(options.verbose){
gutil.log('STS Endpoint found ' + endpoints[i].location)
}
return endpoints[i].location
}
}
throw "ACS endpoint not found"
});
}
var getRealmFromTargetUrl = function(targetUrl){
if(options.verbose){
gutil.log('Locating realm for ' + targetUrl)
}
return rp.post( targetUrl + clientsvc,{
headers: {
"Authorization": "Bearer "
},
resolveWithFullResponse: true
}).then(function(response){
throw "Unexpected"
}).catch(function(err){
if(err.name== 'RequestError'){
throw "Request error"
}
var headers = err.response.headers
var data = headers["www-authenticate"]
var ix = data.indexOf(bearer) + bearer.length
data = data.substring(ix, ix+36)
if(options.verbose){
gutil.log('Realm is ' + data)
}
return data;
});
}
var getAppOnlyAccessToken = function(
targetPrincipalName,
targetHost,
targetRealm){
var resource = getFormattedPrincipal(targetPrincipalName, targetHost, targetRealm)
var clientId = getFormattedPrincipal(options.client_id, "", targetRealm)
var httpOptions = {
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
form: {
"grant_type": "client_credentials",
"client_id": clientId,
"client_secret": options.client_secret,
"resource": resource
}
};
if(options.verbose){
gutil.log('Retreiving access token for ' + clientId)
}
return getStsUrl(options.realm)
.then(function(stsUrl){
return rp.post(stsUrl, httpOptions)
.then(function(data){
return JSON.parse(data)
})
});
}
var updateFileMetadata = function(file, resolve, reject) {
if (options.update_metadata) {
if (options.files_metadata.length <= 0) {
resolve(true);
}
// Get file context
var fileCtx = getFileContext(file);
var library = fileCtx.library;
var filename = fileCtx.filename;
// Check if the filename is in the array with metadata
var fileMetadata = options.files_metadata.filter(function (fm) {
if (fm.name === filename) {
return fm;
}
});
// Check if metadata has been retrieved for the file
if (fileMetadata.length > 0) {
var metadata = fileMetadata[0].metadata;
var metadataHeader = {
"headers":{
"Authorization": "Bearer " + tokens.access_token,
"content-type":"application/json;odata=verbose",
"X-HTTP-Method": "PATCH",
"If-Match": "*"
},
"body": JSON.stringify(metadata)
};
rp.post(
options.site + "/_api/web/GetFolderByServerRelativeUrl('" + library +"')/Files('"+filename +"')/listitemallfields",
metadataHeader
).then(function(postData) {
gutil.log(gutil.colors.green('Metadata updated successful'));
resolve(postData);
}).catch(function(err){
gutil.log(gutil.colors.red("Unable to update metadata of the file"));
reject(err);
});
} else {
// Nothing to do, no metadata for the file
resolve(true);
}
} else {
resolve(true);
}
}
var publishFile = function (file, resolve, reject) {
// Get file context
var fileCtx = getFileContext(file);
var library = fileCtx.library;
var filename = fileCtx.filename;
if (options.publish) {
var publishHeader = {
"headers":{
"Authorization": "Bearer " + tokens.access_token,
"content-type":"application/json;odata=verbose"
}
};
// First check out the file
rp.post(
options.site + "/_api/web/GetFolderByServerRelativeUrl('" + library +"')/Files('"+filename +"')/CheckOut()",
publishHeader
).then(function(result){
// Check in major version
rp.post(
options.site + "/_api/web/GetFolderByServerRelativeUrl('" + library +"')/Files('"+filename +"')/CheckIn(comment='Checked in via GULP', checkintype=1)",
publishHeader
).then(function (result) {
gutil.log(gutil.colors.green('Published file'));
resolve(result);
})
}).catch(function(err){
gutil.log(gutil.colors.red("Unable to publish file"));
reject(err);
});
} else {
resolve(true);
}
}
var getFileContext = function(file) {
var ix = file.relative.lastIndexOf(path.sep)
var ix2 = 0;
if(options.startFolder) {
ix2 = file.relative.indexOf(options.startFolder) + options.startFolder.length + 1
if(ix2 == -1) {
ix2 = 0
}
}
var library = file.relative.substring(ix2,ix)
if(options.verbose){
gutil.log('Using library: ' + library)
}
var filename = file.relative.substring(ix+1)
return {
library: options.libraryPath !== "" ? options.libraryPath + path.sep + library : library,
filename: filename
};
}
var uploadFile = function(file, content){
var headers = {
"headers":{
"Authorization": "Bearer " + tokens.access_token,
"content-type":"application/json;odata=verbose",
"accept":"application/json;odata=verbose"
},
"body": content
};
var fileCtx = getFileContext(file);
var library = fileCtx.library;
var filename = fileCtx.filename;
if(path.sep == "\\"){
library = library.replace(/\\/g, "/")
}
return checkFoldersAndCreateIfNotExist(library, filename, options, tokens).then(function() {
return new Promise(function (resolve, reject) {
rp.post(
options.site + "/_api/web/GetFolderByServerRelativeUrl('" +
library +"')/Files/add(url='"+
filename +"',overwrite=true)",
headers
)
.then(function(success) {
gutil.log(gutil.colors.green('Upload successful'));
resolve(success);
})
.catch(function(err){
switch(err.statusCode){
case 423:
gutil.log(gutil.colors.red("Unable to upload file, it might be checked out to someone"))
break;
default:
gutil.log(gutil.colors.red("Unable to upload file, it might be checked out to someone"))
break;
}
reject(err);
});
});
}).then(function() {
// Update file metadata
return new Promise(function (resolve, reject) {
updateFileMetadata(file, resolve, reject);
});
}).then(function(){
// Publish file
return new Promise(function (resolve, reject) {
publishFile(file, resolve, reject)
});
});
}
var checkFoldersAndCreateIfNotExist = function(library, filename, options, tokens) {
var foldersArray = getFolderPathsArray(library);
var proms = [];
foldersArray.forEach(function (val, index) {
proms.push(checkFolderExists(val));
});
return Promise.all(proms)
.then(function(data) {
var erroredIndexes = data.map(function (val, index) {
if (val.error) {
return index;
}
}).filter(function (x) { return x != undefined });
var pathArray = [];
erroredIndexes.forEach(function (val, index) {
var path = foldersArray[val];
pathArray.push(path);
})
if (pathArray.length > 0) {
return createPathRecursive(pathArray, library, filename, options, tokens);
}
}
);
}
var checkFolderExists = function(folderName) {
var getFolderUrl = util.format("/_api/web/GetFolderByServerRelativeUrl(@FolderName)" +
"?@FolderName='%s'", encodeURIComponent(folderName));
var opts = {
headers: {
"Accept": "application/json;odata=verbose",
"Authorization": "Bearer " + tokens.access_token,
"content-type":"application/json;odata=verbose"
},
json: true
};
var endPoint = options.site + getFolderUrl;
if(options.verbose){
gutil.log("Checking folder exists " + endPoint);
}
return rp.get(endPoint, opts)
.then(function (success) {
if(options.verbose){
gutil.log('Folder ' + folderName + ' exists');
}
return success;
})
.catch(function(err) {
gutil.log("INFO: Folder '" + folderName + "' doesn't exist and will be created");
return err;
});
}
var createPathRecursive = function(path, library, filename, options, tokens) {
if(options.verbose){
gutil.log("Creating path " + path[0]);
}
var setFolder = util.format("/_api/web/folders");
var body = "{'__metadata': {'type': 'SP.Folder'}, 'ServerRelativeUrl': '" + path[0] + "'}";
var opts = {
headers: {
"Accept": "application/json;odata=verbose",
"Authorization": "Bearer " + tokens.access_token,
"content-type": "application/json;odata=verbose",
"content-length": Buffer.byteLength(body)
},
body: body
};
return new Promise(function (resolve) {
rp.post(options.site + setFolder, opts)
.then(function (res) {
resolve(path.slice(1, path.length));
})
.catch(function(err) {
gutil.log("ERR: " + err);
return err;
});
})
.then(function (path) {
if (path.length > 0) {
return createPathRecursive(path, library, filename, options, tokens);
}
return true;
});
}
var getFolderPathsArray = function (folder) {
if (endsWith(folder, "/") && folder !== "/") {
folder = folder.slice(0, -1);
}
var folderNamesArray = folder.split('/');
var foldersArray = [];
for (var i = 0; i < folderNamesArray.length; i++) {
var pathArray = [];
for (var r = 0; r <= i; r++) {
pathArray.push(folderNamesArray[r]);
}
foldersArray.push(pathArray.join('/'));
}
return foldersArray;
}
var endsWith = function(str, suffix) {
return str.indexOf(suffix, str.length - suffix.length) !== -1;
}
return through.obj(function(file, enc, cb){
// If watch is set to true, only upload the changed files
if (options.watch && file.event !== "change") {
if(options.verbose){
gutil.log("Skipping:", gutil.colors.yellow(file.relative))
}
cb(null,file)
return;
}
var fileDone = function(parameter) {
cb()
}
if(file.isNull()){
cb()
return;
}
if (file.isStream()) {
cb(new gutil.PluginError("gulp-spsync", 'Streaming not supported'));
return;
}
var content = file.contents;
if (file.contents == null || file.contents.length === 0) {
content = '';
}
gutil.log('Uploading ' + file.relative)
if(tokens == null || now() > toDateFromEpoch(tokens.expires_on) ){
getRealmFromTargetUrl(options.site).then(function(realm){
return getAppOnlyAccessToken(
sharePointPrincipal,
u.parse(options.site).hostname,
realm)
.then(function(token){
tokens = token
return uploadFile(file, content).then(fileDone)
})
}).catch(function(err){
cb(new gutil.PluginError("gulp-spsync", err));
});
} else {
return uploadFile(file, content).then(fileDone)
}
},function(cb){
if(options.verbose){
gutil.log("And we're done...")
}
cb();
})
}