nickva commented on code in PR #4798:
URL: https://github.com/apache/couchdb/pull/4798#discussion_r1347609050
##########
src/couch/src/couch_httpd_auth.erl:
##########
@@ -460,16 +460,18 @@ cookie_auth_header(
cookie_auth_header(_Req, _Headers) ->
[].
-cookie_auth_cookie(Req, User, Secret, TimeStamp, MustMatchBasic) ->
- MustMatchBasicStr =
- case MustMatchBasic of
- true -> "1";
- false -> "0"
- end,
- SessionData = lists:join(":", [
+cookie_auth_cookie(Req, User, Secret, TimeStamp, true) ->
+ SessionItems = [
User,
- lists:join(",", [erlang:integer_to_list(TimeStamp, 16),
MustMatchBasicStr])
- ]),
+ [erlang:integer_to_list(TimeStamp, 16), ",1"]
+ ],
+ cookie_auth_cookie(Req, Secret, SessionItems);
+cookie_auth_cookie(Req, User, Secret, TimeStamp, false) ->
+ SessionItems = [User, erlang:integer_to_list(TimeStamp, 16)],
+ cookie_auth_cookie(Req, Secret, SessionItems).
+
+cookie_auth_cookie(Req, Secret, SessionItems) when is_list(SessionItems) ->
+ SessionData = lists:join(":", SessionItems),
Review Comment:
The new way is more clear. It's obvious it's iodata. Previously `?b2l(User)
++ ":" ++ erlang:integer_to_list(TimeStamp, 16)` hinted that perhaps we had to
have a flat list.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]