95 lines
3.1 KiB
TypeScript
Raw Normal View History

import {LocationStrategy} from './location_strategy';
2015-08-20 14:28:25 -07:00
import {StringWrapper, isPresent, CONST_EXPR} from 'angular2/src/core/facade/lang';
import {EventEmitter, ObservableWrapper} from 'angular2/src/core/facade/async';
import {isBlank} from 'angular2/src/core/facade/lang';
import {BaseException, WrappedException} from 'angular2/src/core/facade/exceptions';
import {OpaqueToken, Injectable, Optional, Inject} from 'angular2/src/core/di';
export const APP_BASE_HREF: OpaqueToken = CONST_EXPR(new OpaqueToken('appBaseHref'));
2015-04-21 11:23:23 -07:00
/**
* This is the service that an application developer will directly interact with.
*
* Responsible for normalizing the URL against the application's base href.
* A normalized URL is absolute from the URL host, includes the application's base href, and has no
* trailing slash:
* - `/my/app/user/123` is normalized
* - `my/app/user/123` **is not** normalized
* - `/my/app/user/123/` **is not** normalized
*/
@Injectable()
2015-04-21 11:23:23 -07:00
export class Location {
2015-08-26 11:41:41 -07:00
_subject: EventEmitter = new EventEmitter();
_baseHref: string;
2015-08-26 11:41:41 -07:00
constructor(public platformStrategy: LocationStrategy,
@Optional() @Inject(APP_BASE_HREF) href?: string) {
2015-08-26 11:41:41 -07:00
var browserBaseHref = isPresent(href) ? href : this.platformStrategy.getBaseHref();
if (isBlank(browserBaseHref)) {
throw new BaseException(
`No base href set. Either provide a binding to "appBaseHrefToken" or add a base element.`);
}
this._baseHref = stripTrailingSlash(stripIndexHtml(browserBaseHref));
2015-08-26 11:41:41 -07:00
this.platformStrategy.onPopState(
(_) => { ObservableWrapper.callNext(this._subject, {'url': this.path(), 'pop': true}); });
2015-04-21 11:23:23 -07:00
}
2015-08-26 11:41:41 -07:00
path(): string { return this.normalize(this.platformStrategy.path()); }
normalize(url: string): string {
2015-08-26 11:41:41 -07:00
return stripTrailingSlash(_stripBaseHref(this._baseHref, stripIndexHtml(url)));
}
2015-05-14 15:24:35 +02:00
normalizeAbsolutely(url: string): string {
if (!url.startsWith('/')) {
url = '/' + url;
}
2015-08-26 11:41:41 -07:00
return stripTrailingSlash(_addBaseHref(this._baseHref, url));
}
go(url: string): void {
var finalUrl = this.normalizeAbsolutely(url);
2015-08-26 11:41:41 -07:00
this.platformStrategy.pushState(null, '', finalUrl);
2015-04-21 11:23:23 -07:00
}
2015-08-26 11:41:41 -07:00
forward(): void { this.platformStrategy.forward(); }
2015-04-21 11:23:23 -07:00
2015-08-26 11:41:41 -07:00
back(): void { this.platformStrategy.back(); }
2015-04-21 11:23:23 -07:00
subscribe(onNext: (value: any) => void, onThrow: (exception: any) => void = null,
onReturn: () => void = null): void {
2015-04-21 11:23:23 -07:00
ObservableWrapper.subscribe(this._subject, onNext, onThrow, onReturn);
}
}
2015-08-26 11:41:41 -07:00
function _stripBaseHref(baseHref: string, url: string): string {
if (baseHref.length > 0 && url.startsWith(baseHref)) {
return url.substring(baseHref.length);
}
return url;
}
2015-08-26 11:41:41 -07:00
function _addBaseHref(baseHref: string, url: string): string {
if (!url.startsWith(baseHref)) {
return baseHref + url;
}
return url;
}
2015-05-14 15:24:35 +02:00
function stripIndexHtml(url: string): string {
if (/\/index.html$/g.test(url)) {
// '/index.html'.length == 11
return url.substring(0, url.length - 11);
}
return url;
}
function stripTrailingSlash(url: string): string {
if (/\/$/g.test(url)) {
url = url.substring(0, url.length - 1);
}
return url;
}