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

(fix): merge URI query into fragment in non-html5 $location mode. #15865

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions src/ng/location.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ function stripBaseUrl(base, url) {
}
}

function findSearch(url) {
var index = url.indexOf('?');
return index === -1 ? false : url.substr(index + 1, url.indexOf('#') === -1 ? url.length : url.indexOf('#') - index - 1);
}

function stripHash(url) {
var index = url.indexOf('#');
Expand Down Expand Up @@ -206,6 +210,27 @@ function LocationHashbangUrl(appBase, appBaseNoFile, hashPrefix) {
withoutHashUrl = withoutBaseUrl;
}

// apply any search params from the actual url to the withoutHashUrl
// appBase will already have the hash taken off at this point.
var paramRewrittenUrl = withoutHashUrl;
var search = findSearch(appBase);
if (search !== false) {
var indexOfAppFragment = withoutHashUrl.indexOf('#');
if (indexOfAppFragment !== -1) {
paramRewrittenUrl = withoutHashUrl.substr(0, indexOfAppFragment) + '?' + search + withoutHashUrl.substr(indexOfAppFragment, withoutHashUrl.length);
} else {
paramRewrittenUrl = withoutHashUrl + '?' + search;
}
// we know that there is a query param before the hash, as in the RFC.
if (findSearch(withoutHashUrl) !== false) {
var indexOfAppPath = withoutHashUrl.indexOf('?');
if (indexOfAppPath !== -1) {
paramRewrittenUrl = withoutHashUrl.substr(0, indexOfAppPath + 1) + search + '&' + withoutHashUrl.substr(indexOfAppPath + 1, withoutHashUrl.length);
}
}
}
withoutHashUrl = paramRewrittenUrl;

} else {
// There was no hashbang path nor hash fragment:
// If we are in HTML5 mode we use what is left as the path;
Expand Down
27 changes: 26 additions & 1 deletion test/ng/locationSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -527,14 +527,39 @@ describe('$location', function() {
it('should preserve query params in base', function() {
var locationUrl = new LocationHashbangUrl('http://www.server.org:1234/base?base=param', 'http://www.server.org:1234/', '#');
locationUrl.$$parse('http://www.server.org:1234/base?base=param#/path?a=b&c#hash');
expect(locationUrl.absUrl()).toBe('http://www.server.org:1234/base?base=param#/path?a=b&c#hash');
expect(locationUrl.absUrl()).toBe('http://www.server.org:1234/base?base=param#/path?base=param&a=b&c#hash');

expect(locationUrl.search()).toEqual({base: 'param', a: 'b', c: true});
locationUrl.path('/new/path');
locationUrl.search({one: 1});
locationUrl.hash('hhh');
expect(locationUrl.absUrl()).toBe('http://www.server.org:1234/base?base=param#/new/path?one=1#hhh');
});

it('should copy query params to fragment', function() {
var locationUrl = new LocationHashbangUrl('http://www.server.org:1234/base?base=param', 'http://www.server.org:1234/', '#');
locationUrl.$$parse('http://www.server.org:1234/base?base=param#/path');

expect(locationUrl.absUrl()).toBe('http://www.server.org:1234/base?base=param#/path?base=param');

expect(locationUrl.search()).toEqual({base: 'param'});
locationUrl.path('/new/path');
locationUrl.search({one: 1});
locationUrl.hash('hhh');
expect(locationUrl.absUrl()).toBe('http://www.server.org:1234/base?base=param#/new/path?one=1#hhh');

locationUrl.$$parse('http://www.server.org:1234/base?base=param#/path#trailingHash');

expect(locationUrl.absUrl()).toBe('http://www.server.org:1234/base?base=param#/path?base=param#trailingHash');

expect(locationUrl.search()).toEqual({base: 'param'});
locationUrl.path('/new/path');
locationUrl.search({one: 1});
locationUrl.hash('hhh');
expect(locationUrl.absUrl()).toBe('http://www.server.org:1234/base?base=param#/new/path?one=1#hhh');

});


it('should prefix path with forward-slash', function() {
var locationUrl = new LocationHashbangUrl('http://host.com/base', 'http://host.com/', '#');
Expand Down