X-Git-Url: https://git.martlubbers.net/?p=cloogle-irc.git;a=blobdiff_plain;f=cloogleirc.icl;h=22a219319ae9d8441e9efa452ef2807c71a69ec6;hp=46c20f136167c1d642608d1931ac46d9548ba747;hb=40ef767249534be26a97a2aa615c758e992545ee;hpb=e81450dc6e427524ac74160cc9d54b1d8fb40cba diff --git a/cloogleirc.icl b/cloogleirc.icl index 46c20f1..22a2193 100644 --- a/cloogleirc.icl +++ b/cloogleirc.icl @@ -33,6 +33,8 @@ import TCPIP import IRC import IRCBot +import StdMisc, StdDebug + shorten :: String *World -> (String, *World) shorten s w # s = if (startsWith "http://" s) s (if (startsWith "https://" s) s ("http://" + s)) @@ -54,7 +56,7 @@ shorten s w cloogle :: String *World -> (String, *World) cloogle data w -# (mer, w) = doHTTPRequestL +# (mer, w) = doHTTPRequestFollowRedirects { newHTTPRequest & req_path = "/api.php" , req_query = "?str=" + urlEncode data @@ -65,6 +67,7 @@ cloogle data w # resp = fromOk mer = case fromJSON $ fromString resp.HTTPResponse.rsp_data of Nothing = ("couldn't parse json", w) + Just {return=127} = ("No results for " + data, w) Just clr = ("Results for " + data + " -- https://cloogle.org/#" + replaceSubString "+" "%20" (urlEncode data) + "\n" + processResults clr, w) @@ -107,6 +110,7 @@ Start :: *World -> (Maybe String, *World) Start w # ([arg0:args], w) = getCommandLine w # (io, w) = stdio w +# io = io <<< "\n" # bs = parseCLI args //| isError bs = (Just $ "\n" +++ fromError bs +++ "\n", snd $ fclose io w) # (Ok bs) = bs @@ -166,20 +170,20 @@ Start w process :: String !IRCMessage *File !*World -> (Maybe [IRCMessage], *File, !*World) process strf im io w - # (io, w) = log strf " (r): " im (io, w) + #! (io, w) = log strf " (r): " im (io, w) = case im.irc_command of Left numr = (Just [], io, w) Right cmd = case process` im.irc_prefix cmd w of (Nothing, w) = (Nothing, io, w) (Just cs, w) # msgs = map toPrefix cs - # (io, w) = foldr (log strf " (s): ") (io, w) msgs + #! (io, w) = foldr (log strf " (s): ") (io, w) msgs = (Just msgs, io, w) - log :: String String IRCMessage (*File, *World) -> (*File, *World) - log strf pref m (io, w) = (io, w) -// # (t, w) = localTime w -// = (io <<< strfTime strf t <<< pref <<< toString m, w) + log :: String String IRCMessage (!*File, !*World) -> (!*File, !*World) + log strf pref m (io, w) + #! (t, w) = localTime w + = (io <<< strfTime strf t <<< pref <<< toString m, w) process` :: (Maybe (Either IRCUser String)) IRCCommand *World -> (Maybe [IRCCommand], *World) process` (Just (Left user)) (PRIVMSG t m) w @@ -187,6 +191,7 @@ Start w | m.[0] == '!' # (msgs, w) = realProcess (split " " $ m % (1, size m)) w = (Just $ map reply msgs, w) + | m % (0,4) == "\001PING" = (Just [reply m], w) = (Just [], w) where reply = case (\(CSepList [t:_]) -> t.[0]) t of