blob: 75de87c81e15c716029b47e111df5a6dabdd5bbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
module Reaktor.Plugins.Mention (plugin) where
import Control.Monad (when)
import Data.Aeson
import qualified Data.ByteString.Char8.Extended as BS
import qualified Data.Char
import Reaktor.Internal
import Reaktor.Message
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)
|