summaryrefslogtreecommitdiff
path: root/Plugins/Quote.hs
blob: fd36e1143c6d7ce954c5c42104a465659c512bf2 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module Plugins.Quote
    ( mainQuote
    ) where

import Control.Concurrent.Chan
import Control.Monad.State
import System.Time (ClockTime)

import Hsbot.IRCPlugin
import Hsbot.Types
import Hsbot.Utils

-- | A quote object
data Quote = Quote
    { quoter    :: String
    , quote     :: [String]
    , quoteTime :: ClockTime
    , votes     :: Int
    } deriving (Show)

-- | A QuoteBot state
type QuoteDB = [Quote]

-- | The QuoteBot monad
type QuoteBot a = StateT QuoteDB IO a

-- | The plugin's main entry point
mainQuote :: Chan BotMsg -> Chan BotMsg -> IO ()
mainQuote serverChan chan = do
    let plugin = PluginInstance "Quote" serverChan chan
    plugin' <- (execStateT run plugin) `catch` (const $ return plugin)
    putStrLn "graou"
    evalStateT stop plugin'

-- | The IrcPlugin monad main function
run :: IrcPlugin ()
run = do
    -- TODO : init quote handling (sqlite + structure to handle temporary stuff)
    sendRegisterCommand "quote"
    runPlugin

stop :: IrcPlugin ()
stop = do
    sendUnregisterCommand "quote"
    -- TODO : send cancel messages for all temporary stuff

runPlugin :: IrcPlugin ()
runPlugin = forever $ do
    msg <- readMsg
    eval msg
  where
    eval :: BotMsg -> IrcPlugin ()
    eval (InternalCmd intCmd) = do
        case intCmdCmd intCmd of
            "RUN" -> let stuff = words $ intCmdMsg intCmd
                     in case head stuff of
                            "quote" -> lift $ trace $ "Quote module has been invoked for: " ++ (show intCmd)
                            _       -> lift $ trace $ show intCmd -- TODO : help message
            _     -> lift $ trace $ show intCmd
    eval (InputMsg msg) = return ()
    eval _ = return ()