Last active
August 29, 2015 13:56
-
-
Save DavidFrahm/9159033 to your computer and use it in GitHub Desktop.
Expressive code without comments: http://www.frahmbo.com/expressive-code-without-comments/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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