This repository was archived by the owner on Feb 12, 2024. It is now read-only.
File tree 2 files changed +23
-1
lines changed
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,13 @@ class HttpApi {
125
125
}
126
126
127
127
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
+ } )
129
135
server . app . ipfs = ipfs
130
136
131
137
await server . register ( {
Original file line number Diff line number Diff line change @@ -137,6 +137,22 @@ describe('HTTP Gateway', function () {
137
137
expect ( res . headers . suborigin ) . to . equal ( 'ipfs000bafybeicg2rebjoofv4kbyovkw7af3rpiitvnl6i7ckcywaq6xjcxnc2mby' )
138
138
} )
139
139
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
+
140
156
/* TODO when support for CIDv1 lands
141
157
it('valid CIDv1', (done) => {
142
158
gateway.inject({
You can’t perform that action at this time.
0 commit comments