forked from rogeriopvl/gulp-jsonlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
247 lines (225 loc) · 6.61 KB
/
index.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
'use strict'
var { readFile } = require('fs/promises')
var mapStream = require('map-stream')
var colors = require('ansi-colors')
var jsonlint = require('@prantlf/jsonlint')
var validator = require('@prantlf/jsonlint/lib/validator')
var sorter = require('@prantlf/jsonlint/lib/sorter')
var printer = require('@prantlf/jsonlint/lib/printer')
var through = require('through2')
var PluginError = require('plugin-error')
var log = require('fancy-log')
var jsonLintPlugin = function(options) {
options = Object.assign(
{
mode: 'json',
ignoreComments: false,
ignoreTrailingCommas: false,
allowSingleQuotedStrings: false,
allowDuplicateObjectKeys: true,
schema: {},
format: false,
prettyPrint: false,
indent: 2,
sortKeys: false,
pruneComments: false,
stripObjectKeys: false,
enforceDoubleQuotes: false,
enforceSingleQuotes: false,
trimTrailingCommas: false
},
options
)
var schema = options.schema
// Share the same options for parsing both data and schema for simplicity.
var parserOptions = {
mode: options.mode,
ignoreComments:
options.ignoreComments ||
options.cjson ||
options.mode === 'cjson' ||
options.mode === 'json5',
ignoreTrailingCommas:
options.ignoreTrailingCommas || options.mode === 'json5',
allowSingleQuotedStrings:
options.allowSingleQuotedStrings || options.mode === 'json5',
allowDuplicateObjectKeys: options.allowDuplicateObjectKeys,
environment: schema.environment
}
var schemaContent
function createResult(error) {
var result = {}
if (error) {
result.error = error
result.message = error.message
result.success = false
} else {
result.success = true
}
return result
}
function formatOutput(data, parsedData, file) {
var formatted
if (options.format) {
if (options.sortKeys) {
parsedData = sorter.sortObject(parsedData)
}
formatted = JSON.stringify(parsedData, null, options.indent) + '\n'
} else if (options.prettyPrint) {
parserOptions.rawTokens = true
var tokens = jsonlint.tokenize(data, parserOptions)
// TODO: Support sorting tor the tokenized input too.
formatted = printer.print(tokens, {
indent: options.indent,
pruneComments: options.pruneComments,
stripObjectKeys: options.stripObjectKeys,
enforceDoubleQuotes: options.enforceDoubleQuotes,
enforceSingleQuotes: options.enforceSingleQuotes,
trimTrailingCommas: options.trimTrailingCommas
}) + '\n'
}
if (formatted) {
file.contents = Buffer.from(formatted)
}
}
function validateSchema(data, file, finish) {
var lastError
try {
var validate = validator.compile(schemaContent, parserOptions)
var parsedData = validate(data, parserOptions)
formatOutput(data, parsedData, file)
} catch (error) {
lastError = error
}
finish(lastError)
}
function loadAndValidateSchema(data, file, finish) {
if (schemaContent) {
validateSchema(data, file, finish)
} else {
const schemas = Array.isArray(schema.src) ? schema.src : [schema.src]
Promise
.all(schemas.map(schema => readFile(schema, 'utf-8')))
.then(content => {
schemaContent = content
validateSchema(data, file, finish)
})
.catch(error => finish(error))
}
}
return mapStream(function(file, cb) {
var lastError
function finish(error) {
file.jsonlint = createResult(error)
cb(null, file)
}
try {
var data = String(file.contents)
// Parse JSON data from string by the schema validator to get
// error messages including the location in the source string.
if (schema.src) {
loadAndValidateSchema(data, file, finish)
return
}
var parsedData = jsonlint.parse(data, parserOptions)
formatOutput(data, parsedData, file)
} catch (error) {
lastError = error
}
finish(lastError)
})
}
const FORMATTERS = {
prose: require('./lib/formatters/prose'),
msbuild: require('./lib/formatters/visual-studio')
}
const REPORTERS = {
exception: require('./lib/reporters/exception'),
jshint: require('./lib/reporters/jshint-style')
}
function getProjectRelativeFilePath(file) {
var filePath = file.path
if (filePath.indexOf(__dirname) === 0) {
return filePath.substr(__dirname.length + 1)
}
return filePath
}
var defaultCompleteReporter = function(file) {
log(colors.yellow('Error on file ') + colors.magenta(file.path))
log(colors.red(file.jsonlint.message))
}
jsonLintPlugin.reporter = function(customCompleteReporter) {
var completeReporter = defaultCompleteReporter
var formatter
var reporter
if (typeof customCompleteReporter === 'function') {
completeReporter = customCompleteReporter
} else if (typeof customCompleteReporter === 'object') {
formatter = customCompleteReporter.formatter || 'prose'
reporter = customCompleteReporter.reporter || 'exception'
if (typeof formatter !== 'function') {
formatter = FORMATTERS[formatter]
}
if (typeof reporter !== 'function') {
reporter = REPORTERS[reporter]
}
}
return mapStream(function(file, cb) {
if (file.jsonlint && !file.jsonlint.success) {
if (formatter) {
var filePath = getProjectRelativeFilePath(file)
log(
formatter(filePath, file.jsonlint.error) +
'\n' +
reporter(filePath, file.jsonlint.error)
)
} else {
completeReporter(file)
}
}
return cb(null, file)
})
}
/**
* Fail when an jsonlint error is found in jsonlint results.
*/
jsonLintPlugin.failOnError = function() {
return through.obj(function(file, enc, cb) {
if (file.jsonlint.success === false) {
var error = new PluginError('gulp-jsonlint', {
name: 'JSONLintError',
filename: file.path,
message: file.jsonlint.message
})
}
return cb(error, file)
})
}
/**
* Fail when the stream ends if any jsonlint error(s) occurred
*/
jsonLintPlugin.failAfterError = function() {
var errorCount = 0
return through.obj(
function(file, enc, cb) {
errorCount += file.jsonlint.success === false
cb(null, file)
},
function(cb) {
if (errorCount > 0) {
this.emit(
'error',
new PluginError('gulp-jsonlint', {
name: 'JSONLintError',
message:
'Failed with ' +
errorCount +
(errorCount === 1 ? ' error' : ' errors')
})
)
}
cb()
}
)
}
module.exports = jsonLintPlugin