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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
module Reaktor.Plugins.Register where
import Blessings
import Prelude.Extended
import Data.Aeson
import qualified Data.Text as T
import qualified Data.Text.IO as T
import qualified Reaktor.Nick as Nick
import Reaktor
import System.Environment (lookupEnv)
data ConfigNickServ = ConfigNickServ
{ cnsPassFile :: FilePath
, cnsPrefix :: Text
}
instance FromJSON ConfigNickServ where
parseJSON = \case
Object v ->
ConfigNickServ
<$> v .: "passFile"
<*> v .:? "prefix" .!= "NickServ!NickServ@services."
_ -> undefined
data Config = Config
{ cNick :: Maybe Text
, cUser :: Maybe Text
, cReal :: Text
, cChannels :: [Text]
, cNickServ :: Maybe ConfigNickServ
}
instance Default Config where
def = Config def def "reaktor2" def def
instance FromJSON Config where
parseJSON = \case
Object v -> do
cNick <- v .:? "nick" .!= Nothing
cUser <- v .:? "user"
cReal <- v .:? "real" .!= cReal def
cChannels <- v .:? "channels" .!= []
cNickServ <- v .:? "NickServ" .!= cNickServ def
pure Config{..}
_ -> undefined
new :: Config -> Actions -> IO (Message -> IO ())
new Config{..} Actions{..} = do
let
isNickServEnabled = aIsSecure && isJust cNickServ
Just ConfigNickServ{..} = cNickServ
regain nick pass = do
aSend (privmsg "NickServ" ["REGAIN", nick, pass])
channelsArg = T.intercalate "," cChannels
-- TODO make this similar to privmsg (i.e. don't aSend)
join = do
-- TODO JOIN only if not already joined
-- i.e. not during subsequent nick changes
unless (T.null channelsArg) $
aSend (Message Nothing "JOIN" [channelsArg])
start = do
nick <- maybe aGetNick pure cNick
user <-
maybe (maybe nick T.pack <$> lookupEnv "LOGNAME") pure cUser
aSetNick nick
aSend (Message Nothing "NICK" [nick])
aSend (Message Nothing "USER" [user, "*", "0", cReal])
onNick newnick = do
nick <- aGetNick
when (newnick == nick) join
useRandomNick = do
nick <- Nick.getRandom
aSetNick nick
aSend (Message Nothing "NICK" [nick])
useNextNick = do
nick0 <- aGetNick
let nick = Nick.getNext nick0
aSetNick nick
aSend (Message Nothing "NICK" [nick])
useNextNickTemporarily = do
nick <- aGetNick
let tmpNick = Nick.getNext nick
-- do not aSetNick tmpNick
aSend (Message Nothing "NICK" [tmpNick])
if not isNickServEnabled then do
when (isJust cNickServ) $ do
aLog $ SGR [38,5,202] "! disabling NickServ due to insecure connection"
pure $ \case
Start -> start
Message (Just _self) "NICK" (newnick:[]) -> onNick newnick
Message _ "001" _ -> join
Message _ "432" _ -> useRandomNick
Message _ "433" _ -> useNextNick
Message _ "437" (_msgtarget:res:_reason:[]) -> do
nick <- aGetNick
when (res == nick) useNextNick
_ -> pure ()
else do
-- TODO do not fail, but disable NicServ
[pass] <- T.lines <$> T.readFile cnsPassFile
pure $ \case
Start -> start
Message (Just _self) "NICK" (newnick:[]) -> onNick newnick
-- RFC2812 RPL_WELCOME
Message _ "001" [msgtarget,_text] -> do
nick <- aGetNick
aSend (privmsg "NickServ" ["IDENTIFY", nick, pass])
when (msgtarget /= nick) (regain nick pass)
-- TODO structured prefix, and check just for "NickServ"?
Message (Just prefix) "NOTICE" (msgtarget:text:[]) ->
when (prefix == cnsPrefix) $ do
nick <- aGetNick
let stx = ("\STX"<>) . (<>"\STX")
if
| text == "You are now identified for " <> stx nick <> "." -> do
-- otherwise join at NICK
when (msgtarget == nick) join
| text == "Invalid password for " <> stx nick <> "." -> do
-- TODO warning
when (msgtarget == nick) join
| text == stx nick <> " is not a registered nickname." -> do
-- TODO warning
when (msgtarget == nick) join
| otherwise ->
pure ()
-- RFC1459 ERR_ERRONEUSNICKNAME
Message (Just _servername) "432" (_msgtarget:_nick:_reason:[]) ->
useRandomNick
-- RFC1459 ERR_NICKNAMEINUSE
Message (Just _servername) "433" (_msgtarget:_nick:_reason:[]) ->
-- TODO what if nick0 /= nick? OR assert/prove nick0 == nick?
useNextNickTemporarily
--RFC2812 ERR_UNAVAILRESOURCE
Message (Just _servername) "437" (msgtarget:res:_reason:[]) -> do
nick <- aGetNick
when (res == nick) $
case msgtarget of
"*" -> useNextNickTemporarily
_ -> regain nick pass
_ -> pure ()
|