From ce276eee82ec0b8c4106beb4c51d6f9eb77335c4 Mon Sep 17 00:00:00 2001 From: tv Date: Sun, 13 Jan 2019 23:52:05 +0100 Subject: src: init --- src/Reaktor/Plugins/Mention.hs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/Reaktor/Plugins/Mention.hs (limited to 'src/Reaktor/Plugins/Mention.hs') diff --git a/src/Reaktor/Plugins/Mention.hs b/src/Reaktor/Plugins/Mention.hs new file mode 100644 index 0000000..0c86d74 --- /dev/null +++ b/src/Reaktor/Plugins/Mention.hs @@ -0,0 +1,27 @@ +{-# LANGUAGE LambdaCase #-} +{-# LANGUAGE OverloadedStrings #-} +module Reaktor.Plugins.Mention (plugin) where + +import Control.Monad (when) +import Data.Aeson +import qualified Data.ByteString.Char8 as BS +import qualified Data.Char +import Reaktor.Message +import Reaktor.Types + + +plugin :: Value -> IO Plugin +plugin _ = return (Plugin run False) + + +run :: PluginFunc +run = \case + Message _ "PRIVMSG" (msgtarget:text:[]) -> do + nick <- getNick + when (isMention nick text) $ do + sendMsg (privmsg msgtarget ["I'm famous!"]) + _ -> return () + where + isMention nick text = + not (BS.isPrefixOf (nick <> ":") text) && + any (==nick) (BS.splitWith (not . Data.Char.isAlphaNum) text) -- cgit v1.2.3