-
Notifications
You must be signed in to change notification settings - Fork 15
/
gulpfile.js
478 lines (437 loc) · 15.9 KB
/
gulpfile.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
var gulp = require("gulp");
var msbuild = require("gulp-msbuild");
var debug = require("gulp-debug");
var foreach = require("gulp-foreach");
var rename = require("gulp-rename");
var watch = require("gulp-watch");
var merge = require("merge-stream");
var newer = require("gulp-newer");
var util = require("gulp-util");
var runSequence = require("run-sequence");
var path = require("path");
var config = require("./gulp-config.js")();
var nugetRestore = require('gulp-nuget-restore');
var fs = require('fs');
var unicorn = require("./scripts/unicorn.js");
var habitat = require("./scripts/habitat.js");
var exec = require("child_process").exec;
module.exports.config = config;
gulp.task("default", function (callback) {
config.runCleanBuilds = true;
return runSequence(
"01-Copy-Sitecore-Lib",
"02-Nuget-Restore",
"03-Publish-All-Projects",
"04-Apply-Xml-Transform",
"05-Sync-Unicorn",
"06-Deploy-Transforms",
callback);
});
gulp.task("deploy", function (callback) {
config.runCleanBuilds = true;
return runSequence(
"01-Copy-Sitecore-Lib",
"02-Nuget-Restore",
"03-Publish-All-Projects",
"04-Apply-Xml-Transform",
"06-Deploy-Transforms",
callback);
});
/*****************************
Initial setup
*****************************/
gulp.task("01-Copy-Sitecore-Lib", function () {
console.log("Copying Sitecore Libraries and License file");
fs.statSync(config.sitecoreLibraries);
var files = config.sitecoreLibraries + "/**/*";
var libs = gulp.src(files).pipe(gulp.dest("./lib/Sitecore"));
var license = gulp.src(config.licensePath).pipe(gulp.dest("./lib"));
return merge(libs, license);
});
gulp.task("02-Nuget-Restore", function (callback) {
var solution = "./" + config.solutionName + ".sln";
return gulp.src(solution).pipe(nugetRestore());
});
gulp.task("03-Publish-All-Projects", function (callback) {
return runSequence(
"Build-Solution",
"Publish-Storefront-Projects",
"Publish-Foundation-Projects",
"Publish-Feature-Projects",
"Publish-Css",
"Publish-Project-Projects", callback);
});
gulp.task("04-Apply-Xml-Transform", function () {
var layerPathFilters = ["./src/Foundation/**/*.transform", "./src/Feature/**/*.transform", "./src/Project/**/*.transform", "!./src/**/obj/**/*.transform", "!./src/**/bin/**/*.transform"];
return gulp.src(layerPathFilters)
.pipe(foreach(function (stream, file) {
var fileToTransform = file.path.replace(/.+code\\(.+)\.transform/, "$1");
fileToTransform = fileToTransform.replace(/.+legacy\\(.+)\.transform/, "$1");
util.log("Applying configuration transform: " + file.path);
return gulp.src("./scripts/applytransform.targets")
.pipe(msbuild({
targets: ["ApplyTransform"],
configuration: config.buildConfiguration,
logCommand: false,
verbosity: "minimal",
stdout: true,
errorOnFail: true,
maxcpucount: 0,
toolsVersion: 14.0,
properties: {
Platform: config.buildPlatform,
WebConfigToTransform: config.websiteRoot,
TransformFile: file.path,
FileToTransform: fileToTransform
}
}));
}));
});
gulp.task("05-Sync-Unicorn", function (callback) {
var options = {};
options.siteHostName = habitat.getSiteUrl();
options.authenticationConfigFile = config.websiteRoot + "/App_config/Include/Unicorn/Unicorn.UI.config";
options.maxBuffer = Infinity;
unicorn(function() { return callback() }, options);
});
gulp.task("06-Deploy-Transforms", function () {
return gulp.src(["./src/**/code/**/*.transform", "./src/**/legacy/**/*.transform"]).pipe(gulp.dest(config.websiteRoot + "/temp/transforms"));
});
/*****************************
Copy assemblies to all local projects
*****************************/
gulp.task("Copy-Local-Assemblies", function () {
console.log("Copying site assemblies to all local projects");
var files = config.sitecoreLibraries + "/**/*";
var root = "./src";
var projects = [root + "/**/code/bin", root + "/**/legacy/bin"];
return gulp.src(projects, { base: root })
.pipe(foreach(function (stream, file) {
console.log("copying to " + file.path);
gulp.src(files)
.pipe(gulp.dest(file.path));
return stream;
}));
});
/*****************************
Publish
*****************************/
var publishProjects = function (location, dest) {
dest = dest || config.websiteRoot;
var targets = ["Build"];
console.log("publish to " + dest + " folder");
return gulp.src([location + "/**/code/*.csproj", location + "/**/legacy/*.csproj", location + "/*.csproj"])
.pipe(foreach(function (stream, file) {
return stream
.pipe(debug({ title: "Building project:" }))
.pipe(msbuild({
targets: targets,
configuration: config.buildConfiguration,
logCommand: false,
verbosity: "minimal",
stdout: true,
errorOnFail: true,
maxcpucount: 0,
toolsVersion: 14.0,
properties: {
Platform: config.publishPlatform,
DeployOnBuild: "true",
DeployDefaultTarget: "WebPublish",
WebPublishMethod: "FileSystem",
DeleteExistingFiles: "false",
publishUrl: dest,
_FindDependencies: "false"
}
}));
}));
};
gulp.task("Build-Solution", function () {
console.log("Building Solution");
var targets = ["Build"];
if (config.runCleanBuilds) {
targets = ["Clean", "Build"];
}
var solution = "./" + config.solutionName + ".sln";
return gulp.src(solution)
.pipe(msbuild({
targets: targets,
configuration: config.buildConfiguration,
logCommand: false,
verbosity: "minimal",
stdout: true,
errorOnFail: true,
maxcpucount: 0,
toolsVersion: 14.0,
properties: {
Platform: config.buildPlatform
}
}));
});
gulp.task("Publish-Storefront-Projects", function () {
console.log("Publishing Storefront Projects");
return publishProjects("./src/Foundation/Commerce/storefront/{CommonSettings,CF/CSF}");
});
gulp.task("Publish-Foundation-Projects", function () {
return publishProjects("./src/Foundation");
});
gulp.task("Publish-Feature-Projects", function () {
return publishProjects("./src/Feature");
});
gulp.task("Publish-Project-Projects", function () {
return publishProjects("./src/Project");
});
gulp.task("Publish-Assemblies", function () {
var root = "./src";
var binFiles = root + "/**/code/**/bin/Sitecore.{Feature,Foundation,Habitat}.*.{dll,pdb}";
var destination = config.websiteRoot + "/bin/";
return gulp.src(binFiles, { base: root })
.pipe(rename({ dirname: "" }))
.pipe(newer(destination))
.pipe(debug({ title: "Copying " }))
.pipe(gulp.dest(destination));
});
gulp.task("Publish-All-Views", function () {
var root = "./src";
var roots = [root + "/**/Views", "!" + root + "/**/obj/**/Views"];
var files = "/**/*.cshtml";
var destination = config.websiteRoot + "\\Views";
return gulp.src(roots, { base: root }).pipe(
foreach(function (stream, file) {
console.log("Publishing from " + file.path);
gulp.src(file.path + files, { base: file.path })
.pipe(newer(destination))
.pipe(debug({ title: "Copying " }))
.pipe(gulp.dest(destination));
return stream;
})
);
});
gulp.task("Publish-All-Configs", function () {
var root = "./src";
var roots = [root + "/**/App_Config", "!" + root + "/**/obj/**/App_Config"];
var files = "/**/*.config";
var destination = config.websiteRoot + "\\App_Config";
return gulp.src(roots, { base: root }).pipe(
foreach(function (stream, file) {
console.log("Publishing from " + file.path);
gulp.src(file.path + files, { base: file.path })
.pipe(newer(destination))
.pipe(debug({ title: "Copying " }))
.pipe(gulp.dest(destination));
return stream;
})
);
});
gulp.task("Publish-Css", function () {
var root = "./src";
var roots = [root + "/**/styles", "!" + root + "/**/obj/**/styles"];
var files = "/**/*.css";
var destination = config.websiteRoot + "\\styles";
return gulp.src(roots, { base: root }).pipe(
foreach(function (stream, file) {
console.log("Publishing from " + file.path);
gulp.src(file.path + files, { base: file.path })
.pipe(newer(destination))
.pipe(debug({ title: "Copying " }))
.pipe(gulp.dest(destination));
return stream;
})
);
});
/*****************************
Watchers
*****************************/
gulp.task("Auto-Publish-Css", function () {
var root = "./src";
var roots = [root + "/**/styles", "!" + root + "/**/obj/**/styles"];
var files = "/**/*.css";
var destination = config.websiteRoot + "\\styles";
gulp.src(roots, { base: root }).pipe(
foreach(function (stream, rootFolder) {
gulp.watch(rootFolder.path + files, function (event) {
if (event.type === "changed") {
console.log("publish this file " + event.path);
gulp.src(event.path, { base: rootFolder.path }).pipe(gulp.dest(destination));
}
console.log("published " + event.path);
});
return stream;
})
);
});
gulp.task("Auto-Publish-Views", function () {
var root = "./src";
var roots = [root + "/**/Views", "!" + root + "/**/obj/**/Views"];
var files = "/**/*.cshtml";
var destination = config.websiteRoot + "\\Views";
gulp.src(roots, { base: root }).pipe(
foreach(function (stream, rootFolder) {
gulp.watch(rootFolder.path + files, function (event) {
if (event.type === "changed") {
console.log("publish this file " + event.path);
gulp.src(event.path, { base: rootFolder.path }).pipe(gulp.dest(destination));
}
console.log("published " + event.path);
});
return stream;
})
);
});
gulp.task("Auto-Publish-Assemblies", function () {
var root = "./src";
var roots = [root + "/**/code/**/bin", root + "/**/legacy/**/bin"];
var files = "/**/Sitecore.{Feature,Foundation,Habitat}.*.{dll,pdb}";;
var destination = config.websiteRoot + "/bin/";
gulp.src(roots, { base: root }).pipe(
foreach(function (stream, rootFolder) {
gulp.watch(rootFolder.path + files, function (event) {
if (event.type === "changed") {
console.log("publish this file " + event.path);
gulp.src(event.path, { base: rootFolder.path }).pipe(gulp.dest(destination));
}
console.log("published " + event.path);
});
return stream;
})
);
});
/*****************************
Commerce
*****************************/
gulp.task("CE-Install-Commerce-Server", function (callback) {
var options = { maxBuffer: 4024 * 1024 };
return exec("powershell -executionpolicy unrestricted -file .\\install-commerce-server.ps1", options, function (err, stdout, stderr) {
if (err) {
console.error("exec error: " + err);
throw err;
}
console.log("stdout: " + stdout);
console.log("stderr: " + stderr);
callback();
});
});
gulp.task("CE-Install-Commerce-Sites", function (callback) {
var options = { maxBuffer: 4024 * 1024 };
return exec("powershell -executionpolicy unrestricted -file .\\install-commerce-sites.ps1", options, function (err, stdout, stderr) {
if (err) {
console.error("exec error: " + err);
throw err;
}
console.log("stdout: " + stdout);
console.log("stderr: " + stderr);
callback();
});
});
gulp.task("CE-Uninstall-Commerce", function (callback) {
var options = { maxBuffer: 1024 * 1024 };
return exec("powershell -executionpolicy unrestricted -file .\\uninstall-commerce.ps1", options, function (err, stdout, stderr) {
if (err) {
console.error("exec error: " + err);
throw err;
}
console.log("stdout: " + stdout);
console.log("stderr: " + stderr);
callback();
});
});
gulp.task("CE~default", function (callback) {
config.runCleanBuilds = true;
return runSequence(
"CE-01-Nuget-Restore",
"CE-02-Publish-CommerceEngine-Projects",
callback);
});
gulp.task("CE-01-Nuget-Restore", function (callback) {
return runSequence("02-Nuget-Restore", callback);
});
gulp.task("CE-02-Publish-CommerceEngine-Projects", function (callback) {
var cmd = "dotnet publish ./src/Foundation/Commerce/Engine -o " + config.commerceEngineRoot
var options = { maxBuffer: 1024 * 1024 };
console.log("cmd: " + cmd);
return exec(cmd, options, function (err, stdout, stderr) {
if (err) {
console.error("exec error: " + err);
throw err;
}
console.log("stdout: " + stdout);
console.log("stderr: " + stderr);
callback();
});
});
gulp.task("CE-Import-CSCatalog", function (callback) {
var dataPath = config.commerceDatabasePath + "\\Catalog.xml";
var command = "\"& {Import-Module CSPS; Import-CSCatalog -Name " + config.commerceServerSiteName + " -File " + dataPath + " -ImportSchemaChanges $true -Mode Full}\""
var cmd = "powershell -executionpolicy unrestricted -command " + command
var options = { maxBuffer: 1024 * 1024 };
console.log("cmd: " + cmd);
return exec(cmd, options, function (err, stdout, stderr) {
if (err) {
console.error("exec error: " + err);
throw err;
}
console.log("stdout: " + stdout);
console.log("stderr: " + stderr);
callback();
});
});
gulp.task("CE-Export-CSCatalog", function (callback) {
var dataPath = config.commerceDatabasePath + "\\Catalog.xml";
var command = "\"& {Import-Module CSPS; Export-CSCatalog -Name " + config.commerceServerSiteName + " -File " + dataPath + " -SchemaExportType All -Mode Full}\""
var cmd = "powershell -executionpolicy unrestricted -command " + command
var options = { maxBuffer: 1024 * 1024 };
console.log("cmd: " + cmd);
return exec(cmd, options, function (err, stdout, stderr) {
if (err) {
console.error("exec error: " + err );
throw err;
}
console.log("stdout: " + stdout);
console.log("stderr: " + stderr);
callback();
});
});
gulp.task("CE-Import-CSInventory", function (callback) {
var dataPath = config.commerceDatabasePath + "\\Inventory.xml";
var command = "& {Import-Module CSPS; Import-CSInventory -Name " + config.commerceServerSiteName + " -File " + dataPath + " -ImportSchemaChanges $true -Mode Full}"
var options = { maxBuffer: 1024 * 1024 };
return exec("powershell -executionpolicy unrestricted -command \"" + command + "\"", options, function (err, stdout, stderr) {
if (err) {
console.error("exec error: " + err);
throw err;
}
console.log("stdout: " + stdout);
console.log("stderr: " + stderr);
callback();
});
});
/*****************************
Kill Tasks
*****************************/
gulp.task("Kill-w3wp-Tasks", function (callback) {
var cmd = "@tskill w3wp /a /v"
var options = { maxBuffer: 1024 * 1024 };
console.log("cmd: " + cmd);
return exec(cmd, options, function (err, stdout, stderr) {
if ((err) && (!stderr.includes("Could not find process"))) {
console.error("exec error: " + err);
throw err;
}
console.log("stdout: " + stdout);
console.log("stderr: " + stderr);
callback();
});
});
gulp.task("Kill-iisexpress-Tasks", function (callback) {
var cmd = "@tskill iisexpress /a /v"
var options = { maxBuffer: 1024 * 1024 };
console.log("cmd: " + cmd);
return exec(cmd, options, function (err, stdout, stderr) {
if ((err) && (!stderr.includes("Could not find process"))) {
console.error("exec error: " + err);
throw err;
}
console.log("stdout: " + stdout);
console.log("stderr: " + stderr);
callback();
});
});