Skip to content

Commit 36a5a62

Browse files
fix(utils): move generateString to platform utils to avoid importing crypto module into client builds; (#6789)
* chore(ci): Add release-it script; * fix(utils): move generateString util to platform utils to avoid importing crypto module into client build; --------- Co-authored-by: Jay <[email protected]>
1 parent cceb7b1 commit 36a5a62

File tree

5 files changed

+51
-47
lines changed

5 files changed

+51
-47
lines changed

lib/helpers/formDataToStream.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ import util from 'util';
22
import {Readable} from 'stream';
33
import utils from "../utils.js";
44
import readBlob from "./readBlob.js";
5+
import platform from "../platform/index.js";
56

6-
const BOUNDARY_ALPHABET = utils.ALPHABET.ALPHA_DIGIT + '-_';
7+
const BOUNDARY_ALPHABET = platform.ALPHABET.ALPHA_DIGIT + '-_';
78

89
const textEncoder = typeof TextEncoder === 'function' ? new TextEncoder() : new util.TextEncoder();
910

@@ -63,7 +64,7 @@ const formDataToStream = (form, headersHandler, options) => {
6364
const {
6465
tag = 'form-data-boundary',
6566
size = 25,
66-
boundary = tag + '-' + utils.generateString(size, BOUNDARY_ALPHABET)
67+
boundary = tag + '-' + platform.generateString(size, BOUNDARY_ALPHABET)
6768
} = options || {};
6869

6970
if(!utils.isFormData(form)) {

lib/platform/node/index.js

+26
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,38 @@
1+
import crypto from 'crypto';
12
import URLSearchParams from './classes/URLSearchParams.js'
23
import FormData from './classes/FormData.js'
34

5+
const ALPHA = 'abcdefghijklmnopqrstuvwxyz'
6+
7+
const DIGIT = '0123456789';
8+
9+
const ALPHABET = {
10+
DIGIT,
11+
ALPHA,
12+
ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
13+
}
14+
15+
const generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
16+
let str = '';
17+
const {length} = alphabet;
18+
const randomValues = new Uint32Array(size);
19+
crypto.randomFillSync(randomValues);
20+
for (let i = 0; i < size; i++) {
21+
str += alphabet[randomValues[i] % length];
22+
}
23+
24+
return str;
25+
}
26+
27+
428
export default {
529
isNode: true,
630
classes: {
731
URLSearchParams,
832
FormData,
933
Blob: typeof Blob !== 'undefined' && Blob || null
1034
},
35+
ALPHABET,
36+
generateString,
1137
protocols: [ 'http', 'https', 'file', 'data' ]
1238
};

lib/utils.js

-25
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use strict';
22

33
import bind from './helpers/bind.js';
4-
import crypto from 'crypto';
54

65
// utils is a library of generic helper functions non-specific to axios
76

@@ -603,28 +602,6 @@ const toFiniteNumber = (value, defaultValue) => {
603602
return value != null && Number.isFinite(value = +value) ? value : defaultValue;
604603
}
605604

606-
const ALPHA = 'abcdefghijklmnopqrstuvwxyz'
607-
608-
const DIGIT = '0123456789';
609-
610-
const ALPHABET = {
611-
DIGIT,
612-
ALPHA,
613-
ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
614-
}
615-
616-
const generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
617-
let str = '';
618-
const {length} = alphabet;
619-
const randomValues = new Uint32Array(size);
620-
crypto.randomFillSync(randomValues);
621-
for (let i = 0; i < size; i++) {
622-
str += alphabet[randomValues[i] % length];
623-
}
624-
625-
return str;
626-
}
627-
628605
/**
629606
* If the thing is a FormData object, return true, otherwise return false.
630607
*
@@ -752,8 +729,6 @@ export default {
752729
findKey,
753730
global: _global,
754731
isContextDefined,
755-
ALPHABET,
756-
generateString,
757732
isSpecCompliantForm,
758733
toJSONObject,
759734
isAsyncFn,

test/unit/platform/index.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import platform from "../../../lib/platform/index.js";
2+
import assert from "assert";
3+
4+
describe('generateString', function () {
5+
it('should generate a string of the specified length using the default alphabet', function () {
6+
const size = 10;
7+
const str = platform.generateString(size);
8+
9+
assert.strictEqual(str.length, size);
10+
});
11+
12+
it('should generate a string using only characters from the default alphabet', function () {
13+
const size = 10;
14+
const alphabet = platform.ALPHABET.ALPHA_DIGIT;
15+
16+
const str = platform.generateString(size, alphabet);
17+
18+
for (let char of str) {
19+
assert.ok(alphabet.includes(char), `Character ${char} is not in the alphabet`);
20+
}
21+
});
22+
});

test/unit/utils/utils.js

-20
Original file line numberDiff line numberDiff line change
@@ -80,24 +80,4 @@ describe('utils', function (){
8080
assert.strictEqual(JSON.stringify(jsonObject), JSON.stringify({x: 1, y:2, obj: {ok: 1}}))
8181
});
8282
});
83-
84-
describe('generateString', function () {
85-
it('should generate a string of the specified length using the default alphabet', function () {
86-
const size = 10;
87-
const str = utils.generateString(size);
88-
89-
assert.strictEqual(str.length, size);
90-
});
91-
92-
it('should generate a string using only characters from the default alphabet', function () {
93-
const size = 10;
94-
const alphabet = utils.ALPHABET.ALPHA_DIGIT;
95-
96-
const str = utils.generateString(size, alphabet);
97-
98-
for (let char of str) {
99-
assert.ok(alphabet.includes(char), `Character ${char} is not in the alphabet`);
100-
}
101-
});
102-
});
10383
});

0 commit comments

Comments
 (0)