Skip to content

Commit ac5ec19

Browse files
achingbrainlidel
andauthored
fix: replace node buffers with uint8arrays (#34)
Swaps use of node Buffers for Uint8Arrays BREAKING CHANGE: this module now only has deps that use Uint8Arrays and not Buffers Co-authored-by: Marcin Rataj <lidel@lidel.org>
1 parent b568dc6 commit ac5ec19

10 files changed

+62
-69
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ stages:
66
- cov
77

88
node_js:
9-
- '12'
10-
- '10'
9+
- 'lts/*'
10+
- 'node'
1111

1212
os:
1313
- linux

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -212,11 +212,11 @@ Complex validation of multiaddr can be built using `isIPFS.multiaddr` and [`maf
212212

213213
### `isIPFS.multiaddr(addr)`
214214

215-
Returns `true` if the provided `string`, [`Multiaddr`](https://github.com/multiformats/js-multiaddr) or `Buffer` represents a valid multiaddr or `false` otherwise.
215+
Returns `true` if the provided `string`, [`Multiaddr`](https://github.com/multiformats/js-multiaddr) or `Uint8Array` represents a valid multiaddr or `false` otherwise.
216216

217217
### `isIPFS.peerMultiaddr(addr)`
218218

219-
Returns `true` if the provided `string`, [`Multiaddr`](https://github.com/multiformats/js-multiaddr) or `Buffer` represents a valid "IPFS Peer" multiaddr (matching [`IPFS` format from `mafmt`](https://github.com/multiformats/js-mafmt#api)) or `false` otherwise.
219+
Returns `true` if the provided `string`, [`Multiaddr`](https://github.com/multiformats/js-multiaddr) or `Uint8Array` represents a valid "IPFS Peer" multiaddr (matching [`IPFS` format from `mafmt`](https://github.com/multiformats/js-mafmt#api)) or `false` otherwise.
220220

221221
# License
222222

package.json

+7-9
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,16 @@
4141
"coverage-publish": "aegir coverage --upload"
4242
},
4343
"dependencies": {
44-
"buffer": "^5.6.0",
45-
"cids": "~0.8.0",
44+
"cids": "^1.0.0",
4645
"iso-url": "~0.4.7",
47-
"mafmt": "^7.1.0",
48-
"multiaddr": "^7.4.3",
49-
"multibase": "~0.7.0",
50-
"multihashes": "~0.4.19"
46+
"mafmt": "^8.0.0",
47+
"multiaddr": "^8.0.0",
48+
"multibase": "^3.0.0",
49+
"multihashes": "^3.0.1",
50+
"uint8arrays": "^1.1.0"
5151
},
5252
"devDependencies": {
53-
"aegir": "^21.10.1",
54-
"bs58": "^4.0.1",
55-
"chai": "^4.2.0",
53+
"aegir": "^25.0.0",
5654
"pre-commit": "^1.2.2"
5755
},
5856
"engines": {

src/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
'use strict'
22

3-
const { Buffer } = require('buffer')
43
const multihash = require('multihashes')
54
const multibase = require('multibase')
65
const Multiaddr = require('multiaddr')
76
const mafmt = require('mafmt')
87
const CID = require('cids')
98
const { URL } = require('iso-url')
9+
const uint8ArrayToString = require('uint8arrays/to-string')
1010

1111
const pathGatewayPattern = /^https?:\/\/[^/]+\/(ip[fn]s)\/([^/?#]+)/
1212
const pathPattern = /^\/(ip[fn]s)\/([^/?#]+)/
@@ -132,8 +132,8 @@ function isString (input) {
132132
}
133133

134134
function convertToString (input) {
135-
if (Buffer.isBuffer(input)) {
136-
return multibase.encode('base58btc', input).toString().slice(1)
135+
if (input instanceof Uint8Array) {
136+
return uint8ArrayToString(input, 'base58btc')
137137
}
138138

139139
if (isString(input)) {

test/test-cid.spec.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
/* eslint-env mocha */
22
'use strict'
33

4-
const { Buffer } = require('buffer')
5-
const base58 = require('bs58')
6-
const expect = require('chai').expect
4+
const { expect } = require('aegir/utils/chai')
75
const isIPFS = require('../src/index')
86
const CID = require('cids')
7+
const uint8ArrayFromString = require('uint8arrays/from-string')
98

109
describe('ipfs cid', () => {
1110
it('isIPFS.cid should match a valid CID instance', (done) => {
@@ -21,14 +20,14 @@ describe('ipfs cid', () => {
2120
done()
2221
})
2322

24-
it('isIPFS.cid should match a valid CIDv0 (multihash) buffer', (done) => {
25-
const actual = isIPFS.cid(Buffer.from(base58.decode('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o')))
23+
it('isIPFS.cid should match a valid CIDv0 (multihash) Uint8Array', (done) => {
24+
const actual = isIPFS.cid(uint8ArrayFromString('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o', 'base58btc'))
2625
expect(actual).to.equal(true)
2726
done()
2827
})
2928

30-
it('isIPFS.cid should not match a broken CIDv0 buffer', (done) => {
31-
const actual = isIPFS.cid(Buffer.from('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE70'))
29+
it('isIPFS.cid should not match a broken CIDv0 Uint8Array', (done) => {
30+
const actual = isIPFS.cid(uint8ArrayFromString('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE70'))
3231
expect(actual).to.equal(false)
3332
done()
3433
})

test/test-multiaddr.spec.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/* eslint-env mocha */
22
'use strict'
33

4-
const { Buffer } = require('buffer')
5-
const expect = require('chai').expect
4+
const { expect } = require('aegir/utils/chai')
65
const Multiaddr = require('multiaddr')
76
const isIPFS = require('../src/index')
7+
const uint8ArrayFromString = require('uint8arrays/from-string')
88

99
describe('ipfs multiaddr', () => {
1010
it('isIPFS.multiaddr should match a string with valid ip4 multiaddr', (done) => {
@@ -26,15 +26,15 @@ describe('ipfs multiaddr', () => {
2626
done()
2727
})
2828

29-
it('isIPFS.multiaddr should match a Buffer with multiaddr', (done) => {
29+
it('isIPFS.multiaddr should match a Uint8Array with multiaddr', (done) => {
3030
const ma = new Multiaddr('/ip6/::1/udp/1234/http')
31-
const actual = isIPFS.multiaddr(Buffer.from(ma.buffer))
31+
const actual = isIPFS.multiaddr(ma.bytes)
3232
expect(actual).to.equal(true)
3333
done()
3434
})
3535

36-
it('isIPFS.multiaddr should not match random Buffer', (done) => {
37-
const actual = isIPFS.multiaddr(Buffer.from('randombuffer'))
36+
it('isIPFS.multiaddr should not match random Uint8Array', (done) => {
37+
const actual = isIPFS.multiaddr(uint8ArrayFromString('randomUint8Array'))
3838
expect(actual).to.equal(false)
3939
done()
4040
})
@@ -111,17 +111,17 @@ describe('ipfs peerMultiaddr', () => {
111111
done()
112112
})
113113

114-
it('isIPFS.peerMultiaddr should match a Buffer with multiaddr', (done) => {
114+
it('isIPFS.peerMultiaddr should match a Uint8Array with multiaddr', (done) => {
115115
for (const addr of validPeerMultiaddrs) {
116116
const ma = new Multiaddr(addr)
117-
const actual = isIPFS.peerMultiaddr((Buffer.from(ma.buffer)))
117+
const actual = isIPFS.peerMultiaddr(ma.bytes)
118118
expect(actual, `isIPFS.peerMultiaddr(${addr})`).to.equal(true)
119119
}
120120
done()
121121
})
122122

123-
it('isIPFS.peerMultiaddr should not match random Buffer', (done) => {
124-
const actual = isIPFS.peerMultiaddr(Buffer.from('randombuffer'))
123+
it('isIPFS.peerMultiaddr should not match random Uint8Array', (done) => {
124+
const actual = isIPFS.peerMultiaddr(uint8ArrayFromString('randomUint8Array'))
125125
expect(actual).to.equal(false)
126126
done()
127127
})

test/test-multihash.spec.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
/* eslint-env mocha */
22
'use strict'
33

4-
const { Buffer } = require('buffer')
5-
const base58 = require('bs58')
6-
const expect = require('chai').expect
4+
const { expect } = require('aegir/utils/chai')
75
const isIPFS = require('../src/index')
6+
const uint8ArrayFromString = require('uint8arrays/from-string')
87

98
describe('ipfs multihash', () => {
109
it('isIPFS.multihash should match a valid multihash', (done) => {
@@ -13,14 +12,14 @@ describe('ipfs multihash', () => {
1312
done()
1413
})
1514

16-
it('isIPFS.multihash should match a valid multihash buffer', (done) => {
17-
const actual = isIPFS.multihash(Buffer.from(base58.decode('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o')))
15+
it('isIPFS.multihash should match a valid multihash Uint8Array', (done) => {
16+
const actual = isIPFS.multihash(uint8ArrayFromString('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o', 'base58btc'))
1817
expect(actual).to.equal(true)
1918
done()
2019
})
2120

22-
it('isIPFS.multihash should not match a buffer', (done) => {
23-
const actual = isIPFS.multihash(Buffer.from('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE70'))
21+
it('isIPFS.multihash should not match a Uint8Array', (done) => {
22+
const actual = isIPFS.multihash(uint8ArrayFromString('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE70'))
2423
expect(actual).to.equal(false)
2524
done()
2625
})

test/test-path.spec.js

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
/* eslint-env mocha */
22
'use strict'
33

4-
const { Buffer } = require('buffer')
5-
const base58 = require('bs58')
64
const isIPFS = require('../src/index')
7-
const expect = require('chai').expect
5+
const { expect } = require('aegir/utils/chai')
6+
const uint8ArrayFromString = require('uint8arrays/from-string')
87

98
describe('ipfs path', () => {
109
it('isIPFS.ipfsPath should match an ipfs path', (done) => {
@@ -37,8 +36,8 @@ describe('ipfs path', () => {
3736
done()
3837
})
3938

40-
it('isIPFS.ipfsPath should not match a buffer data type', (done) => {
41-
const actual = isIPFS.ipfsPath(Buffer.from(base58.decode('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o')))
39+
it('isIPFS.ipfsPath should not match a Uint8Array data type', (done) => {
40+
const actual = isIPFS.ipfsPath(uint8ArrayFromString('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o', 'base58btc'))
4241
expect(actual).to.equal(false)
4342
done()
4443
})
@@ -67,8 +66,8 @@ describe('ipfs path', () => {
6766
done()
6867
})
6968

70-
it('isIPFS.ipnsPath should not match a buffer data type', (done) => {
71-
const actual = isIPFS.ipnsPath(Buffer.from(base58.decode('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o')))
69+
it('isIPFS.ipnsPath should not match a Uint8Array data type', (done) => {
70+
const actual = isIPFS.ipnsPath(uint8ArrayFromString('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o', 'base58btc'))
7271
expect(actual).to.equal(false)
7372
done()
7473
})
@@ -97,8 +96,8 @@ describe('ipfs path', () => {
9796
done()
9897
})
9998

100-
it('isIPFS.path should not match a buffer data type', (done) => {
101-
const actual = isIPFS.path(Buffer.from(base58.decode('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o')))
99+
it('isIPFS.path should not match a Uint8Array data type', (done) => {
100+
const actual = isIPFS.path(uint8ArrayFromString('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o', 'base58btc'))
102101
expect(actual).to.equal(false)
103102
done()
104103
})
@@ -127,8 +126,8 @@ describe('ipfs path', () => {
127126
done()
128127
})
129128

130-
it('isIPFS.urlOrPath should not match a buffer data type', (done) => {
131-
const actual = isIPFS.ipfsPath(Buffer.from(base58.decode('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o')))
129+
it('isIPFS.urlOrPath should not match a Uint8Array data type', (done) => {
130+
const actual = isIPFS.ipfsPath(uint8ArrayFromString('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o', 'base58btc'))
132131
expect(actual).to.equal(false)
133132
done()
134133
})

test/test-subdomain.spec.js

+8-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
/* eslint-env mocha */
22
'use strict'
33

4-
const { Buffer } = require('buffer')
5-
const base58 = require('bs58')
64
const isIPFS = require('../src/index')
7-
const expect = require('chai').expect
5+
const { expect } = require('aegir/utils/chai')
6+
const uint8ArrayFromString = require('uint8arrays/from-string')
87

98
describe('ipfs subdomain', () => {
109
it('isIPFS.ipfsSubdomain should match a cidv1b32', (done) => {
@@ -48,8 +47,8 @@ describe('ipfs subdomain', () => {
4847
done()
4948
})
5049

51-
it('isIPFS.ipfsSubdomain should not match a buffer data type', (done) => {
52-
const actual = isIPFS.ipfsSubdomain(Buffer.from(base58.decode('QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR')))
50+
it('isIPFS.ipfsSubdomain should not match a Uint8Array data type', (done) => {
51+
const actual = isIPFS.ipfsSubdomain(uint8ArrayFromString('QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR', 'base58btc'))
5352
expect(actual).to.equal(false)
5453
done()
5554
})
@@ -81,8 +80,8 @@ describe('ipfs subdomain', () => {
8180
done()
8281
})
8382

84-
it('isIPFS.ipnsSubdomain should not match a buffer data type', (done) => {
85-
const actual = isIPFS.ipnsSubdomain(Buffer.from(base58.decode('QmNQuBJ8tg4QN6mSLXHekxBbcToPwKxamWNrDdEugxMTDd')))
83+
it('isIPFS.ipnsSubdomain should not match a Uint8Array data type', (done) => {
84+
const actual = isIPFS.ipnsSubdomain(uint8ArrayFromString('QmNQuBJ8tg4QN6mSLXHekxBbcToPwKxamWNrDdEugxMTDd', 'base58btc'))
8685
expect(actual).to.equal(false)
8786
done()
8887
})
@@ -154,8 +153,8 @@ describe('ipfs subdomain', () => {
154153
done()
155154
})
156155

157-
it('isIPFS.subdomain should not match a buffer data type', (done) => {
158-
const actual = isIPFS.subdomain(Buffer.from(base58.decode('QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR')))
156+
it('isIPFS.subdomain should not match a Uint8Array data type', (done) => {
157+
const actual = isIPFS.subdomain(uint8ArrayFromString('QmbWqxBEKC3P8tqsKc98xmWNzrzDtRLMiMPL8wBuTGsMnR', 'base58btc'))
159158
expect(actual).to.equal(false)
160159
done()
161160
})

test/test-url.spec.js

+8-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
/* eslint-env mocha */
22
'use strict'
33

4-
const { Buffer } = require('buffer')
5-
const base58 = require('bs58')
6-
const expect = require('chai').expect
4+
const { expect } = require('aegir/utils/chai')
75
const isIPFS = require('../src/index')
6+
const uint8ArrayFromString = require('uint8arrays/from-string')
87

98
describe('ipfs url', () => {
109
it('isIPFS.ipfsUrl should match an ipfs url', (done) => {
@@ -37,8 +36,8 @@ describe('ipfs url', () => {
3736
done()
3837
})
3938

40-
it('isIPFS.ipfsUrl should not match a buffer input', (done) => {
41-
const actual = isIPFS.ipfsUrl(Buffer.from(base58.decode('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o')))
39+
it('isIPFS.ipfsUrl should not match a Uint8Array input', (done) => {
40+
const actual = isIPFS.ipfsUrl(uint8ArrayFromString('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o', 'base58btc'))
4241
expect(actual).to.equal(false)
4342
done()
4443
})
@@ -67,8 +66,8 @@ describe('ipfs url', () => {
6766
done()
6867
})
6968

70-
it('isIPFS.ipnsUrl should not match a buffer input', (done) => {
71-
const actual = isIPFS.ipnsUrl(Buffer.from(base58.decode('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o')))
69+
it('isIPFS.ipnsUrl should not match a Uint8Array input', (done) => {
70+
const actual = isIPFS.ipnsUrl(uint8ArrayFromString('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o', 'base58btc'))
7271
expect(actual).to.equal(false)
7372
done()
7473
})
@@ -97,8 +96,8 @@ describe('ipfs url', () => {
9796
done()
9897
})
9998

100-
it('isIPFS.url should not match a buffer input', (done) => {
101-
const actual = isIPFS.url(Buffer.from(base58.decode('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o')))
99+
it('isIPFS.url should not match a Uint8Array input', (done) => {
100+
const actual = isIPFS.url(uint8ArrayFromString('QmYjtig7VJQ6XsnUjqqJvj7QaMcCAwtrgNdahSiFofrE7o', 'base58btc'))
102101
expect(actual).to.equal(false)
103102
done()
104103
})

0 commit comments

Comments
 (0)