Skip to content

Instantly share code, notes, and snippets.

@DavidFrahm
Last active August 29, 2015 13:56
Show Gist options
  • Save DavidFrahm/9159033 to your computer and use it in GitHub Desktop.
Save DavidFrahm/9159033 to your computer and use it in GitHub Desktop.
MyApp.factory('ServerUrls', function ($window) {
function getCurrentPathname() {
var pathname = $window.location.pathname;
var hasUsefulPath = (pathname && pathname !== '/');
if (hasUsefulPath) {
return pathname;
}
}
function getCurrentHashFragment() {
var hashFragment = $window.location.hash;
var hasUsefulHashFragment = (hashFragment && hashFragment !== '#/');
if (hasUsefulHashFragment) {
var djangoRedirectSafeHash = '%23';
return djangoRedirectSafeHash + hashFragment.split('#')[1];
}
return '';
}
function getLoginUrl(addRedirect) {
if (addRedirect !== false) {
addRedirect = true;
}
var loginUrl = '/login/';
var hasUsefulRedirect = (getCurrentPathname() || getCurrentHashFragment());
if (addRedirect && hasUsefulRedirect) {
loginUrl += '?next=' + getCurrentPathname() + getCurrentHashFragment();
}
return loginUrl;
}
return {
'login': getLoginUrl
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment