Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
95 lines (85 loc) · 2.78 KB

File metadata and controls

95 lines (85 loc) · 2.78 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
const https = require('https');
const shell = require('shelljs');
function httpGet(server, path, headers) {
return new Promise((resolve, reject) => {
const options = {
hostname: server,
port: 443,
path: path,
method: 'GET',
headers: {'User-Agent': 'script', ...headers}
};
https
.get(
options,
(res) => {
let json = '';
res.on('data', (chunk) => json += chunk.toString());
res.on('end', () => resolve(json));
})
.on('error', (e) => reject(e));
});
};
let warnNoToken = true;
async function githubGet(path) {
const token = process.env['TOKEN'];
const headers = {};
if (token) {
headers.Authorization = 'token ' + token;
} else if (warnNoToken) {
warnNoToken = false;
console.warn('############################################################');
console.warn('############################################################');
console.warn('WARNING: you should set the TOKEN variable to a github token');
console.warn('############################################################');
console.warn('############################################################');
}
return JSON.parse(await httpGet('api.github.com', '/repos/angular/angular/' + path, headers));
};
async function githubPrInfo(prNumber) {
const pr = (await githubGet('pulls/' + prNumber));
const label = pr.head.label.split(':');
const user = label[0];
const branch = label[1];
return {
commits: pr.commits,
repository: {
user: user,
gitUrl: `git@github.com:${user}/angular.git`,
},
branch: branch
};
}; // trailing ; so that clang-format is not confused on async function
function gitHasLocalModifications() {
return execNoFatal('git diff-index --quiet HEAD --').code != 0;
}
function execNoFatal(cmd, options) {
const fatal = shell.config.fatal;
try {
shell.config.fatal = false;
return shell.exec(cmd, options);
} finally {
shell.config.fatal = fatal;
}
}
function getCurrentBranch() {
return shell.exec('git branch', {silent: true})
.stdout.toString()
.split('\n') // Break into lines
.map((v) => v.trim()) // trim
.filter((b) => b[0] == '*') // select current branch
.map((b) => b.split(' ')[1])[0]; // remove leading `*`
}
exports.httpGet = httpGet;
exports.githubGet = githubGet;
exports.githubPrInfo = githubPrInfo;
exports.gitHasLocalModifications = gitHasLocalModifications;
exports.execNoFatal = execNoFatal;
exports.getCurrentBranch = getCurrentBranch;
Morty Proxy This is a proxified and sanitized view of the page, visit original site.