2021-10-22 12:49:03 -04:00
|
|
|
{-|
|
|
|
|
|
|
|
|
Module : Network.GemServ
|
|
|
|
Description : Gemini Server Stuff
|
|
|
|
Copyright : (C) Jonathan Lamothe
|
|
|
|
License : AGPL-3.0-or-later
|
|
|
|
Maintainer : jonathan@jlamothe.net
|
|
|
|
Stability : experimental
|
|
|
|
Portability : POSIX
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public
|
|
|
|
License along with this program. If not, see
|
|
|
|
<https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
-}
|
|
|
|
|
2021-10-24 12:47:37 -04:00
|
|
|
{-# LANGUAGE LambdaCase #-}
|
|
|
|
|
2021-10-22 14:29:15 -04:00
|
|
|
module Network.GemServ (
|
2021-10-24 15:43:29 -04:00
|
|
|
encodeGemURL,
|
2021-10-24 12:47:37 -04:00
|
|
|
escapeString,
|
|
|
|
unescapeString
|
2021-10-22 14:29:15 -04:00
|
|
|
) where
|
|
|
|
|
2021-10-24 12:47:37 -04:00
|
|
|
import qualified Data.ByteString as BS
|
2021-10-24 14:28:41 -04:00
|
|
|
import Data.ByteString.Builder (charUtf8, stringUtf8, toLazyByteString)
|
2021-10-24 12:47:37 -04:00
|
|
|
import qualified Data.ByteString.Lazy as BSL
|
2021-10-24 14:28:41 -04:00
|
|
|
import Data.Char (chr, ord, toLower)
|
2021-10-24 12:47:37 -04:00
|
|
|
import Data.List (find, intercalate)
|
|
|
|
import Data.Maybe (fromJust)
|
|
|
|
import qualified Data.Text as T
|
|
|
|
import Data.Text.Encoding (decodeUtf8')
|
2021-10-22 14:29:15 -04:00
|
|
|
|
|
|
|
import Network.GemServ.Types
|
|
|
|
|
2021-10-24 15:43:29 -04:00
|
|
|
-- | Encodes a 'GemURL' into a 'String'
|
|
|
|
encodeGemURL :: GemURL -> String
|
|
|
|
encodeGemURL url =
|
2021-10-22 14:29:15 -04:00
|
|
|
"gemini://" ++ authority ++ "/" ++ path ++ query
|
|
|
|
where
|
2021-10-24 15:43:29 -04:00
|
|
|
authority = gemHost url ++ case gemPort url of
|
2021-10-22 14:29:15 -04:00
|
|
|
Just port -> ':' : show port
|
|
|
|
Nothing -> ""
|
2021-10-24 15:43:29 -04:00
|
|
|
path = intercalate "/" $ map escapeString $ gemPath url
|
|
|
|
query = case gemQuery url of
|
2021-10-22 14:29:15 -04:00
|
|
|
"" -> ""
|
2021-10-22 16:51:04 -04:00
|
|
|
q -> '?' : escapeString q
|
2021-10-22 12:49:03 -04:00
|
|
|
|
2021-10-22 16:40:44 -04:00
|
|
|
-- | add required escape sequences to a string
|
|
|
|
escapeString :: String -> String
|
2021-10-24 14:28:41 -04:00
|
|
|
escapeString = concatMap
|
|
|
|
( \n -> let ch = chr $ fromIntegral n in
|
|
|
|
if ch `elem` unescaped
|
|
|
|
then [ch]
|
|
|
|
else '%' : toHex n
|
|
|
|
) . BSL.unpack . toLazyByteString . stringUtf8
|
2021-10-22 16:40:44 -04:00
|
|
|
where
|
|
|
|
unescaped = ['0'..'9'] ++ ['A'..'Z'] ++ ['a'..'z'] ++ "~-_."
|
2021-10-24 14:28:41 -04:00
|
|
|
toHex =
|
|
|
|
( \n -> let
|
|
|
|
high = n `div` 16
|
|
|
|
low = n `mod` 16
|
|
|
|
in [hexDigits !! high, hexDigits !! low]
|
|
|
|
) . fromIntegral
|
2021-10-22 16:40:44 -04:00
|
|
|
|
2021-10-24 12:47:37 -04:00
|
|
|
-- | decode an escaped string back to its original value
|
|
|
|
unescapeString :: String -> Maybe String
|
|
|
|
unescapeString str = case decodeUtf8' $ BS.pack $ toBytes str of
|
|
|
|
Right t -> Just $ T.unpack t
|
|
|
|
_ -> Nothing
|
|
|
|
where
|
|
|
|
toBytes = \case
|
|
|
|
"" -> []
|
|
|
|
'%':h:l:sub -> let
|
|
|
|
h' = toLower h
|
|
|
|
l' = toLower l
|
|
|
|
in if h' `elem` hexDigits && l' `elem` hexDigits
|
|
|
|
then toByte h' l' : toBytes sub
|
|
|
|
else fromIntegral (ord '%') : toBytes (h : l : sub)
|
|
|
|
ch:sub ->
|
|
|
|
BSL.unpack (toLazyByteString $ charUtf8 ch) ++ toBytes sub
|
|
|
|
toByte h l = toNum h * 16 + toNum l
|
|
|
|
toNum ch = fst $ fromJust $
|
|
|
|
find (\x -> snd x == ch) $ zip [0..] hexDigits
|
|
|
|
|
2021-10-22 16:40:44 -04:00
|
|
|
hexDigits :: String
|
|
|
|
hexDigits = ['0'..'9'] ++ ['a'..'f']
|
|
|
|
|
2021-10-22 12:49:03 -04:00
|
|
|
--jl
|