@clickview/ship-it 0.0.40 → 0.0.42-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. package/Dockerfile +33 -33
  2. package/README.md +48 -48
  3. package/config.json +19 -19
  4. package/dist/I3/I3 Notes Audit.csv +127 -0
  5. package/dist/J1/J1 Notes Audit.csv +38 -0
  6. package/dist/J2/J2 Notes Audit.csv +52 -0
  7. package/dist/L1/L1 Notes Audit.csv +139 -0
  8. package/lib/config.json +20 -20
  9. package/lib/src/api-clients/git-lab/GitLabApiClient.js +564 -557
  10. package/lib/src/api-clients/git-lab/GitLabMapper.js +122 -122
  11. package/lib/src/api-clients/index.js +20 -20
  12. package/lib/src/api-clients/slack/SlackApiClient.js +206 -206
  13. package/lib/src/api-clients/team-city/TeamCityApiClient.js +100 -100
  14. package/lib/src/api-clients/trello/TrelloApiClient.js +145 -145
  15. package/lib/src/commands/BumpPackagesCommand.js +76 -76
  16. package/lib/src/commands/ConfigureProjectsCommand.js +84 -84
  17. package/lib/src/commands/CreateBranchCommand.js +100 -100
  18. package/lib/src/commands/CreateMergeRequestCommand.js +107 -107
  19. package/lib/src/commands/CreateNotesAuditCommand.js +84 -84
  20. package/lib/src/commands/CreateReleaseNotesCommand.js +95 -95
  21. package/lib/src/commands/CreateTrelloCardsCommand.js +76 -77
  22. package/lib/src/commands/InstallPackagesCommand.js +76 -76
  23. package/lib/src/commands/ListProjectsCommand.js +76 -76
  24. package/lib/src/commands/ReleaseCommand.js +136 -136
  25. package/lib/src/commands/StartProjectBuildsCommand.js +76 -76
  26. package/lib/src/commands/StatusCommand.js +93 -93
  27. package/lib/src/commands/TagMasterCommand.js +76 -76
  28. package/lib/src/commands/ValidateMergeRequestCommand.js +76 -76
  29. package/lib/src/commands/VersionCommand.js +76 -76
  30. package/lib/src/commands/index.js +31 -31
  31. package/lib/src/constants/CommandTypeMapping.js +21 -21
  32. package/lib/src/constants/GitLabMemberIds.js +6 -6
  33. package/lib/src/constants/MonorepoPackageJsonFiles.js +41 -41
  34. package/lib/src/constants/MonorepoProjectNames.js +16 -16
  35. package/lib/src/constants/ProjectNames.js +69 -69
  36. package/lib/src/constants/SlackUserEmailList.js +13 -13
  37. package/lib/src/constants/TeamCityBuildIDs.js +46 -46
  38. package/lib/src/constants/index.js +19 -19
  39. package/lib/src/errors/ShipItError.js +32 -32
  40. package/lib/src/errors/index.js +17 -17
  41. package/lib/src/index.js +18 -18
  42. package/lib/src/interfaces/Config.js +2 -2
  43. package/lib/src/interfaces/MergeRequestState.js +2 -2
  44. package/lib/src/interfaces/ProjectNames.js +2 -2
  45. package/lib/src/interfaces/ShipItCommand.js +2 -2
  46. package/lib/src/interfaces/ShipItTask.js +2 -2
  47. package/lib/src/interfaces/VersionType.js +2 -2
  48. package/lib/src/interfaces/command-cli-options/DockerMilestoneCommandCliOptions.js +2 -0
  49. package/lib/src/interfaces/command-cli-options/MilestoneCommandCliOptions.js +2 -2
  50. package/lib/src/interfaces/command-cli-options/ReleaseCommandCliOptions.js +2 -2
  51. package/lib/src/interfaces/command-cli-options/StatusCommandCliOptions.js +2 -2
  52. package/lib/src/interfaces/command-cli-options/index.js +19 -19
  53. package/lib/src/interfaces/command-options/BaseCommandOptions.js +2 -2
  54. package/lib/src/interfaces/command-options/BumpPackagesCommandOptions.js +2 -2
  55. package/lib/src/interfaces/command-options/ConfigureProjectsOptions.js +2 -2
  56. package/lib/src/interfaces/command-options/DockerMilestoneCommandOptions.js +2 -2
  57. package/lib/src/interfaces/command-options/MilestoneCommandOptions.js +2 -2
  58. package/lib/src/interfaces/command-options/ReleaseCommandOptions.js +2 -2
  59. package/lib/src/interfaces/command-options/StatusCommandOptions.js +2 -2
  60. package/lib/src/interfaces/command-options/ValidateMRCommandOptions.js +2 -2
  61. package/lib/src/interfaces/command-options/index.js +23 -23
  62. package/lib/src/interfaces/index.js +26 -26
  63. package/lib/src/interfaces/models/ApprovalRule.js +2 -2
  64. package/lib/src/interfaces/models/ApprovalRuleConfiguration.js +2 -2
  65. package/lib/src/interfaces/models/Branch.js +2 -2
  66. package/lib/src/interfaces/models/Commit.js +2 -2
  67. package/lib/src/interfaces/models/CommitFile.js +2 -2
  68. package/lib/src/interfaces/models/CreateApprovalRuleRequest.js +2 -2
  69. package/lib/src/interfaces/models/File.js +2 -2
  70. package/lib/src/interfaces/models/Group.js +2 -2
  71. package/lib/src/interfaces/models/Label.js +2 -2
  72. package/lib/src/interfaces/models/MergeRequest.js +2 -2
  73. package/lib/src/interfaces/models/Milestone.js +2 -2
  74. package/lib/src/interfaces/models/Project.js +2 -2
  75. package/lib/src/interfaces/models/ProjectConfig.js +9 -9
  76. package/lib/src/interfaces/models/ProtectedBranch.js +2 -2
  77. package/lib/src/interfaces/models/Release.js +2 -2
  78. package/lib/src/interfaces/models/Tag.js +2 -2
  79. package/lib/src/interfaces/models/index.js +32 -32
  80. package/lib/src/interfaces/view-models/MilestoneProject.js +2 -2
  81. package/lib/src/interfaces/view-models/index.js +17 -17
  82. package/lib/src/inversify.config.js +79 -79
  83. package/lib/src/services/GitLabService.js +553 -544
  84. package/lib/src/services/SlackService.js +142 -142
  85. package/lib/src/services/TeamCityService.js +37 -37
  86. package/lib/src/services/TrelloService.js +84 -84
  87. package/lib/src/services/index.js +20 -20
  88. package/lib/src/startup/AddMilestoneCommand.js +88 -96
  89. package/lib/src/startup/GetAction.js +68 -68
  90. package/lib/src/startup/SetupCommands.js +191 -180
  91. package/lib/src/tasks/BumpPackagesTask.js +230 -230
  92. package/lib/src/tasks/BumpVersionTxtTask.js +110 -110
  93. package/lib/src/tasks/CommitPackageVersionsTask.js +116 -0
  94. package/lib/src/tasks/CreateBranchTask.js +104 -104
  95. package/lib/src/tasks/CreateMergeRequestTask.js +126 -118
  96. package/lib/src/tasks/CreateNotesAuditTask.js +140 -140
  97. package/lib/src/tasks/CreateReleaseNotesTask.js +144 -144
  98. package/lib/src/tasks/InstallPackagesTask.js +409 -415
  99. package/lib/src/tasks/ListProjectsTask.js +87 -87
  100. package/lib/src/tasks/PopulateTrelloBoardTask.js +140 -140
  101. package/lib/src/tasks/StartMonorepoBuildTask.js +109 -109
  102. package/lib/src/tasks/StartProjectBuildsTask.js +164 -170
  103. package/lib/src/tasks/TagMasterTask.js +196 -189
  104. package/lib/src/tasks/ValidateCommitsTask.js +210 -143
  105. package/lib/src/tasks/ValidateDescriptionsTask.js +178 -178
  106. package/lib/src/tasks/ValidateMergeRequestTask.js +115 -115
  107. package/lib/src/tasks/ValidateTask.js +419 -419
  108. package/lib/src/tasks/VersionTask.js +98 -98
  109. package/lib/src/tasks/configure-projects/AddApprovalRulesTask.js +199 -182
  110. package/lib/src/tasks/configure-projects/CreateToolingBranchTask.js +138 -136
  111. package/lib/src/tasks/configure-projects/EnsureApprovalRulesTask.js +106 -106
  112. package/lib/src/tasks/configure-projects/index.js +18 -18
  113. package/lib/src/tasks/configure-projects/primitives/BaseConfigureProjectsTask.js +98 -98
  114. package/lib/src/tasks/index.js +34 -34
  115. package/lib/src/types.js +60 -60
  116. package/lib/src/utils/BranchNames.js +11 -11
  117. package/lib/src/utils/Commits.js +82 -55
  118. package/lib/src/utils/Csv.js +54 -54
  119. package/lib/src/utils/Descriptions.js +274 -274
  120. package/lib/src/utils/GroupIds.js +6 -6
  121. package/lib/src/utils/Logger.js +62 -62
  122. package/lib/src/utils/ProjectIds.js +48 -47
  123. package/lib/src/utils/Versions.js +20 -20
  124. package/lib/src/utils/index.js +22 -22
  125. package/package.json +50 -50
