open-consul/ui/packages/consul-ui/app/services
John Cowen 0f49982cee
ui: [BUGFIX] Properly encode non-URL safe characters in OIDC responses (#10901)
This commit fixes 2 problems with our OIDC flow in the UI, the first is straightforwards, the second is relatively more in depth:

1: A typo (1.10.1 only)

During #10503 we injected our settings service into the our oidc-provider service, there are some comments in the PR as to the whys and wherefores for this change (https://github.com/hashicorp/consul/pull/10503/files#diff-aa2ffda6d0a966ba631c079fa3a5f60a2a1bdc7eed5b3a98ee7b5b682f1cb4c3R28)

Fixing the typo so it was no longer looking for an unknown service (repository/settings > settings)
fixed this.

2: URL encoding (1.9.x, 1.10.x)

TL;DR: /oidc/authorize/provider/with/slashes/code/with/slashes/status/with/slashes should be /oidc/authorize/provider%2Fwith%2Fslashes/code%2Fwith%2Fslashes/status%2Fwith%2Fslashes

When we receive our authorization response back from the OIDC 3rd party, we POST the code and status data from that response back to consul via acallback as part of the OIDC flow. From what I remember back when this feature was originally added, the method is a POST request to avoid folks putting secret-like things into API requests/URLs/query params that are more likely to be visible to the human eye, and POSTing is expected behaviour.

Additionally, in the UI we identify all external resources using unique resource identifiers. Our OIDC flow uses these resources and their identifiers to perform the OIDC flow using a declarative state machine. If any information in these identifiers uses non-URL-safe characters then these characters require URL encoding and we added a helper a while back to specifically help us to do this once we started using this for things that required URL encoding.

The final fix here make sure that we URL encode code and status before using them with one of our unique resource identifiers, just like we do with the majority of other places where we use these identifiers.
2021-08-24 16:58:45 +01:00
..
client ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
clipboard ui: CopyButton amends (#10511) 2021-07-06 16:56:36 +01:00
code-mirror ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
data-sink ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
data-source ui: DataSource Decorator (#9746) 2021-02-23 08:56:42 +00:00
repository ui: [BUGFIX] Properly encode non-URL safe characters in OIDC responses (#10901) 2021-08-24 16:58:45 +01:00
atob.js ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
btoa.js ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
change.js ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
container.js ui: DataSource Decorator (#9746) 2021-02-23 08:56:42 +00:00
data-structs.js ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
dom.js ui: Sidebar navigation / redesign (#9553) 2021-01-26 17:40:33 +00:00
encoder.js ui: Change URI helper to a template based approach (#9344) 2020-12-09 09:22:46 +00:00
env.js ui: Support Route optional parameters/segments (#10212) 2021-05-26 17:43:46 +01:00
env.mdx ui: Improves UI engineering docs (#9875) 2021-03-17 15:58:17 +00:00
feedback.js ui: Topology intention saving improvements (#9513) 2021-01-19 15:40:39 +00:00
filter.js ui: Auth Methods List view (#9617) 2021-02-17 13:56:56 -05:00
form.js ui: Remove unnecessay reopens from sort and form services (#9146) 2020-11-10 14:36:27 +00:00
logger.js ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
repository.js ui: DataSource Decorator (#9746) 2021-02-23 08:56:42 +00:00
routlet.js ui: Support Route optional parameters/segments (#10212) 2021-05-26 17:43:46 +01:00
schema.js ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
search.js ui: Auth Methods List view (#9617) 2021-02-17 13:56:56 -05:00
settings.js ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
sort.js ui: Auth Methods List view (#9617) 2021-02-17 13:56:56 -05:00
state.js ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
store.js ui: Restrict the viewing/editing of certain UI elements based on the users ACLs (#9687) 2021-02-19 16:42:16 +00:00
temporal.js ui: Adds human formatting to nanosecond based session durations (#10062) 2021-04-28 12:12:56 +01:00
ticker.js ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
timeout.js ui: Run Ember native class code mod (#9093) 2020-11-09 09:25:35 +00:00
ui-config.js ui: Dev/Test environment configurable metrics (#9345) 2020-12-15 15:34:54 +00:00