{-# LANGUAGE OverloadedStrings #-}
-- Copyright (C) 2010-2011 John Millikin <jmillikin@gmail.com>
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- 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 General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
module Network.Protocol.XMPP.Client.Features
( Feature (..)
, parseFeatures
, parseFeature
) where
import Control.Arrow ((&&&))
import qualified Data.ByteString.Char8
import Data.ByteString (ByteString)
import qualified Data.Text
import qualified Network.Protocol.XMPP.XML as X
data Feature =
FeatureStartTLS Bool
| FeatureSASL [ByteString]
| FeatureRegister
| FeatureBind
| FeatureSession
| FeatureUnknown X.Element
deriving (Show, Eq)
parseFeatures :: X.Element -> [Feature]
parseFeatures e =
X.isNamed nameFeatures e
>>= X.elementChildren
>>= return . parseFeature
parseFeature :: X.Element -> Feature
parseFeature elemt = feature where
unpackName = (maybe "" id . X.nameNamespace) &&& X.nameLocalName
feature = case unpackName (X.elementName elemt) of
("urn:ietf:params:xml:ns:xmpp-tls", "starttls") -> parseFeatureTLS elemt
("urn:ietf:params:xml:ns:xmpp-sasl", "mechanisms") -> parseFeatureSASL elemt
("http://jabber.org/features/iq-register", "register") -> FeatureRegister
("urn:ietf:params:xml:ns:xmpp-bind", "bind") -> FeatureBind
("urn:ietf:params:xml:ns:xmpp-session", "session") -> FeatureSession
_ -> FeatureUnknown elemt
parseFeatureTLS :: X.Element -> Feature
parseFeatureTLS _ = FeatureStartTLS True -- TODO: detect whether or not required
parseFeatureSASL :: X.Element -> Feature
parseFeatureSASL e = FeatureSASL $
X.elementChildren e
>>= X.isNamed nameMechanism
>>= X.elementNodes
>>= X.isContent
>>= return . Data.ByteString.Char8.pack . Data.Text.unpack . X.contentText
nameMechanism :: X.Name
nameMechanism = "{urn:ietf:params:xml:ns:xmpp-sasl}mechanism"
nameFeatures :: X.Name
nameFeatures = "{http://etherx.jabber.org/streams}features"