@@ -1,143 +1,210 @@
1
- "use strict";
2
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
- return c > 3 && r && Object.defineProperty(target, key, r), r;
7
- };
8
- var __metadata = (this && this.__metadata) || function (k, v) {
9
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
- };
11
- var __param = (this && this.__param) || function (paramIndex, decorator) {
12
- return function (target, key) { decorator(target, key, paramIndex); }
13
- };
14
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
15
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
16
- return new (P || (P = Promise))(function (resolve, reject) {
17
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
18
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
19
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
20
- step((generator = generator.apply(thisArg, _arguments || [])).next());
21
- });
22
- };
23
- var __generator = (this && this.__generator) || function (thisArg, body) {
24
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
25
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
26
- function verb(n) { return function (v) { return step([n, v]); }; }
27
- function step(op) {
28
- if (f) throw new TypeError("Generator is already executing.");
29
- while (_) try {
30
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
31
- if (y = 0, t) op = [op[0] & 2, t.value];
32
- switch (op[0]) {
33
- case 0: case 1: t = op; break;
34
- case 4: _.label++; return { value: op[1], done: false };
35
- case 5: _.label++; y = op[1]; op = [0]; continue;
36
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
37
- default:
38
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
39
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
40
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
41
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
42
- if (t[2]) _.ops.pop();
43
- _.trys.pop(); continue;
44
- }
45
- op = body.call(thisArg, _);
46
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
47
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
48
- }
49
- };
50
- Object.defineProperty(exports, "__esModule", { value: true });
51
- exports.ValidateCommitsTask = void 0;
52
- require("reflect-metadata");
53
- var inversify_1 = require("inversify");
54
- var types_1 = require("../types");
55
- var services_1 = require("../services");
56
- var utils_1 = require("../utils");
57
- var ValidateCommitsTask = /** @class */ (function () {
58
- function ValidateCommitsTask(gitLabService, slackService) {
59
- this.gitLabService = gitLabService;
60
- this.slackService = slackService;
61
- }
62
- ValidateCommitsTask.prototype.run = function (options) {
63
- var _a;
64
- return __awaiter(this, void 0, void 0, function () {
65
- var projects, logMessageSlack, cont, _i, projects_1, project, _b, branch, tag, previousReleaseBranchName, previousReleaseMergeRequest, devCommits, _c, shouldCherryPick, invalidCommits, threadLabel, statusCleanMessage;
66
- return __generator(this, function (_d) {
67
- switch (_d.label) {
68
- case 0:
69
- utils_1.Logger.logTask('Validating dev commits');
70
- return [4 /*yield*/, this.gitLabService.getProjects(options)];
71
- case 1:
72
- projects = _d.sent();
73
- logMessageSlack = '';
74
- cont = true;
75
- _i = 0, projects_1 = projects;
76
- _d.label = 2;
77
- case 2:
78
- if (!(_i < projects_1.length)) return [3 /*break*/, 7];
79
- project = projects_1[_i];
80
- return [4 /*yield*/, this.gitLabService.getNextBranchInfo(project.id, options.version)];
81
- case 3:
82
- _b = _d.sent(), branch = _b.branch, tag = _b.tag;
83
- /**
84
- * If the release branch already exists, this can be skipped as this
85
- * validation is only required when creating a new release
86
- */
87
- if (branch)
88
- return [3 /*break*/, 6];
89
- previousReleaseBranchName = utils_1.BranchNames.getRelease(tag.name);
90
- return [4 /*yield*/, this.gitLabService
91
- .getMergeRequest(project.id, previousReleaseBranchName)];
92
- case 4:
93
- previousReleaseMergeRequest = _d.sent();
94
- return [4 /*yield*/, this.gitLabService.getCommitsForRelease(project.id, (_a = previousReleaseMergeRequest === null || previousReleaseMergeRequest === void 0 ? void 0 : previousReleaseMergeRequest.dateCreated) !== null && _a !== void 0 ? _a : '')];
95
- case 5:
96
- devCommits = _d.sent();
97
- _c = utils_1.Commits.shouldCherryPick(project, devCommits), shouldCherryPick = _c.shouldCherryPick, invalidCommits = _c.invalidCommits;
98
- if (shouldCherryPick) {
99
- utils_1.Logger.logError("[".concat(project.title, "]: Requires cherrypicking. These are the merge commits that either have the wrong milestone, or no milestone:"));
100
- logMessageSlack += "[".concat(project.title, "]: Requires cherrypicking. These are the merge commits that either have the wrong milestone, or no milestone:\n");
101
- invalidCommits.forEach(function (commit) {
102
- utils_1.Logger.logError("- ".concat(commit.id));
103
- logMessageSlack += "- ".concat(commit.id, "\n");
104
- });
105
- cont = false;
106
- }
107
- _d.label = 6;
108
- case 6:
109
- _i++;
110
- return [3 /*break*/, 2];
111
- case 7:
112
- if (!options.slackNotifier) return [3 /*break*/, 9];
113
- threadLabel = "".concat(options.milestone, " Invalid Commits!");
114
- statusCleanMessage = 'No projects require cherrypicking';
115
- // Send formated status update in slack
116
- return [4 /*yield*/, this.slackService.sendSlackStatusMessage({
117
- emailList: [],
118
- threadLabel: threadLabel,
119
- statusMessage: logMessageSlack,
120
- statusCleanMessage: statusCleanMessage
121
- })];
122
- case 8:
123
- // Send formated status update in slack
124
- _d.sent();
125
- _d.label = 9;
126
- case 9:
127
- if (cont)
128
- utils_1.Logger.logSuccess('No projects require cherrypicking');
129
- return [2 /*return*/, cont];
130
- }
131
- });
132
- });
133
- };
134
- ValidateCommitsTask = __decorate([
135
- (0, inversify_1.injectable)(),
136
- __param(0, (0, inversify_1.inject)(types_1.SERVICES.GitLabService)),
137
- __param(1, (0, inversify_1.inject)(types_1.SERVICES.SlackService)),
138
- __metadata("design:paramtypes", [services_1.GitLabService,
139
- services_1.SlackService])
140
- ], ValidateCommitsTask);
141
- return ValidateCommitsTask;
142
- }());
143
- exports.ValidateCommitsTask = ValidateCommitsTask;
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
12
+ return function (target, key) { decorator(target, key, paramIndex); }
13
+ };
14
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
15
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
16
+ return new (P || (P = Promise))(function (resolve, reject) {
17
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
18
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
19
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
20
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
21
+ });
22
+ };
23
+ var __generator = (this && this.__generator) || function (thisArg, body) {
24
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
25
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
26
+ function verb(n) { return function (v) { return step([n, v]); }; }
27
+ function step(op) {
28
+ if (f) throw new TypeError("Generator is already executing.");
29
+ while (_) try {
30
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
31
+ if (y = 0, t) op = [op[0] & 2, t.value];
32
+ switch (op[0]) {
33
+ case 0: case 1: t = op; break;
34
+ case 4: _.label++; return { value: op[1], done: false };
35
+ case 5: _.label++; y = op[1]; op = [0]; continue;
36
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
37
+ default:
38
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
39
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
40
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
41
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
42
+ if (t[2]) _.ops.pop();
43
+ _.trys.pop(); continue;
44
+ }
45
+ op = body.call(thisArg, _);
46
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
47
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
48
+ }
49
+ };
50
+ Object.defineProperty(exports, "__esModule", { value: true });
51
+ exports.ValidateCommitsTask = void 0;
52
+ require("reflect-metadata");
53
+ var inversify_1 = require("inversify");
54
+ var types_1 = require("../types");
55
+ var services_1 = require("../services");
56
+ var utils_1 = require("../utils");
57
+ var ValidateCommitsTask = /** @class */ (function () {
58
+ function ValidateCommitsTask(gitLabService, slackService) {
59
+ this.cont = true;
60
+ this.commitsMessage = '';
61
+ this.mrMessage = '';
62
+ this.gitLabService = gitLabService;
63
+ this.slackService = slackService;
64
+ }
65
+ ValidateCommitsTask.prototype.run = function (options) {
66
+ return __awaiter(this, void 0, void 0, function () {
67
+ var projects, _i, projects_1, project, _a, branch, tag;
68
+ return __generator(this, function (_b) {
69
+ switch (_b.label) {
70
+ case 0:
71
+ utils_1.Logger.logTask('Validating dev commits');
72
+ return [4 /*yield*/, this.gitLabService.getProjects(options.milestone, options.projectIds, options.omittedProjectIds)];
73
+ case 1:
74
+ projects = _b.sent();
75
+ /**
76
+ * Clear all the instance values we're using to store state
77
+ */
78
+ this.cont = true;
79
+ this.commitsMessage = '';
80
+ this.mrMessage = '';
81
+ _i = 0, projects_1 = projects;
82
+ _b.label = 2;
83
+ case 2:
84
+ if (!(_i < projects_1.length)) return [3 /*break*/, 5];
85
+ project = projects_1[_i];
86
+ return [4 /*yield*/, this.gitLabService.getNextBranchInfo(project.id, options.version)];
87
+ case 3:
88
+ _a = _b.sent(), branch = _a.branch, tag = _a.tag;
89
+ /**
90
+ * If the branch already exists, ensure we don't have a stale branch.
91
+ */
92
+ if (branch) {
93
+ this.validateBranch(project, branch, tag);
94
+ return [3 /*break*/, 4];
95
+ }
96
+ this.validateCommits(project, tag);
97
+ _b.label = 4;
98
+ case 4:
99
+ _i++;
100
+ return [3 /*break*/, 2];
101
+ case 5: return [4 /*yield*/, this.notifySlack(options.slackNotifier, options.milestone)];
102
+ case 6:
103
+ _b.sent();
104
+ if (this.cont)
105
+ utils_1.Logger.logSuccess('No projects require cherrypicking');
106
+ return [2 /*return*/, this.cont];
107
+ }
108
+ });
109
+ });
110
+ };
111
+ ValidateCommitsTask.prototype.validateBranch = function (project, branch, tag) {
112
+ var _a;
113
+ return __awaiter(this, void 0, void 0, function () {
114
+ var previousReleaseBranchName, previousReleaseMergeRequest, commits, missingMergeRequests, _i, missingMergeRequests_1, mergeRequest;
115
+ return __generator(this, function (_b) {
116
+ switch (_b.label) {
117
+ case 0:
118
+ previousReleaseBranchName = utils_1.BranchNames.getRelease(tag.name);
119
+ return [4 /*yield*/, this.gitLabService
120
+ .getMergeRequest(project.id, previousReleaseBranchName)];
121
+ case 1:
122
+ previousReleaseMergeRequest = _b.sent();
123
+ return [4 /*yield*/, this.gitLabService.getCommitsForBranch(branch.name, project.id, (_a = previousReleaseMergeRequest === null || previousReleaseMergeRequest === void 0 ? void 0 : previousReleaseMergeRequest.dateCreated) !== null && _a !== void 0 ? _a : '')];
124
+ case 2:
125
+ commits = _b.sent();
126
+ missingMergeRequests = utils_1.Commits.findMissingMergeRequests(project, commits);
127
+ if (!missingMergeRequests.length)
128
+ return [2 /*return*/];
129
+ this.cont = false;
130
+ this.logHelper(utils_1.Logger.logError, 'mr', "[".concat(project.title, "]: [").concat(branch.name, "] is out of date. Please delete the branch and re-run ship-it."));
131
+ this.logHelper(utils_1.Logger.logInfo, 'mr', 'These are the missing MRs:');
132
+ for (_i = 0, missingMergeRequests_1 = missingMergeRequests; _i < missingMergeRequests_1.length; _i++) {
133
+ mergeRequest = missingMergeRequests_1[_i];
134
+ this.logHelper(utils_1.Logger.logInfo, 'mr', "- ".concat(mergeRequest.url));
135
+ }
136
+ this.logHelper(utils_1.Logger.logInfo, 'mr', '');
137
+ return [2 /*return*/];
138
+ }
139
+ });
140
+ });
141
+ };
142
+ ValidateCommitsTask.prototype.validateCommits = function (project, tag) {
143
+ var _a;
144
+ return __awaiter(this, void 0, void 0, function () {
145
+ var previousReleaseBranchName, previousReleaseMergeRequest, devCommits, _b, shouldCherryPick, invalidCommits;
146
+ var _this = this;
147
+ return __generator(this, function (_c) {
148
+ switch (_c.label) {
149
+ case 0:
150
+ previousReleaseBranchName = utils_1.BranchNames.getRelease(tag.name);
151
+ return [4 /*yield*/, this.gitLabService
152
+ .getMergeRequest(project.id, previousReleaseBranchName)];
153
+ case 1:
154
+ previousReleaseMergeRequest = _c.sent();
155
+ return [4 /*yield*/, this.gitLabService.getCommitsForBranch('dev', project.id, (_a = previousReleaseMergeRequest === null || previousReleaseMergeRequest === void 0 ? void 0 : previousReleaseMergeRequest.dateCreated) !== null && _a !== void 0 ? _a : '')];
156
+ case 2:
157
+ devCommits = _c.sent();
158
+ _b = utils_1.Commits.shouldCherryPick(project, devCommits), shouldCherryPick = _b.shouldCherryPick, invalidCommits = _b.invalidCommits;
159
+ if (!shouldCherryPick)
160
+ return [2 /*return*/];
161
+ this.cont = false;
162
+ this.logHelper(utils_1.Logger.logError, 'commit', "[".concat(project.title, "]: Requires cherrypicking. These are the merge commits that either have the wrong milestone, or no milestone:"));
163
+ invalidCommits.forEach(function (commit) { return _this.logHelper(utils_1.Logger.logError, 'commit', "- ".concat(commit.id)); });
164
+ return [2 /*return*/];
165
+ }
166
+ });
167
+ });
168
+ };
169
+ ValidateCommitsTask.prototype.notifySlack = function (slackNotifier, milestone) {
170
+ return __awaiter(this, void 0, void 0, function () {
171
+ var threadLabel, statusCleanMessage;
172
+ return __generator(this, function (_a) {
173
+ switch (_a.label) {
174
+ case 0:
175
+ if (!slackNotifier)
176
+ return [2 /*return*/];
177
+ threadLabel = "".concat(milestone, " Invalid Commits!");
178
+ statusCleanMessage = 'No projects require cherrypicking';
179
+ // Send formated status update in slack
180
+ return [4 /*yield*/, this.slackService.sendSlackStatusMessage({
181
+ emailList: [],
182
+ threadLabel: threadLabel,
183
+ statusMessage: this.commitsMessage + this.mrMessage,
184
+ statusCleanMessage: statusCleanMessage
185
+ })];
186
+ case 1:
187
+ // Send formated status update in slack
188
+ _a.sent();
189
+ return [2 /*return*/];
190
+ }
191
+ });
192
+ });
193
+ };
194
+ ValidateCommitsTask.prototype.logHelper = function (func, type, message) {
195
+ func(message);
196
+ if (type === 'commit')
197
+ this.commitsMessage += message + '\n';
198
+ else if (type === 'mr')
199
+ this.mrMessage += message + '\n';
200
+ };
201
+ ValidateCommitsTask = __decorate([
202
+ (0, inversify_1.injectable)(),
203
+ __param(0, (0, inversify_1.inject)(types_1.SERVICES.GitLabService)),
204
+ __param(1, (0, inversify_1.inject)(types_1.SERVICES.SlackService)),
205
+ __metadata("design:paramtypes", [services_1.GitLabService,
206
+ services_1.SlackService])
207
+ ], ValidateCommitsTask);
208
+ return ValidateCommitsTask;
209
+ }());
210
+ exports.ValidateCommitsTask = ValidateCommitsTask;