pontarius-xmpp: An incomplete implementation of RFC 6120 (XMPP: Core)

[ bsd3, library, network ] [ Propose Tags ]

Pontarius XMPP is a work in progress implementation of RFC 6120 (XMPP: Core).


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.0.2.0, 0.0.3.0, 0.0.4.0, 0.0.5.0, 0.0.6.0, 0.0.7.0, 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.2.0.0, 0.2.0.1, 0.3.0.0, 0.3.0.1, 0.3.0.2, 0.3.0.3, 0.4.0.0, 0.4.0.1, 0.4.0.2, 0.4.1.0, 0.4.2.0, 0.4.2.1, 0.4.2.2, 0.4.3, 0.4.4, 0.4.5, 0.5.0, 0.5.1, 0.5.2, 0.5.3, 0.5.4, 0.5.5, 0.5.6, 0.5.6.1, 0.5.6.2, 0.5.6.3, 0.5.6.4, 0.5.6.5, 0.5.6.6, 0.5.6.7, 0.5.6.8
Dependencies attoparsec (>=0.10.0.3), base (>4 && <5), base64-bytestring (>=0.1.0.0), binary (>=0.4.1), bytestring (>=0.9.1.9), conduit (>=0.5 && <1.0), containers (>=0.4.0.0), crypto-api (>=0.9), crypto-random-api (>=0.2), cryptohash (>=0.6.1), data-default (>=0.2), dns (>=0.3.0), hslogger (>=1.1.0), iproute (>=1.2.4), lifted-base (>=0.1.0.1), mtl (>=2.0.0.0), network (>=2.3), pureMD5 (>=2.1.2.1), random (>=1.0.0.0), resourcet (>=0.3.0), split (>=0.1.2.3), stm (>=2.1.2.1), stringprep (>=0.1.3), text (>=0.11.1.5), tls (>=1.1.0), tls-extra (>=0.5.0), transformers (>=0.2.2.0), void (>=0.5.5), xml-conduit (>=1.0), xml-picklers (>=0.3), xml-types (>=0.3.1) [details]
License LicenseRef-OtherLicense
Copyright Dmitry Astapov, Pierre Kovalev, Mahdi Abdinejadi, Jon Kristensen, IETF Trust, Philipp Balzarek
Author Jon Kristensen, Mahdi Abdinejadi, Philipp Balzarek
Maintainer info@jonkri.com
Category Network
Home page https://github.com/jonkri/pontarius-xmpp/
Bug tracker mailto:info@jonkri.com
Source repo head: git clone git://github.com/jonkri/pontarius-xmpp.git
this: git clone git://github.com/jonkri/pontarius-xmpp.git(tag 0.2.0.0)
Uploaded by JonKristensen at 2013-03-13T22:15:07Z
Distributions LTSHaskell:0.5.6.8, NixOS:0.5.6.8
Reverse Dependencies 4 direct, 1 indirect [details]
Downloads 24669 total (144 in the last 30 days)
Rating 2.25 (votes: 2) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for pontarius-xmpp-0.2.0.0

[back to package description]

Welcome to Pontarius XMPP!

Pontarius XMPP is an active work in progress to build a Haskell XMPP library that implements the client capabilities of RFC 6120.

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.

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"
              def
              (Just ([scramSha1 "username" Nothing "password"], Nothing))

Tip: Note that the first parameter actually is a Text value. Import Data.Text and use the OverloadedStrings LANGUAGE pragma.

The three parameters above are the XMPP server realm, the session configuration settings (set to the default settings), and a SASL handler (for authentication). 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 (Presence Nothing Nothing Nothing Nothing Nothing []) sess

Now, let's say that we want to receive all message stanzas, and echo the stanzas back to the recipient. 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."

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.

More information

Feel free to contact Jon Kristensen if you have any questions or comments.