git-annex/Git/Url.hs

73 lines
1.7 KiB
Haskell
Raw Normal View History

2011-12-14 19:30:14 +00:00
{- git repository urls
-
- Copyright 2010-2021 Joey Hess <id@joeyh.name>
2011-12-14 19:30:14 +00:00
-
- Licensed under the GNU AGPL version 3 or higher.
2011-12-14 19:30:14 +00:00
-}
module Git.Url (
scheme,
host,
port,
hostuser,
authority,
path,
2011-12-14 19:30:14 +00:00
) where
import Network.URI hiding (scheme, authority, path)
2011-12-14 19:30:14 +00:00
import Common
import Git.Types
{- Scheme of an URL repo. -}
scheme :: Repo -> Maybe String
scheme Repo { location = Url u } = Just (uriScheme u)
scheme _ = Nothing
2011-12-14 19:30:14 +00:00
{- Work around a bug in the real uriRegName
- <http://trac.haskell.org/network/ticket/40> -}
uriRegName' :: URIAuth -> String
uriRegName' a = fixup $ uriRegName a
2012-12-13 04:24:19 +00:00
where
fixup x@('[':rest)
| rest !! len == ']' = take len rest
| otherwise = x
where
len = length rest - 1
fixup x = x
2011-12-14 19:30:14 +00:00
{- Hostname of an URL repo. -}
host :: Repo -> Maybe String
2011-12-14 19:30:14 +00:00
host = authpart uriRegName'
{- Port of an URL repo, if it has a nonstandard one. -}
port :: Repo -> Maybe Integer
port r =
case authpart uriPort r of
Nothing -> Nothing
Just ":" -> Nothing
Just (':':p) -> readish p
Just _ -> Nothing
2011-12-14 19:30:14 +00:00
{- Hostname of an URL repo, including any username (ie, "user@host") -}
hostuser :: Repo -> Maybe String
hostuser r = (++)
<$> authpart uriUserInfo r
<*> authpart uriRegName' r
2011-12-14 19:30:14 +00:00
{- The full authority portion an URL repo. (ie, "user@host:port") -}
authority :: Repo -> Maybe String
2011-12-14 19:30:14 +00:00
authority = authpart assemble
2012-12-13 04:24:19 +00:00
where
assemble a = uriUserInfo a ++ uriRegName' a ++ uriPort a
2011-12-14 19:30:14 +00:00
{- Applies a function to extract part of the uriAuthority of an URL repo. -}
authpart :: (URIAuth -> a) -> Repo -> Maybe a
authpart a Repo { location = Url u } = a <$> uriAuthority u
authpart _ _ = Nothing
2011-12-14 19:30:14 +00:00
{- Path part of an URL repo. -}
path :: Repo -> Maybe FilePath
path Repo { location = Url u } = Just (uriPath u)
path _ = Nothing