Skip to content
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

Support path in the base url #23

Merged
merged 9 commits into from
Dec 2, 2017
Merged

Conversation

kaeedo
Copy link
Contributor

@kaeedo kaeedo commented Nov 21, 2017

This PR adds the option to include an option to preserve the pathname specified in the base URL for the Rest Client. Default is false (maintains old behavior)

@msftclas
Copy link

msftclas commented Nov 21, 2017

CLA assistant check
All CLA requirements met.

@kaeedo kaeedo mentioned this pull request Nov 21, 2017
package.json Outdated
"description": "Node Rest and Http Clients for use with TypeScript",
"main": "./RestClient.js",
"scripts": {
"build": "node make.js build",
"test": "node make.js test",
"samples": "node make.js samples"
},
"engines": {
"node": ">=8.9.0",
Copy link
Contributor

Choose a reason for hiding this comment

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

node 8.9 / npm 5.1 is only a developer build time dependency. At runtime this should and needs to work on 6.x LTS and even back to node 5.10. I would remove this from the PR and make another issue to define runtime req (I want our CI to multi plex and validate on ideally >= node 4.x LTS but at least node >=6.x LTS)

lib/Util.ts Outdated

if (preservePath) {
combined.pathname = base.pathname + combined.pathname;
Copy link
Contributor

Choose a reason for hiding this comment

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

path.join? I think there is also interesting test cases with base not / having trailing slash and pathname not/having leading slash.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Using path.join now. Also fixes the trailing and leading slash problems

lib/Util.ts Outdated
* @return {string} - resultant url
*/
export function getUrl(requestUrl: string, baseUrl?: string): string {
export function getUrl(requestUrl: string, baseUrl?: string, preservePath?: boolean): string {
Copy link
Contributor

Choose a reason for hiding this comment

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

I'm struggling with whether this should be the default. In the normal case of just providing the hostname portion (no path) it does the right thing. In the case where the base url has a relative path, it does the right thing. I need to think about it.

This is pre-release about to go to 1.0 and this change should bump the minor version (so ^ with patch level won't drift into this behavior) and we can doc.

The other thought was flip to opt in to chop the relative path but if that's your intent, just provide the hostname portion. No need for another optional arg ...hmmmm

Thoughts?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Since this is still prerelease, my preference would be to never strip the relative path. Reason being similar to your thought about flipping to opt in. If the use case comes up that the base URL also has a path, then it would make sense to explicitly state it in the baseUrl parameter, and always expect it to be there. At that point the optional parameter can be completely removed. That would make this a breaking change though...

Copy link
Member

Choose a reason for hiding this comment

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

@kaeedo Could you add some examples of usage for this feature? Then we can speak to the explicit use cases. It often helps think things through and make the "right" choice more apparent. (based on the perspective of a consumer of the library). As well as what the consumer would have to do if we didn't have this feature.

It's tricky to balance where we draw the line of what's included and what isn't.

Copy link
Contributor

Choose a reason for hiding this comment

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

@kaeedo - I agree on your points. Bump the minor version with this change. That mitigates the pre-release breaking change since folks default to sliding on patch versions. And it's only a change when you're doing something non mainstream (passing base url with path but then expecting it not to be honored). Let's move forward without the arg. Add the test cases on trailing and leading slashes.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@stephenmichaelf
For the use case in my office, we have a reverse proxy configured to point to different docker containers:

https://www.contoso.com/firstcontainer
https://www.contoso.com/secondcontainer
https://www.contoso.com/thirdcontainer

I would like to create an instance of a RestClient such that https://www.contoso.com/firstcontainer is the baseUrl instead of just https://www.contoso.com and then having to prepend firstcontainer to every rest request

@@ -84,7 +85,93 @@ describe('Rest Tests', function () {
assert(err['statusCode'] == 500, "statusCode should be 500");
assert(err.message && err.message.length > 0, "should have error message");
}
});
});

Copy link
Contributor

Choose a reason for hiding this comment

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

Add divider

//--------------------------------------------------------
// Path tests
//--------------------------------------------------------

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done

@kaeedo
Copy link
Contributor Author

kaeedo commented Nov 22, 2017

Preserving path is now the default, and cannot be turned off. the version in package.json has been bumped to 0.15.0. Unit test for trailing slashes and no slashes are also there

@bryanmacfarlane
Copy link
Contributor

please resolve conflicts (bump version to 0.16) and I'll review tomorrow.

@bryanmacfarlane bryanmacfarlane changed the title Add optional parameter to preserve path from base url Support path in the base url Dec 1, 2017
lib/Util.ts Outdated

combined.pathname = path.join(base.pathname, combined.pathname);
Copy link
Contributor

Choose a reason for hiding this comment

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

Instead of path.join, let's try path.resolve.
So
'http://httpbin.org' and 'foo/bar' = 'http://httpbin.org/foo/bar'
'http://httpbin.org' and '/foo/bar' = 'http://httpbin.org/foo/bar'
'http://httpbin.org/baz' and 'foo/bar' = 'http://httpbin.org/baz/foo/bar'
'http://httpbin.org/baz' and '/foo/bar' = 'http://httpbin.org/foo/bar'

I sketched it out in a sketch PR.

#28

See my tests. You can merge in with your PR.

Also note I bumped to 1.0 and will release with tag of preview. After thinking about it, I think that's the best thing to do.

Thoughts?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The problem with using path.resolve on a Windows system, is that an absolute path will include a drive letter. For the test case

let res: string = util.getUrl('get/foo', 'http://httpbin.org/bar');
res comes out to http://httpbin.org/C:\bar\get\foo

@bryanmacfarlane
Copy link
Contributor

bryanmacfarlane commented Dec 1, 2017 via email

@@ -176,5 +177,27 @@ describe('Rest Tests', function () {
assert(restRes.result.args.baz === 'top');
});

//
// getUrl path tests
Copy link
Contributor

Choose a reason for hiding this comment

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

you're missing this test.

'/get/foo', 'http://httpbin.org/bar'

should result in 'http://httpbin.org/get/foo'

lib/Util.ts Outdated

combined.pathname = path.join(base.pathname, combined.pathname);
let basePathComponent: string = base.pathname === '/' ? '': base.pathname;
resultantUrl.pathname = path.posix.join(basePathComponent, resultantUrl.pathname);
Copy link
Contributor

Choose a reason for hiding this comment

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

use resolve. drive letter on windows not a problem. If you do something illogical like using a drive letter on windows, you will get a failure which is expected. We're optimizing for the positive rooted and unrooted cases.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I see what it's doing now.

@bryanmacfarlane
Copy link
Contributor

Thanks!

@bryanmacfarlane
Copy link
Contributor

published as typed-rest-client@preview

@Centro1993
Copy link

Why is this not in Master? Just discovered that BaseUrl cannot be a relative path. Worked fine for development, but now that I want to take my project online, I want to redirect all my API Calls to /api.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants