Skip to content

Commit 75b940d

Browse files
hxzhao527jimthedev
authored andcommittedFeb 21, 2019
fix(config loader): deal with config file charset (#584)
Make sure that config file charset is utf-8, or throw detail to notify
1 parent 8fbf371 commit 75b940d

File tree

4 files changed

+24
-1
lines changed

4 files changed

+24
-1
lines changed
 

‎package.json

+2
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,11 @@
8282
"fs-extra": "^7.0.0",
8383
"glob": "7.1.3",
8484
"inquirer": "6.2.0",
85+
"is-utf8": "^0.2.1",
8586
"lodash": "4.17.11",
8687
"minimist": "1.2.0",
8788
"shelljs": "0.7.6",
89+
"strip-bom": "3.0.0",
8890
"strip-json-comments": "2.0.1"
8991
},
9092
"babel": {

‎src/configLoader/getContent.js

+20-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import fs from 'fs';
22
import path from 'path';
33

44
import stripJSONComments from 'strip-json-comments';
5+
import isUTF8 from 'is-utf8';
6+
import stripBom from 'strip-bom';
57

68
import { getNormalizedConfig } from '../configLoader';
79

@@ -17,7 +19,7 @@ export default getConfigContent;
1719
function readConfigContent (configPath) {
1820
const parsedPath = path.parse(configPath)
1921
const isRcFile = parsedPath.ext !== '.js' && parsedPath.ext !== '.json';
20-
const jsonString = fs.readFileSync(configPath, 'utf-8');
22+
const jsonString = readConfigFileContent(configPath);
2123
const parse = isRcFile ?
2224
(contents) => JSON.parse(stripJSONComments(contents)) :
2325
(contents) => JSON.parse(contents);
@@ -61,3 +63,20 @@ function getConfigContent (configPath, baseDirectory) {
6163
const content = readConfigContent(resolvedPath);
6264
return getNormalizedConfig(configBasename, content);
6365
};
66+
67+
/**
68+
* Read proper content from config file.
69+
* If the chartset of the config file is not utf-8, one error will be thrown.
70+
* @param {String} configPath
71+
* @return {String}
72+
*/
73+
function readConfigFileContent (configPath) {
74+
75+
let rawBufContent = fs.readFileSync(configPath);
76+
77+
if (!isUTF8(rawBufContent)) {
78+
throw new Error(`The config file at "${configPath}" contains invalid charset, expect utf8`);
79+
}
80+
81+
return stripBom(rawBufContent.toString("utf8"));
82+
}

‎test/fixtures/invalid-charset.json

98 Bytes
Binary file not shown.

‎test/tests/configLoader.js

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ describe('configLoader', function () {
1313
.to.throw(/parsing json at/i);
1414
expect(() => getContent('invalid-json-rc', fixturesPath))
1515
.to.throw(/parsing json at/i);
16+
expect(() => getContent('invalid-charset.json', fixturesPath))
17+
.to.throw(/contains invalid charset/i);
1618
});
1719

1820
it('parses json files with comments', function () {

0 commit comments

Comments
 (0)
Please sign in to comment.