-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow setting multiple cookies in Netlify adapter #3092
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@astrojs/netlify': patch | ||
--- | ||
|
||
Fixes setting multiple cookies with the Netlify adapter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { expect } from 'chai'; | ||
import { load as cheerioLoad } from 'cheerio'; | ||
import { loadFixture } from '../../../astro/test/test-utils.js'; | ||
import netlifyAdapter from '../dist/index.js'; | ||
import { fileURLToPath } from 'url'; | ||
|
||
describe('Cookies', () => { | ||
/** @type {import('../../../astro/test/test-utils').Fixture} */ | ||
let fixture; | ||
|
||
before(async () => { | ||
fixture = await loadFixture({ | ||
root: new URL('./fixtures/cookies/', import.meta.url).toString(), | ||
experimental: { | ||
ssr: true, | ||
}, | ||
adapter: netlifyAdapter({ | ||
dist: new URL('./fixtures/cookies/dist/', import.meta.url), | ||
}), | ||
site: `http://example.com`, | ||
vite: { | ||
resolve: { | ||
alias: { | ||
'@astrojs/netlify/netlify-functions.js': fileURLToPath( | ||
new URL('../dist/netlify-functions.js', import.meta.url) | ||
), | ||
}, | ||
}, | ||
}, | ||
}); | ||
await fixture.build(); | ||
}); | ||
|
||
it('Can set multiple', async () => { | ||
const entryURL = new URL('./fixtures/cookies/dist/functions/entry.mjs', import.meta.url); | ||
const { handler } = await import(entryURL); | ||
const resp = await handler({ | ||
httpMethod: 'POST', | ||
headers: {}, | ||
rawUrl: 'http://example.com/login', | ||
body: '{}', | ||
isBase64Encoded: false | ||
}); | ||
expect(resp.statusCode).to.equal(301); | ||
expect(resp.headers.location).to.equal('/'); | ||
expect(resp.multiValueHeaders).to.be.deep.equal({ | ||
'set-cookie': [ 'foo=foo; HttpOnly', 'bar=bar; HttpOnly' ] | ||
}); | ||
}); | ||
}); |
6 changes: 6 additions & 0 deletions
6
packages/integrations/netlify/test/fixtures/cookies/src/pages/index.astro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<html> | ||
<head><title>Testing</title></head> | ||
<body> | ||
<h1>Testing</h1> | ||
</body> | ||
</html> |
12 changes: 12 additions & 0 deletions
12
packages/integrations/netlify/test/fixtures/cookies/src/pages/login.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
export function post() { | ||
const headers = new Headers(); | ||
headers.append('Set-Cookie', `foo=foo; HttpOnly`); | ||
headers.append('Set-Cookie', `bar=bar; HttpOnly`); | ||
headers.append('Location', '/'); | ||
|
||
return new Response('', { | ||
status: 301, | ||
headers, | ||
}); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so strange. mind expanding a bit on why exactly this is needed, for future readers?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah sure, the tldr here is that the Fetch API concatenates headers and comma-separates them when you try to get them with
headers.get('foo')
. Set-Cookie is the only header that doesn't work comma-separated and must be set with multipleSet-Cookie
headers. Fetch does not have an API for that, because there's no need for it in the browser.Luckily node-fetch has a special API for this use-case and Netlify will always use that polyfill so its safe to use. Other adapters will have to do it different ways, since there is no standard.
For reference (with various host providers weighing in): whatwg/fetch#973
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll add a comment with a link to that issue.