This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcli.ts
156 lines (128 loc) · 3.69 KB
/
cli.ts
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
import Octokit from '@octokit/rest';
import Analyzer from './analyzer';
interface Options {
verbose: boolean;
}
type IssueOrComment =
| Octokit.IssuesGetResponse
| Octokit.IssuesGetCommentResponse;
type Repo = Octokit.ReposGetResponse;
type User =
| Octokit.IssuesGetResponseUser
| Octokit.IssuesGetCommentResponseUser;
type ScoreMap = { [s: string]: number };
// Disable Probot logging
const logger = {
debug: () => {},
info: () => {}
};
/**
* Command-line interface for the analysis API.
*/
export default class Cli {
/** Access to the analysis API */
private analyzer: Analyzer;
/** Access to the GitHub API */
private octokit: Octokit;
constructor() {
this.octokit = new Octokit();
this.analyzer = new Analyzer(logger);
}
/**
* Execute the command according to the arguments passed on the command line.
*/
async run() {
try {
const [options, info] = await this.parseArguments();
const analysis = await this.analyzer.getAnalysis(info);
analysis.forEach(response => {
if (options.verbose) {
console.log(JSON.stringify(response, null, 2));
} else {
const scores = this.getScores(response);
Object.keys(scores)
.sort()
.forEach(key => {
console.log(`${key}: ${scores[key]}`);
});
console.log('');
}
});
} catch (e) {
console.error(e);
}
}
private action(item: IssueOrComment): string {
return item.created_at === item.updated_at ? 'created' : 'edited';
}
private eventInfo(
item: IssueOrComment,
repo: Repo,
eventName: string,
uri: string
): EventInfo {
return {
author: item.user.login,
isBot: this.isBot(item.user),
event: eventName,
fullEvent: this.fullEvent(eventName, this.action(item)),
isRepoPrivate: repo.private,
source: uri,
content: item.body
};
}
private fullEvent(event: string, action: string): string {
return `${event}.${action}`;
}
private getScores(response: Perspective.Response): ScoreMap {
const attrScores = response.attributeScores;
let scores: ScoreMap = {};
Object.keys(attrScores).forEach(key => {
scores[key] = attrScores[key].summaryScore.value;
});
return scores;
}
private isBot(user: User): boolean {
return user.type !== 'User';
}
private async parseArguments(): Promise<[Options, EventInfo]> {
const options = require('yargs')
.usage('Usage: $0 [options] url')
.boolean('verbose')
.alias('v', 'verbose')
.describe('v', 'Write out the full API response').argv;
const info = await this.parseUri(options._);
return [options, info];
}
private async parseUri(args: string[]): Promise<EventInfo> {
const uriPattern = /^https:\/\/github.com\/([^/]+)\/([^/]+)\/issues\/(\d+)(#issuecomment-(\d+))?$/;
const uri = args[0];
const match = uriPattern.exec(uri);
if (!match) {
throw new Error(`Invalid URI: ${uri}`);
}
const owner = match[1];
const repoName = match[2];
const issueNumber = Number(match[3]);
const commentNumber = Number(match[5]);
const { data: repo } = await this.octokit.repos.get({
owner,
repo: repoName
});
if (commentNumber) {
const { data: comment } = await this.octokit.issues.getComment({
owner,
repo: repoName,
comment_id: commentNumber
});
return this.eventInfo(comment, repo, 'issue_comment', uri);
} else {
const { data: issue } = await this.octokit.issues.get({
owner,
repo: repoName,
number: issueNumber
});
return this.eventInfo(issue, repo, 'issues', uri);
}
}
}