open-consul/ui/packages/consul-ui/app
John Cowen d4d6466665
ui: Make it hard to not URLEncode DataSource srcs/URIs (#11117)
Our DataSource came in very iteratively, when we first started using it we specifically tried not to use it for things that would require portions of the @src="" attribute to be URL encoded (so things like service names couldn't be used, but dc etc would be fine). We then gradually added an easy way to url encode the @src="" attributes with a uri helper and began to use the DataSource component more and more. This meant that some DataSource usage continued to be used without our uri helper.

Recently we hit #10901 which was a direct result of us not encoding @src values/URIs (I didn't realise this was one of the places that required URL encoding) and not going back over things to finish things off once we had implemented our uri helper, resulting in ~half of the codebase using it and ~half of it not.

Now that almost all of the UI uses our DataSource component, this PR makes it even harder to not use the uri helper, by wrapping the string that it requires in a private URI class/object, that is then expected/asserted within the DataSource component/service. This means that as a result of this PR you cannot pass a plain string to the DataSource component without seeing an error in your JS console, which in turn means you have to use the uri helper, and it's very very hard to not URL encode any dynamic/user provided values, which otherwise could lead to bugs/errors similar to the one mentioned above.

The error that you see when you don't use the uri helper is currently a 'soft' dev time only error, but like our other functionality that produces a soft error when you mistakenly pass an undefined value to a uri, at some point soon we will make these hard failing "do not do this" errors.

Both of these 'soft error' DX features have been used this to great effect to implement our Admin Partition feature and these kind of things will minimize the amount of these types of bugs moving forwards in a preventative rather than curative manner. Hopefully these are the some of the kinds of things that get added to our codebase that prevent a multitude of problems and therefore are often never noticed/appreciated.

Additionally here we moved the remaining non-uri using DataSources to use uri (that were now super easy to find), and also fixed up a place where I noticed (due to the soft errors) where we were sometimes passing undefined values to a uri call.

The work here also led me to find another couple of non-important 'bugs' that I've PRed already separately, one of which is yet to be merged (#11105), hence the currently failing tests here. I'll rebase that once that PR is in and the tests here should then pass 🤞

Lastly, I didn't go the whole hog here to make DataSink also be this strict with its uri usage, there is a tiny bit more work on DataSink as a result of recently work, so I may (or may not) make DataSink equally as strict as part of that work in a separate PR.
2021-09-30 15:54:46 +01:00
..
abilities ui: Don't show the CRD menu for read-only intentions (#11149) 2021-09-27 17:19:32 +01:00
adapters ui: Add initial partition support to intentions (#11129) 2021-09-24 17:31:58 +01:00
components ui: Make it hard to not URLEncode DataSource srcs/URIs (#11117) 2021-09-30 15:54:46 +01:00
controllers ui: Remove legacy ACLs (#11096) 2021-09-22 18:32:51 +01:00
decorators ui: Serf Health Check warning notice (#10194) 2021-05-13 11:36:51 +01:00
filter/predicates ui: Remove legacy ACLs (#11096) 2021-09-22 18:32:51 +01:00
forms ui: Remove legacy ACLs (#11096) 2021-09-22 18:32:51 +01:00
helpers ui: Make it hard to not URLEncode DataSource srcs/URIs (#11117) 2021-09-30 15:54:46 +01:00
initializers ui: Partitions Application Layer (#11017) 2021-09-15 19:50:11 +01:00
instance-initializers ui: Partitions Application Layer (#11017) 2021-09-15 19:50:11 +01:00
locations ui: Partitions Application Layer (#11017) 2021-09-15 19:50:11 +01:00
mixins ui: Remove legacy ACLs (#11096) 2021-09-22 18:32:51 +01:00
models ui: Don't show the CRD menu for read-only intentions (#11149) 2021-09-27 17:19:32 +01:00
modifiers ui: CopyButton amends (#10511) 2021-07-06 16:56:36 +01:00
routes ui: Remove legacy ACLs (#11096) 2021-09-22 18:32:51 +01:00
routing ui: Remove legacy ACLs (#11096) 2021-09-22 18:32:51 +01:00
search/predicates ui: Serf Health Check warning notice (#10194) 2021-05-13 11:36:51 +01:00
serializers ui: Add initial partition support to intentions (#11129) 2021-09-24 17:31:58 +01:00
services ui: Make it hard to not URLEncode DataSource srcs/URIs (#11117) 2021-09-30 15:54:46 +01:00
sort/comparators ui: Remove legacy ACLs (#11096) 2021-09-22 18:32:51 +01:00
styles ui: Adds Flight icons to our icon set (#11097) 2021-09-27 18:26:42 +01:00
templates ui: Make it hard to not URLEncode DataSource srcs/URIs (#11117) 2021-09-30 15:54:46 +01:00
utils ui: Remove legacy ACLs (#11096) 2021-09-22 18:32:51 +01:00
validations ui: Remove legacy ACLs (#11096) 2021-09-22 18:32:51 +01:00
app.js ui: Move to Workspaced Structure (#8994) 2020-10-21 15:23:16 +01:00
env.js ui: Move to Workspaced Structure (#8994) 2020-10-21 15:23:16 +01:00
formats.js ui: Install ember-intl (#9399) 2020-12-15 18:29:32 +00:00
index.html ui: Move to Workspaced Structure (#8994) 2020-10-21 15:23:16 +01:00
router.js ui: Remove legacy ACLs (#11096) 2021-09-22 18:32:51 +01:00