-
Notifications
You must be signed in to change notification settings - Fork 412
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
SignCookie middleware #533
Closed
Closed
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
1c04141
feat(SignedCookies): signCookie middleware
ShrutiVerma97 7e26067
fix(SignedCookies): scala 3 build httpmiddleware
ShrutiVerma97 751b3af
refactor(SignCookies): removed option from sign method
ShrutiVerma97 fe06e45
fix: merge conflicts
ShrutiVerma97 125607a
fix: unnecessary changes removed
ShrutiVerma97 1a95d93
scalafmt
ShrutiVerma97 0931047
Merge branch 'main' of github.com:dream11/zio-http into feat/cookie-m…
ShrutiVerma97 58bc8c1
refactor(SignCookies): cleaned example
ShrutiVerma97 5e02f87
feat(Cookie): added decodeResponseSignedCookie
ShrutiVerma97 dd12890
fix(Middleware spec): fixed test
ShrutiVerma97 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,24 @@ | ||
package example | ||
|
||
import zhttp.http.Cookie.{httpOnly, maxAge, path, sign} | ||
import zhttp.http.{Cookie, Method, Response, _} | ||
import zhttp.service.Server | ||
import zio.duration.durationInt | ||
import zio.{App, ExitCode, URIO} | ||
|
||
/** | ||
* Example to make app using cookies | ||
*/ | ||
object SignCookies extends App { | ||
|
||
// Setting cookies with an expiry of 5 days | ||
private val cookie = Cookie("key", "hello") @@ maxAge(5 days) | ||
|
||
private val app = Http.collect[Request] { case Method.GET -> !! / "cookie" => | ||
Response.ok.addCookie(cookie @@ path(!! / "cookie") @@ httpOnly @@ sign("tobiiscool")) | ||
} | ||
|
||
// Run it like any simple app | ||
override def run(args: List[String]): URIO[zio.ZEnv, ExitCode] = | ||
Server.start(8090, app).exitCode | ||
} |
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
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
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
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
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.
Can we move this logic to the cookie encoder? Have a new field in
Cookie
calledsecret: Option[String]
. That way if you have it in the cookie, you can use it to encode and sign the content.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.
what about decodeResponseCookie? We won't be able to decode from content if it's signed or not, or what is the secret value. We can unsign using secret only.
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.
we can add another method to
decodeResponseSignedCookie
no?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.
We shouldn't be so eager to sign the cookie, consider this example —
The fact that this cookie should be signed is ignored when we set the content again. This IMO is counterintuitive and breaks compositional semantics.
What do you think?
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.
Yup, I feel the same. I've tried implementing it here: https://github.com/dream11/zio-http/pull/751/files