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 pathhandler.ts
175 lines (143 loc) · 4.4 KB
/
handler.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
import { Context, Logger } from 'probot'; // eslint-disable-line no-unused-vars
import Analyzer from './analyzer';
import Notifier from './notifier';
/**
* Configuration information.
*/
interface Config {
/** Flag indicating whether to notify when errors occur. */
notifyOnError: boolean;
/** Flag indicating whether to ignore events from private repos. */
skipPrivateRepos: boolean;
/** Value over which to send a notification. Ranges from [0,1]. */
threshold: number;
}
type GetConfig = (
context: Context,
filename: string,
defaults: Config
) => Config;
const getConfig = require('probot-config') as GetConfig;
const defaults = {
notifyOnError: true,
skipPrivateRepos: true,
threshold: 0.8
};
/**
* Handles events received by Probot.
*/
export default class Handler {
/** Used to analyze events */
private analyzer: Analyzer;
/** Probot logger */
private log: Logger;
/** Used to send notifications of analysis */
private notifier: Notifier;
constructor(logger: Logger) {
this.analyzer = new Analyzer(logger);
this.log = logger;
this.notifier = new Notifier(logger);
}
/**
* Handles an event described by `context`.
*/
async handle(context: Context): Promise<void> {
const config = await getConfig(context, 'biohazard-alert.yml', defaults);
const info = this.parseContext(context);
if (!info) {
this.log.info(
`Skipping unhandleable event: ${context.event}.${context.payload.action}`
);
return;
}
if (info.isRepoPrivate && config.skipPrivateRepos) {
this.log.info(`Skipping event in private repository ${info.source}`);
return;
}
if (info.isBot) {
this.log.info(`Skipping event generated by a bot ${info.source}`);
return;
}
let scores;
try {
scores = await this.analyzer.analyze(info);
} catch (e) {
if (config.notifyOnError) {
this.notifier.notifyError(info, e.error.error.message, e.message);
}
throw e;
}
for (let attr in scores) {
this.log.info(`Model ${attr} score ${scores[attr]} for ${info.source}`);
}
const thresholdScores = this.isOverThreshold(scores, config.threshold);
if (thresholdScores) {
this.notifier.notify(info, thresholdScores);
}
}
/**
* Determines whether any of the `scores` are over the `threshold`.
*
* Returns only the scores that exceed the threshold or `null` if none of them did.
*/
private isOverThreshold(scores: Scores, threshold: number): Scores | null {
let thresholdScores: Scores = {};
let crossedThreshold = false;
for (let attr in scores) {
if (scores[attr] >= threshold) {
thresholdScores[attr] = scores[attr];
crossedThreshold = true;
}
}
return crossedThreshold ? thresholdScores : null;
}
/**
* Parses the important bits out of `context`.
*
* Returns an `EventInfo` structure or `null` if the event represented is not supported.
*/
private parseContext(context: Context): EventInfo | null {
const fullEvent = `${context.event}.${context.payload.action}`;
switch (fullEvent) {
case 'issues.opened':
case 'issues.edited':
return {
author: context.payload.issue.user.login,
event: context.event,
fullEvent: fullEvent,
isBot: context.isBot,
isRepoPrivate: context.payload.repository.private,
source: context.payload.issue.html_url,
content:
'# ' +
context.payload.issue.title +
'\n\n' +
context.payload.issue.body
};
case 'commit_comment.created':
return {
author: context.payload.comment.user.login,
event: context.event,
fullEvent: fullEvent,
isBot: context.isBot,
isRepoPrivate: context.payload.repository.private,
source: context.payload.comment.html_url,
content: context.payload.comment.body
};
case 'issue_comment.created':
case 'issue_comment.edited':
return {
author: context.payload.comment.user.login,
event: context.event,
fullEvent: fullEvent,
isBot: context.isBot,
isRepoPrivate: context.payload.repository.private,
source: context.payload.comment.html_url,
content: context.payload.comment.body
};
default: {
return null;
}
}
}
}