Venusia: Internet Gopher Protocol server framework, including tools for menus

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Please see the README on GitHub at https://github.com/someodd/Venusia#readme


[Skip to Readme]

Properties

Versions 0.1.0.0
Change log CHANGELOG.md
Dependencies base (>=4.7 && <5), bytestring (>=0.11.5 && <0.13), containers (>=0.6.7 && <0.7), directory (>=1.3.8 && <1.4), filepath (>=1.4.300 && <1.5), network (>=3.2.7 && <3.3), time (>=1.12.2 && <1.13), unordered-containers (>=0.2.20 && <0.3), utf8-string (>=1.0.2 && <1.1), Venusia [details]
License BSD-3-Clause
Copyright 2025 someodd
Author someodd
Maintainer someodd@pm.me
Category Network
Home page https://github.com/someodd/Venusia#readme
Bug tracker https://github.com/someodd/Venusia/issues
Source repo head: git clone https://github.com/someodd/Venusia
Uploaded by someodd at 2025-03-27T11:39:57Z

Modules

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for Venusia-0.1.0.0

[back to package description]

O Venezia, Venaga, Venusia

Venusia is a Haskell library for buildling Internet Gopher Protocol servers and handling gophermaps/menus.

Example

{- | This is merely an example!

-}

module Main (main) where

import Venusia.Server
import Venusia.MenuBuilder
import qualified Data.ByteString.Char8 as BS

-- | Register your routes.
routes :: [Route]
routes =
  [ on "/hello" $ \_ ->
      return "Hello, gopher!\r\n"
  , onWildcard "/echo/*/something" $ \request ->
      case request.reqWildcard of
        Just wildcard -> pure wildcard
        Nothing -> pure "Nothing."
  , on "/search" handleSearch
  , onWildcard "/superSearch/*/bar" handleWildcardSearch
  ]

-- | Handler for the wildcard search route.
handleWildcardSearch :: Request -> IO BS.ByteString
handleWildcardSearch request =
    case (request.reqWildcard, request.reqQuery) of
        (Nothing, _) ->
            pure $ info "Venusia was coded incorrectly, apparently."
        (_, Nothing) ->
            pure $ info "User error: missing query."
        (Just wildcard, Just query) -> do
            pure . info $ wildcard <> " AND " <> query

-- | Handler for search queries (Gopher item type 7).
handleSearch :: Request -> IO BS.ByteString
handleSearch request = do
  let query =
        case request.reqQuery of
            Nothing -> ""
            (Just something) -> something
  -- Build the response
  return . render $
    [ info "Search results for: " <> query
    , text "Example file" "/fake" "localhost" 7070
    , directory "Example dir" "/fake" "localhost" 7070
    ]

main :: IO ()
main = serve "7070" routes