Allow IDPs to be set dynamically by other plugs#16
Open
bmuller wants to merge 1 commit intodropbox:mainfrom
Open
Allow IDPs to be set dynamically by other plugs#16bmuller wants to merge 1 commit intodropbox:mainfrom
bmuller wants to merge 1 commit intodropbox:mainfrom
Conversation
amacciola
reviewed
May 22, 2024
| def check_idp_id(%Conn{private: %{samly_idp: %IdpData{}}} = conn, _opts), do: conn | ||
|
|
||
| def check_idp_id(conn, _opts), do: conn | ||
| idp_id_from = Application.get_env(:samly, :idp_id_from) |
There was a problem hiding this comment.
How does this line ever return anything but nil ?
idp_id_from = Application.get_env(:samly, :idp_id_from)
Author
There was a problem hiding this comment.
This line exists in the current codebase and is unaffected by this PR.
There was a problem hiding this comment.
@bmuller ya i was just reviewing your PR and i just happen to be reviewing this method. And that line will never actually return the value its trying to access.
The way it says in the README to setup your configs is for example
config :samly, Samly.Provider,
idp_id_from: :path_segment,
So you would need to have that line be
Application.get_env(:samly, Samly.Provider)[:idp_id_from]
There was a problem hiding this comment.
Basically every where in this app it calls Application.get_env() its doing it in conflict with how it says to define it in the README.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
I am working on an application that may have many IDP configurations, and they may need to be loaded dynamically. I believe this small modification would enable me to set the IDP configuration dynamically via a plug that runs earlier than Samly.