BSD-3-Clause licensed by Philipp Balzarek
Maintained by [email protected]
This version can be pinned in stack with:pontarius-xmpp-0.5.6.8@sha256:dc7254e2a966626b991732da55ce166de68fe548585c1a0f90c1e9f3f2d577e7,7318

Module documentation for 0.5.6.8

  • Network
    • Network.Xmpp
      • Network.Xmpp.Concurrent
        • Network.Xmpp.Concurrent.Basic
        • Network.Xmpp.Concurrent.IQ
        • Network.Xmpp.Concurrent.Message
        • Network.Xmpp.Concurrent.Monad
        • Network.Xmpp.Concurrent.Presence
        • Network.Xmpp.Concurrent.Threads
        • Network.Xmpp.Concurrent.Types
      • Network.Xmpp.IM
      • Network.Xmpp.Internal
      • Network.Xmpp.Lens
      • Network.Xmpp.Marshal
      • Network.Xmpp.Sasl
        • Network.Xmpp.Sasl.Common
        • Network.Xmpp.Sasl.Mechanisms
          • Network.Xmpp.Sasl.Mechanisms.DigestMd5
          • Network.Xmpp.Sasl.Mechanisms.Plain
          • Network.Xmpp.Sasl.Mechanisms.Scram
        • Network.Xmpp.Sasl.StringPrep
        • Network.Xmpp.Sasl.Types
      • Network.Xmpp.Stanza
      • Network.Xmpp.Stream
      • Network.Xmpp.Tls
      • Network.Xmpp.Types
      • Network.Xmpp.Utilities

Pontarius XMPP

Pontarius XMPP is a Haskell XMPP client library that implements the capabilities of RFC 6120 (“XMPP CORE”), RFC 6121 (“XMPP IM”), and RFC 6122 (“XMPP ADDR”). Pontarius XMPP was part of the Pontarius project, an effort to produce free and open source, uncentralized, and privacy-aware software solutions.

While in alpha, Pontarius XMPP works quite well and fulfills most requirements of the RFCs.

Prerequisites

Pontarius XMPP requires GHC 7.0, or later.

You will need the ICU Unicode library and it’s header files in order to be able to build Pontarius XMPP. On Debian, you will need to install the libicu-dev package. In Fedora, the package is called libicu-devel.

Note to users of GHC 7.0 and GHC 7.2: You will need cabal-install, version 0.14.0 or higher, or the build will fail with an “unrecognized option: –disable-benchmarks” error. The versions 1.16.0 and higher might not build on your system; if so, install 0.14.0 with “cabal install cabal-install-0.14.0”.

Note to users of GHC 7.2.1: Due to a bug, recent versions of the binary package wont build without running “ghc-pkg trust base”.

Note to users of GHC 7.0.1: You will want to configure your Cabal environment (including cabal-install) for version 0.9.2.1 of bytestring.

Getting started

The latest release of Pontarius XMPP, as well as its module API pages, can always be found at the Pontarius XMPP Hackage page.

Note: Pontarius XMPP is still in its Alpha phase. Pontarius XMPP is not yet feature-complete, it may contain bugs, and its API may change between versions.

The first thing to do is to import the modules that we are going to use. We are also using the OverloadedStrings LANGUAGE pragma in order to be able to type Text values like strings.

{-# LANGUAGE OverloadedStrings #-}

import Network.Xmpp

import Control.Monad
import Data.Default
import System.Log.Logger

Pontarius XMPP supports hslogger logging. Start by enabling console logging.

updateGlobalLogger "Pontarius.Xmpp" $ setLevel DEBUG

When this is done, a Session object can be acquired by calling session. This object will be used for interacting with the library.

result <- session
             "example.com"
              (Just (\_ -> ( [scramSha1 "username" Nothing "password"])
                           , Nothing))
              def

The three parameters above are the XMPP server realm, a SASL handler (for authentication), and the session configuration settings (set to the default settings). session will perform the necessary DNS queries to find the address of the realm, connect, establish the XMPP stream, attempt to secure the stream with TLS, authenticate, establish a concurrent interface for interacting with the stream, and return the Session object.

The return type of session is IO (Either XmppFailure Session). As XmppFailure is an Control.Monad.Error instance, you can utilize the ErrorT monad transformer for error handling. A more simple way of doing it could be doing something like this:

sess <- case result of
            Right s -> return s
            Left e -> error $ "XmppFailure: " ++ (show e)

Next, let us set our status to Online.

sendPresence def sess

Here, def refers to the default Presence value, which is the same as Presence Nothing Nothing Nothing Nothing Available [].

Now, let’s say that we want to receive all message stanzas, and echo the stanzas back to the sender. This can be done like so:

forever $ do
    msg <- getMessage sess
    case answerMessage msg (messagePayload msg) of
        Just answer -> sendMessage answer sess
        Nothing -> putStrLn "Received message with no sender."

You don’t need to worry about escaping your Text values - Pontarius XMPP (or rather, xml-picklers) will take care of that for you.

Additional XMPP threads can be created using dupSession and forkIO.

For a public domain example of a simple Pontarius XMPP (Cabal) project, refer to the examples/echoclient directory.

Changes

0.5.1 to 0.6.0

  • Changed roster update callback to take RosterUpdate type
  • Added onrosterPushL lens
  • Removed legacy crypto-random (this caused issues when compiling with GHC 9.2.5)

0.5.0 to 0.5.1

  • Fixed input logger choking on long non-ascii messages

0.4.5 to 0.5.0

  • Support for the session element is now determined from stream features, the establishSession option was removed
  • The parser can now handle nonzas. Nonzas can be handled with a plugin
  • An initial roster can now be set with the initialRoster session configuration option
  • The JID parser can now handle “/” and “@” characters in the resource part