forked from estherk0/jenkins-trigger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
168 lines (150 loc) · 4.96 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
const request = require('request');
const core = require('@actions/core');
let timer = setTimeout(() => {
core.setFailed("Job Timeout");
core.error("Exception Error: Timed out");
}, (Number(core.getInput('timeout')) * 1000));
const sleep = (seconds) => {
return new Promise((resolve, reject) => {
setTimeout(resolve, (seconds * 1000));
});
};
async function triggerJenkinsJob(jobName, params, headers) {
const jenkinsEndpoint = core.getInput('url');
const jsonReq = {
method: 'GET',
url: `${jenkinsEndpoint}/job/${jobName}/api/json`,
headers: headers
};
const isParameterized = await new Promise((resolve, reject) =>
request(jsonReq, (err, res, body) => {
if (err) {
core.setFailed(err);
core.error(JSON.stringify(err));
clearTimeout(timer);
reject();
}
resolve(body.search("ParametersDefinitionProperty") >= 0);
})
);
const req = {
method: 'POST',
url: `${jenkinsEndpoint}/job/${jobName}${isParameterized ? '/buildWithParameters' : '/build'}`,
form: isParameterized ? params : undefined,
headers: headers
};
return new Promise((resolve, reject) =>
request(req, (err, res) => {
if (err) {
core.setFailed(err);
core.error(JSON.stringify(err));
clearTimeout(timer);
reject();
return;
}
const location = res.headers['location'];
if (!location) {
const errorMessage = "Failed to find location header in response!";
core.setFailed(errorMessage);
core.error(errorMessage);
clearTimeout(timer);
reject();
return;
}
resolve(location);
})
);
}
async function getJobStatus(jobName, statusUrl, headers) {
if (!statusUrl.endsWith('/'))
statusUrl += '/';
const req = {
method: 'GET',
url: `${statusUrl}api/json`,
headers: headers
}
return new Promise((resolve, reject) =>
request(req, (err, res, body) => {
if (err) {
clearTimeout(timer);
reject(err);
}
try {
resolve(JSON.parse(body));
} catch(err) {
core.info(`Failed to parse body err: ${err}, body: ${body}`);
resolve({timestamp: 0}); // try again
}
})
);
}
async function waitJenkinsJob(jobName, timestamp, queueItemUrl, headers) {
const sleepInterval = 5;
let buildUrl = undefined
core.info(`>>> Waiting for '${jobName}' ...`);
while (true) {
// check the queue until the job is assigned a build number
if (!buildUrl) {
let queueData = await getJobStatus(jobName, queueItemUrl, headers);
if (queueData.cancelled)
throw new Error(`Job '${jobName}' was cancelled.`);
if (queueData.executable && queueData.executable.url) {
buildUrl = queueData.executable.url;
core.info(`>>> Job '${jobName}' started executing. BuildUrl=${buildUrl}`);
}
if (!buildUrl) {
core.info(`>>> Job '${jobName}' is queued (Reason: '${queueData.why}'). Sleeping for ${sleepInterval}s...`);
await sleep(sleepInterval);
continue;
}
}
let buildData = await getJobStatus(jobName, buildUrl, headers);
if (buildData.inProgress === false) {
if (buildData.result == "SUCCESS") {
core.info(`>>> Job '${buildData.fullDisplayName}' completed successfully with status ${buildData.result}!`);
break;
} else if (buildData.result == "FAILURE" || buildData.result == "ABORTED" || buildData.result == "UNSTABLE") {
throw new Error(`Job '${buildData.fullDisplayName}' failed with status ${buildData.result}.`);
}
}
core.info(`>>> Job '${buildData.fullDisplayName}' is executing (Duration: ${buildData.duration}ms, Expected: ${buildData.estimatedDuration}ms), Build still running. Sleeping for ${sleepInterval}s...`);
await sleep(sleepInterval); // API call interval
}
}
async function main() {
try {
// User input params
let params = {};
let startTs = + new Date();
let jobName = core.getInput('job_name');
if (core.getInput('parameter')) {
params = JSON.parse(core.getInput('parameter'));
core.info(`>>> Parameter ${params.toString()}`);
}
// create auth token for Jenkins API
const API_TOKEN = Buffer.from(`${core.getInput('user_name')}:${core.getInput('api_token')}`).toString('base64');
let headers = {
'Authorization': `Basic ${API_TOKEN}`
}
if (core.getInput('headers')) {
let user_headers = JSON.parse(core.getInput('headers'));
headers = {
...headers,
...user_headers
}
}
// POST API call
let queueItemUrl = await triggerJenkinsJob(jobName, params, headers);
// Waiting for job completion
if (core.getInput('wait') == 'true') {
await waitJenkinsJob(jobName, startTs, queueItemUrl, headers);
}
} catch (err) {
core.setFailed(err.message);
core.error(err.message);
} finally {
clearTimeout(timer);
}
}
process.env.NODE_TLS_REJECT_UNAUTHORIZED="0";
main();