Skip to content

Instantly share code, notes, and snippets.

@tarmolehtpuu
Created August 11, 2015 09:23
Show Gist options
  • Save tarmolehtpuu/e9b414c0ae9006afda73 to your computer and use it in GitHub Desktop.
Save tarmolehtpuu/e9b414c0ae9006afda73 to your computer and use it in GitHub Desktop.
<?hh
function get_app_to_handle_uri(string $uri): {
switch ($uri->getProtocol()) {
case 'itunes':
return ITUNES_APP;
case 'irc':
return IRC_APP;
case 'https':
if ($uri->getAuthority()->endsWith('.onion')) {
return TOR_BROWSER_APP;
} else {
return WEB_BROWSER_APP;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment