module Lambdabot.Plugin.Novelty.Unlambda (unlambdaPlugin) where
import Lambdabot.Config.Novelty
import Lambdabot.Plugin
import Lambdabot.Util.Process
import Text.Regex.TDFA
unlambdaPlugin :: Module ()
unlambdaPlugin :: Module ()
unlambdaPlugin = Module ()
forall st. Module st
newModule
{ moduleCmds :: ModuleT () LB [Command (ModuleT () LB)]
moduleCmds = [Command (ModuleT () LB)]
-> ModuleT () LB [Command (ModuleT () LB)]
forall (m :: * -> *) a. Monad m => a -> m a
return
[ (String -> Command Identity
command String
"unlambda")
{ help :: Cmd (ModuleT () LB) ()
help = String -> Cmd (ModuleT () LB) ()
forall (m :: * -> *). Monad m => String -> Cmd m ()
say String
"unlambda <expr>. Evaluate an unlambda expression"
, process :: String -> Cmd (ModuleT () LB) ()
process = \String
msg -> do
String
binary <- Config String -> Cmd (ModuleT () LB) String
forall (m :: * -> *) a. MonadConfig m => Config a -> m a
getConfig Config String
unlambdaBinary
IO String -> Cmd (ModuleT () LB) ()
forall (m :: * -> *). MonadIO m => IO String -> Cmd m ()
ios80 (String -> String -> (String -> String) -> IO String
run String
binary String
msg String -> String
scrub)
}
]
}
scrub :: String -> String
scrub :: String -> String
scrub = [String] -> String
unlines ([String] -> String) -> (String -> [String]) -> String -> String
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Int -> [String] -> [String]
forall a. Int -> [a] -> [a]
take Int
6 ([String] -> [String])
-> (String -> [String]) -> String -> [String]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (String -> String) -> [String] -> [String]
forall a b. (a -> b) -> [a] -> [b]
map (Char
' 'Char -> String -> String
forall a. a -> [a] -> [a]
:) ([String] -> [String])
-> (String -> [String]) -> String -> [String]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. String -> [String]
lines (String -> [String]) -> (String -> String) -> String -> [String]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. String -> String
cleanit
cleanit :: String -> String
cleanit :: String -> String
cleanit String
s | String
s String -> String -> Bool
forall source source1 target.
(RegexMaker Regex CompOption ExecOption source,
RegexContext Regex source1 target) =>
source1 -> source -> target
=~ String
terminated = String
"Terminated\n"
| Bool
otherwise = String
s
where terminated :: String
terminated = String
"waitForProc"