-
Notifications
You must be signed in to change notification settings - Fork 8
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
fix: gracefully handle cases where content URIs are invalid #26
Conversation
As discussed in aragon#167, `apm versions` throws when any of the returned content URIs are invalid. This behaviour will be fixed with aragon/apm.js#26, so now we're making use of that exposed error or warning message for a better user experience. Closes aragon#167
src/index.js
Outdated
reportType = 'warning' | ||
} else if (!providers[provider]) { | ||
errorMsg = `Provider: ${provider} is not supported` | ||
reportType = 'error' |
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.
As mentioned in the call, I first thought it could be useful to make APM export the different errors types as constants (or preferably enums if we had TypeScript), but I obviously wasn't able to think straight.
For now I went with exposing the report type, so we can make decide on the call side whether we wanna show a warning or an actual error. Let me know if you prefer a different way of exposing this information.
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.
I think this is fine!
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.
Just a minor comment, looking good!
src/index.js
Outdated
reportType = 'warning' | ||
} else if (!providers[provider]) { | ||
errorMsg = `Provider: ${provider} is not supported` | ||
reportType = 'error' |
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.
I think this is fine!
src/index.js
Outdated
|
||
if (!provider || !location) { | ||
errorMsg = `contentURI: ${contentURI} is invalid.` | ||
reportType = 'warning' |
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.
I think we can remove reportType
from here and always report a warning in the CLI.
I think this PR is a good opportunity to fix this as well: #27 |
19bba70
to
85056ff
Compare
As discussed in aragon#167, `apm versions` throws when any of the returned content URIs are invalid. This behaviour will be fixed with aragon/apm.js#26, so now we're making use of that exposed error or warning message for a better user experience. Closes aragon#167
Hi! Can you fix these lines also? Lines 88 to 98 in 85056ff
This will fix my issue! Thank you |
Prior to this commit, all content URIs of application versions are expected to follow the format `<provider>:<identifier>`. In case a content URI doesn't follow this format, an error is thrown. We now ensure that in such cases, the code still executes but resolves early with an error or warning respectively. It also fixes aragon#27 where parsing content URIs that contain more than one split character (e.g. `:` in `http://localhost:8080/foo/bar`) splits the `identifier` as well (which we don't want). Fixes aragon#20, aragon#27
85056ff
to
d53212f
Compare
@deamme thanks for the heads-up! I've updated it, can you please verify? |
@PascalPrecht Works, thanks! |
Prior to this commit, all content URIs of application versions are
expected to follow the format
<provider>:<identifier>
. In case acontent URI doesn't follow this format, an error is thrown.
We now ensure that in such cases, the code still executes but resolves
early with an error or warning respectively.
Fixes #20