summaryrefslogtreecommitdiff
path: root/Hsbot/Plugin.hs
blob: aafa4951403f0f191d3d096a4d7adca5e2c79f3e (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
module Hsbot.Plugin
    ( spawnIrcPlugins
    ) where

import Control.Concurrent
import Control.Concurrent.Chan ()
import Control.Monad.State
import qualified Data.Map as M

import Hsbot.Config
import Hsbot.Irc.Config
import Hsbot.Irc.Core
import Hsbot.Types

-- | spawns IrcPlugins
spawnIrcPlugins :: Bot ()
spawnIrcPlugins = do
    config <- gets botConfig
    mapM_ (spawnIrcPlugin) (ircConfigs config)
  where
    spawnIrcPlugin :: IrcConfig -> Bot ()
    spawnIrcPlugin config = do
        bot <- get
        let chan  = botChan bot
        pchan <- liftIO (newChan :: IO (Chan BotMsg))
        threadId <- liftIO $ forkIO (startIrcbot config chan pchan)
        let plugin  = PluginState { pluginName    = ircConfigName config
                                  , pluginChan    = pchan
                                  , pluginHandles = M.empty }
            plugins = botPlugins bot
        put $ bot { botPlugins = M.insert (pluginName plugin) (plugin, threadId) plugins }