You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.8 KiB
63 lines
1.8 KiB
{- |
|
|
|
Copyright © 2010-2012 Jon Kristensen. |
|
|
|
This file (EchoClient.hs) illustrates how to connect, authenticate, set a simple |
|
presence, receive message stanzas, and echo them back to whoever is sending |
|
them, using Pontarius. The contents of this file may be used freely, as if it is |
|
in the public domain. |
|
|
|
-} |
|
|
|
|
|
{-# LANGUAGE OverloadedStrings #-} |
|
|
|
|
|
module Main (main) where |
|
|
|
import Control.Monad (forever) |
|
import Control.Monad.IO.Class (liftIO) |
|
import Data.Maybe (fromJust, isJust) |
|
|
|
import Network.XMPP |
|
import Network.XMPP.IM |
|
|
|
|
|
-- Server and authentication details. |
|
|
|
hostName = "nejla.com" |
|
portNumber = 5222 |
|
userName = "jon" |
|
password = "G2D9%b4S3" -- TODO |
|
|
|
|
|
-- TODO: Incomplete code, needs documentation, etc. |
|
main :: IO () |
|
main = do |
|
withNewSession $ do |
|
withConnection $ do |
|
connect "xmpp.nejla.com" "nejla.com" |
|
-- startTLS exampleParams |
|
saslResponse <- auth userName password (Just "echo-client") |
|
case saslResponse of |
|
Right _ -> return () |
|
Left e -> error $ show e |
|
sendPresence presenceOnline |
|
fork echo |
|
return () |
|
return () |
|
|
|
-- Pull message stanzas, verify that they originate from a `full' XMPP |
|
-- address, and, if so, `echo' the message back. |
|
echo :: XMPP () |
|
echo = forever $ do |
|
result <- pullMessage |
|
case result of |
|
Right message -> |
|
if (isJust $ messageFrom message) && |
|
(isFull $ fromJust $ messageFrom message) then do |
|
-- TODO: May not set from. |
|
sendMessage $ Message Nothing (messageTo message) (messageFrom message) Nothing (messageType message) (messagePayload message) |
|
liftIO $ putStrLn "Message echoed!" |
|
else liftIO $ putStrLn "Message sender is not set or is bare!" |
|
Left exception -> liftIO $ putStrLn "Error: " |