-
Notifications
You must be signed in to change notification settings - Fork 730
/
Copy pathparser.js
316 lines (259 loc) · 6.89 KB
/
parser.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
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
'use strict'
const CATCH_ALL = /()(.+)/gi
const SCISSOR = '# ------------------------ >8 ------------------------'
function trimOffNewlines (input) {
const result = input.match(/[^\r\n]/)
if (!result) {
return ''
}
const firstIndex = result.index
let lastIndex = input.length - 1
while (input[lastIndex] === '\r' || input[lastIndex] === '\n') {
lastIndex--
}
return input.substring(firstIndex, lastIndex + 1)
}
function append (src, line) {
if (src) {
src += '\n' + line
} else {
src = line
}
return src
}
function getCommentFilter (char) {
return function (line) {
return line.charAt(0) !== char
}
}
function truncateToScissor (lines) {
const scissorIndex = lines.indexOf(SCISSOR)
if (scissorIndex === -1) {
return lines
}
return lines.slice(0, scissorIndex)
}
function getReferences (input, regex) {
const references = []
let referenceSentences
let referenceMatch
const reApplicable = input.match(regex.references) !== null
? regex.references
: CATCH_ALL
while ((referenceSentences = reApplicable.exec(input))) {
const action = referenceSentences[1] || null
const sentence = referenceSentences[2]
while ((referenceMatch = regex.referenceParts.exec(sentence))) {
let owner = null
let repository = referenceMatch[1] || ''
const ownerRepo = repository.split('/')
if (ownerRepo.length > 1) {
owner = ownerRepo.shift()
repository = ownerRepo.join('/')
}
const reference = {
action,
owner,
repository: repository || null,
issue: referenceMatch[3],
raw: referenceMatch[0],
prefix: referenceMatch[2]
}
references.push(reference)
}
}
return references
}
function passTrough () {
return true
}
function parser (raw, options, regex) {
if (!raw || !raw.trim()) {
throw new TypeError('Expected a raw commit')
}
if (!options || (typeof options === 'object' && !Object.keys(options).length)) {
throw new TypeError('Expected options')
}
if (!regex) {
throw new TypeError('Expected regex')
}
let currentProcessedField
let mentionsMatch
const otherFields = {}
const commentFilter = typeof options.commentChar === 'string'
? getCommentFilter(options.commentChar)
: passTrough
const gpgFilter = line => !line.match(/^\s*gpg:/)
const rawLines = trimOffNewlines(raw).split(/\r?\n/)
const lines = truncateToScissor(rawLines).filter(commentFilter).filter(gpgFilter)
let continueNote = false
let isBody = true
const headerCorrespondence = options.headerCorrespondence?.map(function (part) {
return part.trim()
}) || []
const revertCorrespondence = options.revertCorrespondence?.map(function (field) {
return field.trim()
}) || []
const mergeCorrespondence = options.mergeCorrespondence?.map(function (field) {
return field.trim()
}) || []
let body = null
let footer = null
let header = null
const mentions = []
let merge = null
const notes = []
const references = []
let revert = null
if (lines.length === 0) {
return {
body,
footer,
header,
mentions,
merge,
notes,
references,
revert,
scope: null,
subject: null,
type: null
}
}
// msg parts
merge = lines.shift()
const mergeParts = {}
const headerParts = {}
body = ''
footer = ''
const mergeMatch = merge.match(options.mergePattern)
if (mergeMatch && options.mergePattern) {
merge = mergeMatch[0]
header = lines.shift()
while (header !== undefined && !header.trim()) {
header = lines.shift()
}
if (!header) {
header = ''
}
mergeCorrespondence.forEach(function (partName, index) {
const partValue = mergeMatch[index + 1] || null
mergeParts[partName] = partValue
})
} else {
header = merge
merge = null
mergeCorrespondence.forEach(function (partName) {
mergeParts[partName] = null
})
}
const headerMatch = header.match(options.headerPattern)
if (headerMatch) {
headerCorrespondence.forEach(function (partName, index) {
const partValue = headerMatch[index + 1] || null
headerParts[partName] = partValue
})
} else {
headerCorrespondence.forEach(function (partName) {
headerParts[partName] = null
})
}
references.push(...getReferences(header, {
references: regex.references,
referenceParts: regex.referenceParts
}))
// body or footer
lines.forEach(function (line) {
if (options.fieldPattern) {
const fieldMatch = options.fieldPattern.exec(line)
if (fieldMatch) {
currentProcessedField = fieldMatch[1]
return
}
if (currentProcessedField) {
otherFields[currentProcessedField] = append(otherFields[currentProcessedField], line)
return
}
}
let referenceMatched
// this is a new important note
const notesMatch = line.match(regex.notes)
if (notesMatch) {
continueNote = true
isBody = false
footer = append(footer, line)
const note = {
title: notesMatch[1],
text: notesMatch[2]
}
notes.push(note)
return
}
const lineReferences = getReferences(line, {
references: regex.references,
referenceParts: regex.referenceParts
})
if (lineReferences.length > 0) {
isBody = false
referenceMatched = true
continueNote = false
}
Array.prototype.push.apply(references, lineReferences)
if (referenceMatched) {
footer = append(footer, line)
return
}
if (continueNote) {
notes[notes.length - 1].text = append(notes[notes.length - 1].text, line)
footer = append(footer, line)
return
}
if (isBody) {
body = append(body, line)
} else {
footer = append(footer, line)
}
})
if (options.breakingHeaderPattern && notes.length === 0) {
const breakingHeader = header.match(options.breakingHeaderPattern)
if (breakingHeader) {
const noteText = breakingHeader[3] // the description of the change.
notes.push({
title: 'BREAKING CHANGE',
text: noteText
})
}
}
while ((mentionsMatch = regex.mentions.exec(raw))) {
mentions.push(mentionsMatch[1])
}
// does this commit revert any other commit?
const revertMatch = raw.match(options.revertPattern)
if (revertMatch) {
revert = {}
revertCorrespondence.forEach(function (partName, index) {
const partValue = revertMatch[index + 1] || null
revert[partName] = partValue
})
} else {
revert = null
}
notes.forEach(function (note) {
note.text = trimOffNewlines(note.text)
})
const msg = {
...headerParts,
...mergeParts,
merge,
header,
body: body ? trimOffNewlines(body) : null,
footer: footer ? trimOffNewlines(footer) : null,
notes,
references,
mentions,
revert,
...otherFields
}
return msg
}
module.exports = parser