-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathaction.js
137 lines (110 loc) · 3.06 KB
/
action.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
const _ = require('lodash')
const fetch = require('node-fetch')
const Jira = require('./common/net/Jira')
const GitHub = require('./common/net/GitHub')
module.exports = class {
constructor ({ githubEvent, argv, config, githubToken }) {
this.Jira = new Jira({
baseUrl: config.baseUrl,
token: config.token,
email: config.email,
})
this.GitHub = new GitHub({
token: githubToken,
})
this.config = config
this.argv = argv
this.githubEvent = githubEvent
this.githubToken = githubToken
}
async execute () {
const { argv, githubEvent } = this
const projectKey = argv.project
const issuetypeName = argv.issuetype
let tasks = []
if (githubEvent.commits && githubEvent.commits.length > 0) {
tasks = _.flatten(await this.findTodoInCommits(githubEvent.repository, githubEvent.commits))
}
if (tasks.length === 0) {
console.log('no TODO found')
return
}
// map custom fields
const { projects } = await this.Jira.getCreateMeta({
expand: 'projects.issuetypes.fields',
projectKeys: projectKey,
issuetypeNames: issuetypeName,
})
if (projects.length === 0) {
console.error(`project '${projectKey}' not found`)
return
}
const [project] = projects
if (project.issuetypes.length === 0) {
console.error(`issuetype '${issuetypeName}' not found`)
return
}
const issues = tasks.map(async ({ summary, commitUrl }) => {
let providedFields = [{
key: 'project',
value: {
key: projectKey,
},
}, {
key: 'issuetype',
value: {
name: issuetypeName,
},
}, {
key: 'summary',
value: summary,
}]
if (!argv.description) {
argv.description = `Created with GitHub commit ${commitUrl}`
}
providedFields.push({
key: 'description',
value: argv.description,
})
if (argv.fields) {
providedFields = [...providedFields, ...this.transformFields(argv.fields)]
}
const payload = providedFields.reduce((acc, field) => {
acc.fields[field.key] = field.value
return acc
}, {
fields: {},
})
return (await this.Jira.createIssue(payload)).key
})
return { issues: await Promise.all(issues) }
}
transformFields (fields) {
return Object.keys(fields).map(fieldKey => ({
key: fieldKey,
value: fields[fieldKey],
}))
}
async findTodoInCommits (repo, commits) {
return Promise.all(commits.map(async (c) => {
const res = await this.GitHub.getCommitDiff(repo.full_name, c.id)
const rx = /^\+.*(?:\/\/|#)\s+TODO:(.*)$/gm
return getMatches(res, rx, 1)
.map(_.trim)
.filter(Boolean)
.map(s => ({
commitUrl: c.url,
summary: s.slice(0, 255),
}))
}))
}
}
function getMatches (string, regex, index) {
index || (index = 1)
const matches = []
let match
while (match = regex.exec(string)) {
matches.push(match[index])
}
return matches
}