-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
45 lines (40 loc) · 1.13 KB
/
index.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
class Command {
private pattern = /CMD +((([\w-.]+\/[\w-.]+)?#\d+) *((, *)? *and +|, *)?)+/i
constructor(
private cmd: RegExp,
private callback: (context: any, issues: RegExpMatchArray) => void
) {}
get command() {
const raw = this.pattern.source
// Warning: We ignore this.cmd flags
return new RegExp(raw.replace(/CMD/, this.cmd.source), this.pattern.flags)
}
issues(str: string) {
return str.match(/(?:[\w-.]+\/[\w-.]+)?#\d+/g)
}
listener(context: any) {
const match = (context.payload.comment.body as string).match(this.command)
if (match) {
this.callback(context, this.issues(match[0]) as RegExpMatchArray)
}
}
}
/**
* A Probot extension to make it easier to working with issue commands.
*
* @example
*
* // Type `closes #1, and owner/repo#2`
* addCommand(robot, /clos(es|ing)/, (context, issues) => {
* console.log(issues)
* // ['#1','owner/repo#2', ...]
* })
*/
export const addCommand = (
robot: any,
name: RegExp,
callback: (context: any, issues: RegExpMatchArray) => void
) => {
const command = new Command(name, callback)
robot.on('issue_comment.created', command.listener.bind(command))
}