Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

feat($httpUrlParams): introduce new service abstracting params serialization #10853

Conversation

pkozlowski-opensource
Copy link
Member

This is the first step of the changes planned for $http's params serialization. For now a simple refactoring that moves serialization logic to a dedicated service. Even if simple, this first moves already solves some long-opened issues:

Closes #7429
Closes #9224

@shahata
Copy link
Contributor

shahata commented Jan 24, 2015

maybe we should also move the parseKeyValue method into this service as a deserialize function?

* @description
* Use `$httpUrlParamsProvider` to change the default behavior of the {@link ng.$httpUrlParams $httpUrlParams} service.
* */
function $HttpUrlParamsProvider() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe it is better to move this service (and maybe also the relevant unit tests) to a different file?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, this is the plan as soon as I'm will expand on this service :-)

@pkozlowski-opensource
Copy link
Member Author

@shahata yes, my bigger plan is to expand this service to handle deserialization in the future and - why not - turn it into a generic URLs params handling service. But I'm taking baby steps with those PRs so those are easier to review and getting merge faster.

In short: yes, definitively you remark make sense - it is mid-term plan, but doesn't have to be handled in this PR (I'm planning to send several focused PRs like this one in the coming days)

@pkozlowski-opensource
Copy link
Member Author

Thnx @caitp !

* as one can inject `$httpUrlParams` into a test and serialize URL params as {@link ng.$http $http} service.
*/
this.$get = function() {
var HttpUrlParams = {};
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: make the object literal constant

@caitp
Copy link
Contributor

caitp commented Jan 26, 2015

things that I immediately don't like about this:

  1. This makes it difficult to use multiple query string serialization techniques in a single app --- sometimes apps need to talk to multiple backends.
  2. I think jQuery's strategy is cleaner, and allows multiple serialization strategies with less code.

@pkozlowski-opensource
Copy link
Member Author

I guess that "jQuery" strategy you mean their traditional switch, right? Would you add it to the config object? If so, this approach doesn't help with testing, does it?

Regarding support for multiple query string serialization techniques in a single app - it is true, this proposal doesn't address this issue (but also doesn't change anything as compared to the today's situation).

Could iterate on this and your proposal to work out something that covers most of the problem people face? Or decide which problem(s) are more important (for now it seems like there is a tension between making testing easier vs. having multiple strategies in one app).

I will think of something that tries to cover both testing and multiple strategies in one app...

@pkozlowski-opensource
Copy link
Member Author

I'm going to close this one for now and try to implement @caitp suggestion. Will open a new PR when ready.

@pkozlowski-opensource pkozlowski-opensource deleted the http_params_serialization branch February 21, 2015 18:35
@caitp
Copy link
Contributor

caitp commented Feb 21, 2015

I've had some ideas, but most likely the simplest / most performant approach would be selecting which method to use in the http config object (using either a boolean flag to flip between "traditional" mode and not, or using a closure or a string to lookup a pre-registered serializer). The boolean flag is the least flexible but by far the simplest and fastest.

A slower approach would be having a good "default", and being able to select an alternative strategy based on the domain name of the host you're sending the request to.

Yet another one (which is probably not tenable in 1.x, but could be possible in 2.x) is just subclassing Http and setting a new default in the child class.

But yeah, I tend to prefer the boolean switch

@pkozlowski-opensource
Copy link
Member Author

@caitp thnx for the additional input. Personally I'm leaning towards string flag as I think a boolean one - although the simplest, is probably too restrictive. But yeh, we need to have some default + ability to select an alternative in the config object.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
4 participants