Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 5156a47

Browse files
nickAlan Shaw
authored and
Alan Shaw
committed
fix: add CORS headers to gateway responses (#2254)
1 parent a0f424d commit 5156a47

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

src/http/index.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,13 @@ class HttpApi {
125125
}
126126

127127
async _createGatewayServer (host, port, ipfs) {
128-
const server = Hapi.server({ host, port })
128+
const server = Hapi.server({
129+
host,
130+
port,
131+
routes: {
132+
cors: true
133+
}
134+
})
129135
server.app.ipfs = ipfs
130136

131137
await server.register({

test/gateway/index.js

+16
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,22 @@ describe('HTTP Gateway', function () {
137137
expect(res.headers.suborigin).to.equal('ipfs000bafybeicg2rebjoofv4kbyovkw7af3rpiitvnl6i7ckcywaq6xjcxnc2mby')
138138
})
139139

140+
it('returns CORS headers', async () => {
141+
const res = await gateway.inject({
142+
method: 'OPTIONS',
143+
url: '/ipfs/QmT78zSuBmuS4z925WZfrqQ1qHaJ56DQaTfyMUF7F8ff5o',
144+
headers: {
145+
origin: 'http://example.com',
146+
'access-control-request-method': 'GET',
147+
'access-control-request-headers': ''
148+
}
149+
})
150+
151+
expect(res.statusCode).to.equal(200)
152+
expect(res.headers['access-control-allow-origin']).to.equal('http://example.com')
153+
expect(res.headers['access-control-allow-methods']).to.equal('GET')
154+
})
155+
140156
/* TODO when support for CIDv1 lands
141157
it('valid CIDv1', (done) => {
142158
gateway.inject({

0 commit comments

Comments
 (0)