chiark / gitweb /
Figured out what to do about tellme secure but register insecure. Implementing untel...
[ircbot] / bot.tcl
CommitLineData
281f2c0e
IJ
1# Actual IRC bot code
2
3set helpfile helpinfos
9bc33297 4
574abac6 5source irccore.tcl
281f2c0e
IJ
6source parsecmd.tcl
7source stdhelp.tcl
7818b6af 8
34c25cd7
IJ
9defset marktime_min 300
10defset marktime_join_startdelay 5000
11
281f2c0e
IJ
12proc privmsg_unlogged {prefix ischan params} {
13 if {!$ischan ||
574abac6 14 [regexp {^![a-z][-a-z]*[a-z]( .*)?$} [lindex $params 1]]} {
281f2c0e 15 return 0
7818b6af 16 }
574abac6
IJ
17 # on-channel message, ignore
18 set chan [lindex $params 0]
19 upvar #0 chan_lastactivity([irctolower $chan]) la
20 set la [clock seconds]
37a9f1ad 21 catch_logged { recordlastseen_p $prefix "talking on $chan" 2 }
281f2c0e 22 return 1
422f52e4
IJ
23}
24
ef177383
IJ
25proc showintervalsecs {howlong abbrev} {
26 return [showintervalsecs/[opt timeformat] $howlong $abbrev]
d83fb8db
IJ
27}
28
ef177383 29proc showintervalsecs/ks {howlong abbrev} {
7ce72032
IJ
30 if {$howlong < 1000} {
31 return "${howlong}s"
83dd1224
IJ
32 } else {
33 if {$howlong < 1000000} {
34 set pfx k
35 set scale 1000
36 } else {
37 set pfx M
38 set scale 1000000
39 }
40 set value [expr "$howlong.0 / $scale"]
41 foreach {min format} {100 %.0f 10 %.1f 1 %.2f} {
42 if {$value < $min} continue
7ce72032 43 return [format "$format${pfx}s" $value]
83dd1224
IJ
44 }
45 }
46}
47
ef177383 48proc format_qty {qty unit abbrev} {
d83fb8db 49 set o $qty
ef177383
IJ
50 if {$abbrev} {
51 append o [string range $unit 0 0]
52 } else {
53 append o " "
54 append o $unit
55 if {$qty != 1} { append o s }
56 }
d83fb8db
IJ
57 return $o
58}
59
ef177383 60proc showintervalsecs/hms {qty abbrev} {
d83fb8db
IJ
61 set ul {second 60 minute 60 hour 24 day 7 week}
62 set remainv 0
63 while {[llength $ul] > 1 && $qty >= [set uv [lindex $ul 1]]} {
64 set remainu [lindex $ul 0]
65 set remainv [expr {$qty % $uv}]
66 set qty [expr {($qty-$remainv)/$uv}]
67 set ul [lreplace $ul 0 1]
68 }
ef177383 69 set o [format_qty $qty [lindex $ul 0] $abbrev]
d83fb8db 70 if {$remainv} {
ef177383
IJ
71 if {!$abbrev} { append o " " }
72 append o [format_qty $remainv $remainu $abbrev]
d83fb8db
IJ
73 }
74 return $o
75}
76
7ce72032
IJ
77proc showinterval {howlong} {
78 if {$howlong <= 0} {
79 return {just now}
80 } else {
ef177383 81 return "[showintervalsecs $howlong 0] ago"
7ce72032
IJ
82 }
83}
84
83dd1224
IJ
85proc showtime {when} {
86 return [showinterval [expr {[clock seconds] - $when}]]
87}
88
d7eda3bc
IJ
89proc parse_interval {specified min} {
90 if {![regexp {^([0-9]+)([a-z]+)$} $specified dummy value unit]} {
91 error "invalid syntax for interval"
92 }
93 switch -exact $unit {
94 s { set u 1 }
95 ks { set u 1000 }
96 m { set u 60 }
97 h { set u 3600 }
98 default { error "unknown unit of time $unit" }
99 }
100 if {$value > 86400*21/$u} { error "interval too large" }
101 set result [expr {$value*$u}]
102 if {$result < $min} { error "interval too small (<${min}s)" }
103 return $result
104}
105
83dd1224
IJ
106proc def_msgproc {name argl body} {
107 proc msg_$name "varbase $argl" "\
108 upvar #0 msg/\$varbase/dest d\n\
109 upvar #0 msg/\$varbase/str s\n\
110 upvar #0 msg/\$varbase/accum a\n\
111$body"
112}
113
114def_msgproc begin {dest str} {
115 set d $dest
116 set s $str
117 set a {}
118}
119
120def_msgproc append {str} {
121 set ns "$s$str"
122 if {[string length $s] && [string length $ns] > 65} {
123 msg__sendout $varbase
124 set s " [string trimleft $str]"
125 } else {
126 set s $ns
127 }
128}
129
130def_msgproc finish {} {
131 msg__sendout $varbase
132 unset s
133 unset d
134 return $a
135}
136
137def_msgproc _sendout {} {
138 lappend a [string trimright $s]
139 set s {}
140}
141
142proc looking_whenwhere {when where} {
143 set str [showtime [expr {$when-1}]]
144 if {[string length $where]} { append str " on $where" }
145 return $str
146}
147
31eadeb5 148proc tell_event {nl event} {
fdf998c1
IJ
149 # For `act' we *haven't* yet done the 750ms delay; we implement
150 # that here. Also, here we turn `talk' into `talk' now and `act'
151 # later. We also support the psuedo-event `none'. The del msg
152 # and new msg events are handled by the command procedures, not here.
268336f8
IJ
153 global calling_nick
154 if {[info exists calling_nick] { set save $calling_nick }
b0a2d58f 155 switch -exact $event {
fdf998c1 156 none { }
b0a2d58f 157 talk {
31eadeb5
IJ
158 tell_event_core $nl talk
159 tell_event $nl act
b0a2d58f 160 }
09c94f5b 161 act {
31eadeb5 162 after 750 [list tell_event_core $nl $event]
fdf998c1
IJ
163 }
164 ident {
31eadeb5 165 tell_event_core $nl $event
b0a2d58f
IJ
166 }
167 default {
31eadeb5 168 error "tell_event $nl $event"
b0a2d58f
IJ
169 }
170 }
268336f8 171 if {[info exists save]} { set calling_nick $save }
b0a2d58f
IJ
172}
173
31eadeb5 174proc tell_event_core {nl event} {
fdf998c1 175 # event is `talk', `act' or `ident'
b0a2d58f 176 # When user talks we actually get talk now and act later
b0a2d58f 177FIXME - implement all cmds
31eadeb5 178FIXME - implement tells_delete_msgs catch { unset stt } ?
fdf998c1 179FIXME - document the extra param to recordlastseen
268336f8
IJ
180 global calling_nick
181 set calling_nick $nl
37a9f1ad
IJ
182 set iml [msgdb_get $nl inbound]
183 if {![llength $iml]} return
184
185 upvar #0 nick_telling($nl) telling
186 upvar #0 nick_unique($nl) u
187
188 if {[info exists telling]} {
fdf998c1 189 manyset $telling u_last stt telling_when
c7430bf9
IJ
190 if {![info exists u] || "$u_last" != "$u"} {
191 unset telling; unset stt; unset telling_when
192 }
37a9f1ad
IJ
193 }
194
195 if {![info exists stt]} {
196 set stt norecord
197 set telling_when $now
198 }
199
200 set ago [expr {$now - $telling_when}]
201
fdf998c1 202 # Now we have the components of a telling state
c7430bf9 203 # u - nick_unique (unset if not visible)
fdf998c1
IJ
204 # stt - state: norecord, mentioned, passede
205 # ago - how long ago since we did anything
206
207 # We compute an evstate to dispatch on as follows:
208
37a9f1ad 209 # evstate is string of letters
fdf998c1 210 # current state
c7430bf9 211 # n NORECORD (MESSAGES)
fdf998c1
IJ
212 # m MENTIONED
213 # p PASSED
37a9f1ad
IJ
214 # event
215 # t talk
216 # a act
fdf998c1 217 # i ident
37a9f1ad
IJ
218 # security level and timing
219 # ii Insecure
220 # ss Secure and soon (before interval)
221 # sl Secure and late (after interval)
fdf998c1
IJ
222 # current identification
223 # i Identified
224 # u Unidentified
37a9f1ad
IJ
225 # reliability and timing
226 # uu Unreliable
227 # rv Remind, very soon (before within-interval)
228 # rs Remind, soon (between)
fdf998c1 229 # rl Remind, late (after every-interval)
37a9f1ad
IJ
230 # ps Pester, soon (before interval)
231 # pl Pester, late (after interval)
fdf998c1
IJ
232
233 set evstate {}
234
235 append evstate [string range $stt 0 0]
236 append evstate [string range $event 0 0]
37a9f1ad 237
26477e22 238 manyset [tell_effective_sec $n] sec secwhen
37a9f1ad 239 switch -exact $sec {
fdf998c1
IJ
240 insecure { append evstate ii }
241 secure { append evstate [expr {$ago<$secwhen ? "sl" : "ss"}] }
242 default { append evstate "#$sec#" }
37a9f1ad
IJ
243 }
244
fdf998c1
IJ
245 upvar #0 nick_username($nl) nu
246 if {[info exists nu] && "$nu" == "[nickdb_get $nl username]"} {
247 append evstate i
248 } else {
249 append evstate u
250 }
e06683f2 251
37a9f1ad
IJ
252 manyset [nickdb_set $n tellrel] rel relint relwithin
253 switch -exact $rel {
254 unreliable { append evstate uu }
255 remind { append evstate [expr {
256 $ago<$relwithin ? "rv" : $ago<$relint ? "rs" : "rl"
257 }]}
258 pester { append evstate [expr {$ago<$relint ? "ps" : "pl"}] }
259 default { append evstate "#$rel#" }
260 }
261
37a9f1ad 262 switch -glob $evstate {
fdf998c1 263 pt???rv {
e06683f2
IJ
264 # consider delivered:
265 # (very recently passed, and the user talks)
31eadeb5 266 tell_delete_msgs {} $nl
fdf998c1 267 return
e06683f2 268 }
c7430bf9
IJ
269 nt????? - mt????? -
270 pt???uu - pt???rs - pt???rl - pt???p? {
fdf998c1
IJ
271 # ignore (any other `talk's) - act handles these
272 return
273 }
c7430bf9
IJ
274 ni????? - naii??? - nas?i?? - mi????? - pa????l {
275 # pass and then stuff
268336f8
IJ
276 if {[length $iml] == 3} {
277 manyset $iml sender sentwhen msg
278 sendprivmsg $nl \
279 "$sender asked me [showintervalsecs [expr {$now-$sentwhen}] 0]\
280 to tell you: $msg"
281 } else {
282 sendprivmsg $nl \
283 "Here are the [expr {[llength $iml]/3}] messages there are for you:"
284 while {[llength $iml] >= 3} {
285 manyset [lrange $iml 0 2] sender sentwhen msg
286 set iml [lrange $iml 3 end]
287 sendprivmsg $nl \
288 " [showintervalsecs [expr {$now-$sentwhen}] 1] <$sender> $msg"
289 }
290 }
291 if {"$rel" == "unreliable"} {
292 tell_delete_msgs {} $nl
293 return
294 }
295 set stt passed
e06683f2 296 }
c7430bf9
IJ
297 nas?u?? {
298 sendprivmsg $nl {You have messages (so identify yourself please).}]
299 set stt mentioned
fdf998c1 300 }
c7430bf9
IJ
301 masl??? {
302 sendprivmsg $nl {Don't forget about your messages.}]
e06683f2 303 }
c7430bf9
IJ
304 pi????? {
305 return
e06683f2 306 }
c7430bf9
IJ
307 mass??? - pa????v - pa????s {
308 # too soon
309 return
e06683f2
IJ
310 }
311 * {
31eadeb5 312 error "tell_event_core nl=$nl evstate=$evstate ?"
e06683f2
IJ
313 }
314 }
c7430bf9
IJ
315 if {![info exists u]} {
316 catch { unset telling }
317 } else {
318 set telling [list $u $stt $now]
319 }
e06683f2
IJ
320}
321
83dd1224
IJ
322proc recordlastseen_n {n how here} {
323 global lastseen lookedfor
37a9f1ad
IJ
324 set nl [irctolower $n]
325 set now [clock seconds]
326 set lastseen($nl) [list $n $now $how]
327
83dd1224 328 if {!$here} return
37a9f1ad 329
31eadeb5 330 tell_event $nl [lindex {none act talk} $here]
37a9f1ad
IJ
331
332 upvar #0 lookedfor($nl) lf
83dd1224
IJ
333 if {[info exists lf]} {
334 switch -exact [llength $lf] {
335 0 {
336 set ml {}
337 }
338 1 {
339 manyset [lindex $lf 0] when who where
340 set ml [list \
341 "FYI, $who was looking for you [looking_whenwhere $when $where]."]
342 }
343 default {
344 msg_begin tosend $n "FYI, people have been looking for you:"
345 set i 0
346 set fin ""
347 foreach e $lf {
348 incr i
349 if {$i == 1} {
350 msg_append tosend " "
351 } elseif {$i == [llength $lf]} {
352 msg_append tosend " and "
353 set fin .
354 } else {
355 msg_append tosend ", "
356 }
357 manyset $e when who where
358 msg_append tosend \
359 "$who ([looking_whenwhere $when $where])$fin"
360 }
361 set ml [msg_finish tosend]
362 }
363 }
364 unset lf
365 msendprivmsg_delayed 1000 $n $ml
366 }
422f52e4 367}
281b5f05
IJ
368
369proc note_topic {showoff whoby topic} {
35e19219 370 set msg "FYI, $whoby has changed the topic on $showoff"
281b5f05
IJ
371 if {[string length $topic] < 160} {
372 append msg " to $topic"
373 } else {
374 append msg " but it is too long to reproduce here !"
375 }
376 set showoff [irctolower $showoff]
377 set tell [chandb_get $showoff topictell]
378 if {[lsearch -exact $tell *] >= 0} {
379 set tryspies [chandb_list]
380 } else {
381 set tryspies $tell
382 }
281b5f05
IJ
383 foreach spy $tryspies {
384 set see [chandb_get $spy topicsee]
281b5f05
IJ
385 if {[lsearch -exact $see $showoff] >= 0 || \
386 ([lsearch -exact $see *] >= 0 && \
387 [lsearch -exact $tell $spy] >= 0)} {
388 sendprivmsg $spy $msg
389 }
390 }
391}
392
83dd1224 393proc recordlastseen_p {p how here} {
422f52e4 394 prefix_nick
83dd1224 395 recordlastseen_n $n $how $here
422f52e4
IJ
396}
397
398proc chanmode_arg {} {
399 upvar 2 args cm_args
400 set rv [lindex $cm_args 0]
401 set cm_args [lreplace cm_args 0 0]
402 return $rv
403}
404
83dd1224 405proc chanmode_o1 {m g p chan} {
20087363 406 global nick chan_initialop
83dd1224
IJ
407 prefix_nick
408 set who [chanmode_arg]
409 recordlastseen_n $n "being nice to $who" 1
410 if {"[irctolower $who]" == "[irctolower $nick]"} {
534e26a9
IJ
411 set nlower [irctolower $n]
412 upvar #0 nick_unique($nlower) u
20087363
IJ
413 if {[chandb_exists $chan]} {
414 sendprivmsg $n Thanks.
415 } elseif {![info exists u]} {
416 sendprivmsg $n {Op me while not on the channel, why don't you ?}
417 } else {
418 set chan_initialop([irctolower $chan]) $u
419 sendprivmsg $n \
26477e22 420 "Thanks. You can use `channel manager ...' to register this channel."
20087363
IJ
421 if {![nickdb_exists $n] || ![string length [nickdb_get $n username]]} {
422 sendprivmsg $n \
423 "(But to do that you must register your nick securely first.)"
424 }
425 }
83dd1224
IJ
426 }
427}
428
422f52e4
IJ
429proc chanmode_o0 {m g p chan} {
430 global nick chandeop
431 prefix_nick
432 set who [chanmode_arg]
83dd1224 433 recordlastseen_p $p "being mean to $who" 1
422f52e4
IJ
434 if {"[irctolower $who]" == "[irctolower $nick]"} {
435 set chandeop($chan) [list [clock seconds] $p]
436 }
cc2d31de 437}
9bc33297 438
422f52e4
IJ
439proc msg_MODE {p c dest modelist args} {
440 if {![ischan $dest]} return
441 if {[regexp {^\-(.+)$} $modelist dummy modelist]} {
442 set give 0
443 } elseif {[regexp {^\+(.+)$} $modelist dummy modelist]} {
444 set give 1
445 } else {
446 error "invalid modelist"
447 }
448 foreach m [split $modelist] {
449 set procname chanmode_$m$give
450 if {[catch { info body $procname }]} {
83dd1224 451 recordlastseen_p $p "fiddling with $dest" 1
422f52e4
IJ
452 } else {
453 $procname $m $give $p $dest
454 }
455 }
456}
457
534e26a9
IJ
458proc leaving {lchan} {
459 foreach luser [array names nick_onchans] {
460 upvar #0 nick_onchans($luser) oc
461 set oc [grep tc {"$tc" != "$lchan"} $oc]
462 }
463 upvar #0 chan_nicks($lchan) nlist
464 unset nlist
ebbae0a9
IJ
465 upvar #0 chan_lastactivity($lchan) la
466 catch { unset la }
534e26a9
IJ
467}
468
cf6ea4de
IJ
469proc doleave {lchan} {
470 sendout PART $lchan
471 leaving $lchan
472}
473
534e26a9
IJ
474proc dojoin {lchan} {
475 global chan_nicks
476 sendout JOIN $lchan
477 set chan_nicks($lchan) {}
478}
479
480proc check_justme {lchan} {
481 global nick
482 upvar #0 chan_nicks($lchan) nlist
483 if {[llength $nlist] != 1} return
e2af9bcb 484 if {"[lindex $nlist 0]" != "[irctolower $nick]"} return
534e26a9
IJ
485 if {[chandb_exists $lchan]} {
486 set mode [chandb_get $lchan mode]
487 if {"$mode" != "*"} {
488 sendout MODE $lchan $mode
489 }
281b5f05
IJ
490 set topic [chandb_get $lchan topicset]
491 if {[string length $topic]} {
492 sendout TOPIC $lchan $topic
281b5f05 493 }
534e26a9 494 } else {
cf6ea4de 495 doleave $lchan
a4a1f396
IJ
496 }
497}
498
a056c4bd 499proc process_kickpart {chan user} {
a4a1f396 500 global nick
a056c4bd 501 check_nick $user
534e26a9
IJ
502 set luser [irctolower $user]
503 set lchan [irctolower $chan]
a056c4bd 504 if {![ischan $chan]} { error "not a channel" }
534e26a9
IJ
505 if {"$luser" == "[irctolower $nick]"} {
506 leaving $lchan
507 } else {
508 upvar #0 nick_onchans($luser) oc
509 upvar #0 chan_nicks($lchan) nlist
510 set oc [grep tc {"$tc" != "$lchan"} $oc]
511 set nlist [grep tn {"$tn" != "$luser"} $nlist]
512 nick_case $user
513 if {![llength $oc]} {
514 nick_forget $luser
515 } else {
516 check_justme $lchan
517 }
a4a1f396 518 }
534e26a9 519}
a056c4bd 520
281b5f05
IJ
521proc msg_TOPIC {p c dest topic} {
522 prefix_nick
523 if {![ischan $dest]} return
524 recordlastseen_n $n "changing the topic on $dest" 1
525 note_topic [irctolower $dest] $n $topic
526}
527
a056c4bd
IJ
528proc msg_KICK {p c chans users comment} {
529 set chans [split $chans ,]
530 set users [split $users ,]
531 if {[llength $chans] > 1} {
532 foreach chan $chans user $users { process_kickpart $chan $user }
533 } else {
534 foreach user $users { process_kickpart [lindex $chans 0] $user }
535 }
536}
537
538proc msg_KILL {p c user why} {
539 nick_forget $user
540}
541
20087363
IJ
542set nick_counter 0
543set nick_arys {onchans username unique}
534e26a9
IJ
544# nick_onchans($luser) -> [list ... $lchan ...]
545# nick_username($luser) -> <securely known local username>
37a9f1ad 546# nick_unique($luser) -> <includes-counter>
534e26a9 547# nick_case($luser) -> $user (valid even if no longer visible)
ebbae0a9 548# nick_markid($luser) -> <after id for marktime>
37a9f1ad 549# nick_telling($luser) -> <unique> mentioned|passed <when>
534e26a9
IJ
550
551# chan_nicks($lchan) -> [list ... $luser ...]
ebbae0a9 552# chan_lastactivity($lchan) -> [clock seconds]
a056c4bd 553
534e26a9
IJ
554proc lnick_forget {luser} {
555 global nick_arys chan_nicks
ebbae0a9 556 lnick_marktime_cancel $luser
a056c4bd 557 foreach ary $nick_arys {
534e26a9 558 upvar #0 nick_${ary}($luser) av
a056c4bd
IJ
559 catch { unset av }
560 }
534e26a9
IJ
561 foreach lch [array names chan_nicks] {
562 upvar #0 chan_nicks($lch) nlist
563 set nlist [grep tn {"$tn" != "$luser"} $nlist]
564 check_justme $lch
565 }
566}
567
568proc nick_forget {user} {
569 global nick_arys chan_nicks
570 lnick_forget [irctolower $user]
571 nick_case $user
a4a1f396
IJ
572}
573
534e26a9 574proc nick_case {user} {
a4a1f396 575 global nick_case
534e26a9 576 set nick_case([irctolower $user]) $user
a056c4bd
IJ
577}
578
83dd1224 579proc msg_NICK {p c newnick} {
a44d4982 580 global nick_arys nick_case calling_nick
83dd1224
IJ
581 prefix_nick
582 recordlastseen_n $n "changing nicks to $newnick" 0
a44d4982 583 set calling_nick $newnick
83dd1224 584 recordlastseen_n $newnick "changing nicks from $n" 1
6425c2d6 585 set luser [irctolower $n]
ebbae0a9 586 lnick_marktime_cancel $luser
6425c2d6 587 set lusernew [irctolower $newnick]
a056c4bd 588 foreach ary $nick_arys {
6425c2d6
IJ
589 upvar #0 nick_${ary}($luser) old
590 upvar #0 nick_${ary}($lusernew) new
a056c4bd
IJ
591 if {[info exists new]} { error "nick collision ?! $ary $n $newnick" }
592 if {[info exists old]} { set new $old; unset old }
593 }
6425c2d6 594 upvar #0 nick_onchans($lusernew) oc
534e26a9
IJ
595 foreach ch $oc {
596 upvar #0 chan_nicks($ch) nlist
597 set nlist [grep tn {"$tn" != "$luser"} $nlist]
598 lappend nlist $lusernew
599 }
34c25cd7 600 lnick_marktime_start $lusernew "Hi." 500 1
a4a1f396 601 nick_case $newnick
83dd1224
IJ
602}
603
20087363
IJ
604proc nick_ishere {n} {
605 global nick_counter
534e26a9 606 upvar #0 nick_unique([irctolower $n]) u
20087363
IJ
607 if {![info exists u]} { set u [incr nick_counter].$n.[clock seconds] }
608 nick_case $n
609}
610
a056c4bd
IJ
611proc msg_JOIN {p c chan} {
612 prefix_nick
37a9f1ad 613 nick_ishere $n
a056c4bd 614 recordlastseen_n $n "joining $chan" 1
cf6ea4de
IJ
615 set nl [irctolower $n]
616 set lchan [irctolower $chan]
617 upvar #0 nick_onchans($nl) oc
618 upvar #0 chan_nicks($lchan) nlist
ebbae0a9
IJ
619 if {![info exists oc]} {
620 global marktime_join_startdelay
34c25cd7 621 lnick_marktime_start $nl "Welcome." $marktime_join_startdelay 1
ebbae0a9 622 }
cf6ea4de
IJ
623 lappend oc $lchan
624 lappend nlist $nl
a056c4bd 625}
ea8a1bfe 626proc msg_PART {p c chan args} {
a056c4bd 627 prefix_nick
ea8a1bfe
IJ
628 set msg "leaving $chan"
629 if {[llength $args]} {
630 set why [lindex $args 0]
631 if {"[irctolower $why]" != "[irctolower $n]"} { append msg " ($why)" }
632 }
633 recordlastseen_n $n $msg 1
a056c4bd
IJ
634 process_kickpart $chan $n
635}
636proc msg_QUIT {p c why} {
637 prefix_nick
638 recordlastseen_n $n "leaving ($why)" 0
639 nick_forget $n
640}
422f52e4 641
cc2d31de 642proc msg_PRIVMSG {p c dest text} {
a01859b6
IJ
643 global errorCode
644
cc2d31de 645 prefix_nick
422f52e4 646 if {[ischan $dest]} {
83dd1224 647 recordlastseen_n $n "invoking me in $dest" 1
422f52e4 648 set output $dest
cc2d31de 649 } else {
83dd1224 650 recordlastseen_n $n "talking to me" 1
422f52e4
IJ
651 set output $n
652 }
a4a1f396 653 nick_case $n
422f52e4 654
281f2c0e 655 execute_usercommand $p $c $n $output $dest $text
422f52e4
IJ
656}
657
a056c4bd 658proc msg_INVITE {p c n chan} {
534e26a9 659 after 1000 [list dojoin [irctolower $chan]]
a056c4bd
IJ
660}
661
662proc grep {var predicate list} {
663 set o {}
664 upvar 1 $var v
665 foreach v $list {
666 if {[uplevel 1 [list expr $predicate]]} { lappend o $v }
667 }
668 return $o
669}
670
671proc msg_353 {p c dest type chan nicklist} {
672 global names_chans nick_onchans
534e26a9
IJ
673 set lchan [irctolower $chan]
674 upvar #0 chan_nicks($lchan) nlist
675 lappend names_chans $lchan
676 if {![info exists nlist]} {
677 # We don't think we're on this channel, so ignore it !
678 # Unfortunately, because we don't get a reply to PART,
679 # we have to remember ourselves whether we're on a channel,
680 # and ignore stuff if we're not, to avoid races. Feh.
681 return
682 }
683 set nlist_new {}
684 foreach user [split $nicklist { }] {
685 regsub {^[@+]} $user {} user
686 if {![string length $user]} continue
687 check_nick $user
688 set luser [irctolower $user]
689 upvar #0 nick_onchans($luser) oc
690 lappend oc $lchan
691 lappend nlist_new $luser
692 nick_ishere $user
a056c4bd 693 }
534e26a9 694 set nlist $nlist_new
a056c4bd
IJ
695}
696
697proc msg_366 {p c args} {
698 global names_chans nick_onchans
534e26a9
IJ
699 set lchan [irctolower $c]
700 foreach luser [array names nick_onchans] {
701 upvar #0 nick_onchans($luser) oc
702 if {[llength names_chans] > 1} {
a056c4bd 703 set oc [grep tc {[lsearch -exact $tc $names_chans] >= 0} $oc]
a056c4bd 704 }
534e26a9 705 if {![llength $oc]} { lnick_forget $n }
a056c4bd
IJ
706 }
707 unset names_chans
708}
709
4fd2739c 710proc check_username {target} {
7ce72032
IJ
711 if {
712 [string length $target] > 8 ||
713 [regexp {[^-0-9a-z]} $target] ||
714 ![regexp {^[a-z]} $target]
715 } { error "invalid username" }
4fd2739c
IJ
716}
717
20087363 718proc somedb__head {} {
7a70431a 719 uplevel 1 {
20087363
IJ
720 set idl [irctolower $id]
721 upvar #0 ${nickchan}db($idl) ndbe
722 binary scan $idl H* idh
723 set idfn $fprefix$idh
724 if {![info exists iddbe] && [file exists $idfn]} {
725 set f [open $idfn r]
7a70431a
IJ
726 try_except_finally { set newval [read $f] } {} { close $f }
727 if {[llength $newval] % 2} { error "invalid length" }
20087363 728 set iddbe $newval
7a70431a
IJ
729 }
730 }
731}
732
20087363 733proc def_somedb {name arglist body} {
d7eda3bc
IJ
734 foreach {nickchan fprefix} {
735 nick users/n
736 chan chans/c
737 msgs users/m
738 } {
20087363 739 proc ${nickchan}db_$name $arglist \
534e26a9
IJ
740 "set nickchan $nickchan; set fprefix $fprefix; $body"
741 }
742}
743
744def_somedb list {} {
745 set list {}
746 foreach path [glob -nocomplain -path $fprefix *] {
747 binary scan $path "A[string length $fprefix]A*" afprefix thinghex
748 if {"$afprefix" != "$fprefix"} { error "wrong prefix $path $afprefix" }
749 lappend list [binary format H* $thinghex]
20087363 750 }
534e26a9
IJ
751 return $list
752}
753
754proc def_somedb_id {name arglist body} {
755 def_somedb $name [concat id $arglist] "somedb__head; $body"
7a70431a
IJ
756}
757
534e26a9 758def_somedb_id exists {} {
20087363 759 return [info exists iddbe]
7a70431a
IJ
760}
761
534e26a9 762def_somedb_id delete {} {
20087363
IJ
763 catch { unset iddbe }
764 file delete $idfn
7a70431a
IJ
765}
766
d7eda3bc
IJ
767set default_settings_nick {
768 timeformat ks
769 marktime off
26477e22 770 tellsec {secure 600}
d7eda3bc
IJ
771 tellrel {remind 3600 30}
772}
773
281b5f05
IJ
774set default_settings_chan {
775 autojoin 1
776 mode *
777 userinvite pub
778 topicset {}
779 topicsee {}
780 topictell {}
781}
7a70431a 782
d7eda3bc
IJ
783set default_settings_msgs {
784 inbound {}
785 outbound {}
786}
787# inbound -> [<nick> <time_t> <message>] ...
788# outbound -> [<nick> <time_t(earliest)> <count>] ...
268336f8
IJ
789# neither are sorted particularly; only one entry per recipient in
790# output; both sender and recipient are cased
d7eda3bc 791
534e26a9 792def_somedb_id set {args} {
20087363
IJ
793 upvar #0 default_settings_$nickchan def
794 if {![info exists iddbe]} { set iddbe $def }
795 foreach {key value} [concat $iddbe $args] { set a($key) $value }
7a70431a
IJ
796 set newval {}
797 foreach {key value} [array get a] { lappend newval $key $value }
20087363 798 set f [open $idfn.new w]
7a70431a
IJ
799 try_except_finally {
800 puts $f $newval
801 close $f
20087363 802 file rename -force $idfn.new $idfn
7a70431a 803 } {
7a70431a 804 } {
d83fb8db 805 catch { close $f }
7a70431a 806 }
20087363 807 set iddbe $newval
7a70431a
IJ
808}
809
534e26a9 810def_somedb_id get {key} {
20087363
IJ
811 upvar #0 default_settings_$nickchan def
812 if {[info exists iddbe]} {
534e26a9 813 set l [concat $iddbe $def]
7a70431a 814 } else {
20087363 815 set l $def
7a70431a
IJ
816 }
817 foreach {tkey value} $l {
818 if {"$tkey" == "$key"} { return $value }
819 }
820 error "unset setting $key"
821}
822
20087363
IJ
823proc opt {key} {
824 global calling_nick
825 if {[info exists calling_nick]} { set n $calling_nick } { set n {} }
826 return [nickdb_get $n $key]
827}
828
7a70431a
IJ
829proc check_notonchan {} {
830 upvar 1 dest dest
a01859b6 831 if {[ischan $dest]} { usererror "That command must be sent privately." }
7a70431a
IJ
832}
833
834proc nick_securitycheck {strict} {
835 upvar 1 n n
a01859b6
IJ
836 if {![nickdb_exists $n]} {
837 usererror "You are unknown to me, use `register'."
838 }
20087363 839 set wantu [nickdb_get $n username]
7a70431a
IJ
840 if {![string length $wantu]} {
841 if {$strict} {
a01859b6 842 usererror "That feature is only available to secure users, sorry."
7a70431a
IJ
843 } else {
844 return
845 }
846 }
534e26a9
IJ
847 set luser [irctolower $n]
848 upvar #0 nick_username($luser) nu
7a70431a 849 if {![info exists nu]} {
a01859b6 850 usererror "Nick $n is secure, you must identify yourself first."
7a70431a
IJ
851 }
852 if {"$wantu" != "$nu"} {
a01859b6
IJ
853 usererror "You are the wrong user -\
854 the nick $n belongs to $wantu, not $nu."
7a70431a
IJ
855 }
856}
857
a01859b6 858proc channel_ismanager {channel n} {
c362e172 859 set mgrs [chandb_get $channel managers]
a01859b6
IJ
860 return [expr {[lsearch -exact [irctolower $mgrs] [irctolower $n]] >= 0}]
861}
862
863proc channel_securitycheck {channel} {
864 upvar n n
865 if {![channel_ismanager $channel $n]} {
866 usererror "You are not a manager of $channel."
20087363 867 }
a01859b6 868 nick_securitycheck 1
20087363
IJ
869}
870
871proc def_chancmd {name body} {
872 proc channel/$name {} \
873 " upvar 1 target chan; upvar 1 n n; upvar 1 text text; $body"
874}
875
281b5f05
IJ
876proc ta_listop {findnow procvalue} {
877 # findnow and procvalue are code fragments which will be executed
878 # in the caller's level. findnow should set ta_listop_ev to
879 # the current list, and procvalue should treat ta_listop_ev as
880 # a proposed value in the list and check and possibly modify
881 # (canonicalise?) it. After ta_listop, ta_listop_ev will
882 # be the new value of the list.
883 upvar 1 ta_listop_ev exchg
884 upvar 1 text text
20087363
IJ
885 set opcode [ta_word]
886 switch -exact _$opcode {
281b5f05 887 _= { }
20087363 888 _+ - _- {
281b5f05
IJ
889 uplevel 1 $findnow
890 foreach item $exchg { set array($item) 1 }
20087363
IJ
891 }
892 default {
281b5f05 893 error "list change opcode must be one of + - ="
20087363
IJ
894 }
895 }
281b5f05
IJ
896 foreach exchg [split $text " "] {
897 if {![string length $exchg]} continue
898 uplevel 1 $procvalue
20087363 899 if {"$opcode" != "-"} {
281b5f05 900 set array($exchg) 1
20087363 901 } else {
281b5f05 902 catch { unset array($exchg) }
20087363
IJ
903 }
904 }
281b5f05
IJ
905 set exchg [lsort [array names array]]
906}
907
908def_chancmd manager {
909 ta_listop {
910 if {[chandb_exists $chan]} {
911 set ta_listop_ev [chandb_get $chan managers]
912 } else {
913 set ta_listop_ev [list [irctolower $n]]
914 }
915 } {
916 check_nick $ta_listop_ev
917 set ta_listop_ev [irctolower $ta_listop_ev]
918 }
919 if {[llength $ta_listop_ev]} {
920 chandb_set $chan managers $ta_listop_ev
921 ucmdr "Managers of $chan: $ta_listop_ev" {}
20087363
IJ
922 } else {
923 chandb_delete $chan
924 ucmdr {} {} "forgets about managing $chan." {}
925 }
926}
927
928def_chancmd autojoin {
929 set yesno [ta_word]
930 switch -exact [string tolower $yesno] {
931 no { set nv 0 }
932 yes { set nv 1 }
933 default { error "channel autojoin must be `yes' or `no' }
934 }
935 chandb_set $chan autojoin $nv
a49f2997
IJ
936 ucmdr [expr {$nv ? "I will join $chan when I'm restarted " : \
937 "I won't join $chan when I'm restarted "}] {}
534e26a9
IJ
938}
939
5e5be903
IJ
940def_chancmd userinvite {
941 set nv [string tolower [ta_word]]
942 switch -exact $nv {
943 pub { set txt "!invite will work for $chan, but it won't work by /msg" }
944 here { set txt "!invite and /msg invite will work, but only for users who are already on $chan." }
945 all { set txt "Any user will be able to invite themselves or anyone else to $chan." }
946 none { set txt "I will not invite anyone to $chan." }
947 default {
948 error "channel userinvite must be `pub', `here', `all' or `none'
949 }
950 }
951 chandb_set $chan userinvite $nv
952 ucmdr $txt {}
953}
954
281b5f05
IJ
955def_chancmd topic {
956 set what [ta_word]
957 switch -exact $what {
958 leave {
959 ta_nomore
960 chandb_set $chan topicset {}
961 ucmdr "I won't ever change the topic of $chan." {}
962 }
963 set {
964 set t [string trim $text]
965 if {![string length $t]} {
966 error "you must specific the topic to set"
967 }
968 chandb_set $chan topicset $t
a49f2997 969 ucmdr "Whenever I'm alone on $chan, I'll set the topic to $t." {}
281b5f05
IJ
970 }
971 see - tell {
972 ta_listop {
973 set ta_listop_ev [chandb_get $chan topic$what]
974 } {
975 if {"$ta_listop_ev" != "*"} {
976 if {![ischan $ta_listop_ev]} {
977 error "bad channel \`$ta_listop_ev' in topic $what"
978 }
979 set ta_listop_ev [irctolower $ta_listop_ev]
980 }
981 }
982 chandb_set $chan topic$what $ta_listop_ev
983 ucmdr "Topic $what list for $chan: $ta_listop_ev" {}
984 }
985 default {
a01859b6 986 usererror "Unknown channel topic subcommand - see help channel."
281b5f05
IJ
987 }
988 }
989}
990
534e26a9
IJ
991def_chancmd mode {
992 set mode [ta_word]
993 if {"$mode" != "*" && ![regexp {^(([-+][imnpst]+)+)$} $mode mode]} {
994 error {channel mode must be * or match ([-+][imnpst]+)+}
995 }
996 chandb_set $chan mode $mode
997 if {"$mode" == "*"} {
281b5f05 998 ucmdr "I won't ever change the mode of $chan." {}
534e26a9 999 } else {
281b5f05 1000 ucmdr "Whenever I'm alone on $chan, I'll set the mode to $mode." {}
534e26a9 1001 }
20087363
IJ
1002}
1003
1004def_chancmd show {
1005 if {[chandb_exists $chan]} {
1006 set l "Settings for $chan: autojoin "
1007 append l [lindex {no yes} [chandb_get $chan autojoin]]
b60b5a0f
IJ
1008 append l ", mode " [chandb_get $chan mode]
1009 append l ", userinvite " [chandb_get $chan userinvite] "."
20087363 1010 append l "\nManagers: "
8b6ee626 1011 append l [join [chandb_get $chan managers] " "]
281b5f05
IJ
1012 foreach {ts sep} {see "\n" tell " "} {
1013 set t [chandb_get $chan topic$ts]
1014 append l $sep
1015 if {[llength $t]} {
1016 append l "Topic $ts list: $t."
1017 } else {
1018 append l "Topic $ts list is empty."
1019 }
1020 }
8b6ee626
IJ
1021 append l "\n"
1022 set t [chandb_get $chan topicset]
1023 if {[string length $t]} {
1024 append l "Topic to set: $t"
1025 } else {
1026 append l "I will not change the topic."
1027 }
20087363
IJ
1028 ucmdr {} $l
1029 } else {
1030 ucmdr {} "The channel $chan is not managed."
1031 }
1032}
1033
cf6ea4de
IJ
1034proc channelmgr_monoop {} {
1035 upvar 1 dest dest
1036 upvar 1 text text
1037 upvar 1 n n
1038 upvar 1 p p
1039 upvar 1 target target
1040 global chan_nicks
1041
3c9af14f
IJ
1042 prefix_nick
1043
20087363
IJ
1044 if {[ischan $dest]} { set target $dest }
1045 if {[ta_anymore]} { set target [ta_word] }
1046 ta_nomore
cf6ea4de 1047 if {![info exists target]} {
a01859b6 1048 usererror "You must specify, or invoke me on, the relevant channel."
cf6ea4de
IJ
1049 }
1050 if {![info exists chan_nicks([irctolower $target])]} {
a01859b6 1051 usererror "I am not on $target."
cf6ea4de 1052 }
20087363 1053 if {![ischan $target]} { error "not a valid channel" }
3c9af14f 1054
a01859b6
IJ
1055 if {![chandb_exists $target]} {
1056 usererror "$target is not a managed channel."
1057 }
1058 channel_securitycheck $target
cf6ea4de
IJ
1059}
1060
1061def_ucmd op {
1062 channelmgr_monoop
20087363
IJ
1063 sendout MODE $target +o $n
1064}
1065
cf6ea4de
IJ
1066def_ucmd leave {
1067 channelmgr_monoop
1068 doleave $target
1069}
1070
5e5be903 1071def_ucmd invite {
a01859b6
IJ
1072 global chan_nicks errorCode errorInfo
1073 prefix_nick
5e5be903
IJ
1074
1075 if {[ischan $dest]} {
1076 set target $dest
1077 set onchan 1
1078 } else {
1079 set target [ta_word]
1080 set onchan 0
1081 }
1082 set ltarget [irctolower $target]
a01859b6
IJ
1083 if {![ischan $target]} { error "$target is not a channel" }
1084 if {![info exists chan_nicks($ltarget)]} {
1085 usererror "I am not on $target."
5e5be903 1086 }
a01859b6
IJ
1087 set ui [chandb_get $ltarget userinvite]
1088 if {[catch {
1089 if {"$ui" == "pub" && !$onchan} {
1090 usererror "Invitations to $target must be made there with !invite."
1091 }
1092 if {"$ui" != "all"} {
1093 if {[lsearch -exact $chan_nicks($ltarget) [irctolower $n]] < 0} {
1094 usererror "Invitations to $target may only be made\
1095 by a user on the channel."
1096 }
1097 }
1098 if {"$ui" == "none"} {
1099 usererror "Sorry, I've not been authorised\
1100 to invite people to $target."
1101 }
1102 } emsg]} {
1103 if {"$errorCode" == "BLIGHT USER" && [channel_ismanager $target $n]} {
1104 if {[catch {
1105 nick_securitycheck 1
1106 } emsg2]} {
1107 if {"$errorCode" == "BLIGHT USER"} {
1108 usererror "$emsg2 Therefore you can't use your\
1109 channel manager privilege. $emsg"
1110 } else {
1111 error $error $errorInfo $errorCode
1112 }
1113 }
1114 } else {
1115 error $emsg $errorInfo $errorCode
5e5be903 1116 }
5e5be903
IJ
1117 }
1118 if {![ta_anymore]} {
a01859b6 1119 usererror "You have to say who to invite."
5e5be903
IJ
1120 }
1121 set invitees {}
1122 while {[ta_anymore]} {
1123 set invitee [ta_word]
1124 check_nick $invitee
1125 lappend invitees $invitee
1126 }
1127 foreach invitee $invitees {
1128 sendout INVITE $invitee $ltarget
1129 }
1130 set who [lindex $invitees 0]
1131 switch -exact llength $invitees {
1132 0 { error "zero invitees" }
1133 1 { }
1134 2 { append who " and [lindex $invitees 1]" }
1135 * {
1136 set who [join [lreplace $invitees end end] ", "]
1137 append who " and [lindex $invitees [llength $invitees]]"
1138 }
1139 }
33718ee2 1140 ucmdr {} {} {} "invites $who to $target."
5e5be903
IJ
1141}
1142
20087363
IJ
1143def_ucmd channel {
1144 if {[ischan $dest]} { set target $dest }
1145 if {![ta_anymore]} {
1146 set subcmd show
1147 } else {
1148 set subcmd [ta_word]
1149 }
1150 if {[ischan $subcmd]} {
1151 set target $subcmd
1152 if {![ta_anymore]} {
1153 set subcmd show
1154 } else {
1155 set subcmd [ta_word]
1156 }
1157 }
1158 if {![info exists target]} { error "privately, you must specify a channel" }
1159 set procname channel/$subcmd
1160 if {"$subcmd" != "show"} {
a01859b6
IJ
1161 if {[catch { info body $procname }]} {
1162 usererror "unknown channel setting $subcmd."
1163 }
20087363 1164 prefix_nick
20087363 1165 if {[chandb_exists $target]} {
a01859b6 1166 channel_securitycheck $target
20087363 1167 } else {
a01859b6 1168 nick_securitycheck 1
20087363 1169 upvar #0 chan_initialop([irctolower $target]) io
534e26a9 1170 upvar #0 nick_unique([irctolower $n]) u
a01859b6
IJ
1171 if {![info exists io]} {
1172 usererror "$target is not a managed channel."
1173 }
1174 if {"$io" != "$u"} {
1175 usererror "You are not the interim manager of $target."
1176 }
1177 if {"$subcmd" != "manager"} {
1178 usererror "Please use `channel manager' first."
1179 }
20087363
IJ
1180 }
1181 }
1182 channel/$subcmd
1183}
1184
26477e22
IJ
1185proc tell_effective_sec {n} {
1186 set l [nickdb_get $n tellsec]
1187 set u [nickdb_get $n username]
1188 if {"[lindex $l 0]" == "secure" && ![string length $u]} { set l insecure }
1189 return $l
1190}
1191
1192proc tell_peernicks {
1193-- FIXME HERE
1194
1195def_ucmd untell {
1196 prefix_nick
1197 check_notonchan
1198 nick_securitycheck 0
1199 set peernicks
1200
268336f8 1201def_ucmd delmsg {
26477e22 1202 global errorInfo errorCode
268336f8
IJ
1203 prefix_nick
1204 check_notonchan
26477e22 1205 manyset [tell_effective_sec $n] sec secwhen
268336f8
IJ
1206 switch -exact $sec {
1207 insecure { }
26477e22
IJ
1208 refuse - mailto {
1209 usererror \
1210 "There are no messages to delete\
1211 because your message disposition prevents them from being left."
1212 }
1213 secure {
1214 nick_securitycheck 1
1215 }
1216 default {
1217 error "delmsg sec $sec"
1218 }
1219 }
1220 set text [irctolower [string trim $text]]
1221 set senders [split $text " "]
1222 foreach sender $senders {
1223 if {[catch { check_nick $sender } emsg]} {
1224 error "invalid sender nick `$sender': $emsg" $errorInfo $errorCode
1225 }
1226 }
1227 tell_delete_msgs [irctolower $senders] [irctolower $n]
1228 switch -exact [llength $senders] {
1229 0 { ucmdr {} {} "deletes your message(s)." }
1230 1 { ucmdr {} {} "deletes your message(s) from $senders." }
1231 default {
1232 ucmdr {} {} "deletes your message(s) from\
1233 [lreplace $senders end end] and [lindex $senders end]."
1234 }
1235 }
268336f8
IJ
1236}
1237
d7eda3bc
IJ
1238def_ucmd tell {
1239 global nick_case ownmailaddr ownfullname
1240
1241 prefix_nick
1242 set target [ta_word]
1243 if {![string length $text]} { error "tell them what?" }
268336f8 1244 if {[string length $text] > 400} { error "message too long" }
d7eda3bc
IJ
1245
1246 set ltarget [irctolower $target]
1247 set ctarget $target
1248 if {[info exists nick_case($ltarget)]} { set ctarget $nick_case($ltarget) }
1249
26477e22 1250 manyset [tell_effective_sec $target] sec mailtoint mailwhy
34c25cd7 1251 manyset [nickdb_get $target tellrel] rel relint relwithin
d7eda3bc
IJ
1252 switch -exact $sec {
1253 insecure - secure {
1254 set now [clock seconds]
1255 set inbound [msgsdb_get $ltarget inbound]
1256 lappend inbound $n $now $text
1257 msgsdb_set $ltarget inbound $inbound
1258
1259 set outbound [msgsdb_get $n outbound]
1260 set noutbound {}
1261 set found 0
1262 foreach {recip time count} $outbound {
1263 if {"[irctolower $recip]" == "$ltarget"} {
1264 incr count
1265 set recip $ctarget
1266 set found 1
1267 }
1268 lappend noutbound $recip $time $count
1269 }
1270 if {!$found} {
1271 lappend noutbound $ctarget $now 1
1272 }
1273 msgsdb_set $n outbound $noutbound
34c25cd7
IJ
1274 set msg "OK, I'll tell $ctarget"
1275 if {$found} { append msg " that too" }
1276 append msg ", "
1277 if {"$sec" != "secure"} {
1278 switch -exact $rel {
1279 unreliable { append msg "neither reliably nor securely" }
1280 remind { append msg "pretty reliably, but not securely" }
1281 pester { append msg "reliably but not securely" }
1282 }
d7eda3bc 1283 } else {
34c25cd7
IJ
1284 switch -exact $rel {
1285 unreliable { append msg "securely but not reliably" }
1286 remind { append msg "securely and pretty reliably" }
1287 pester { append msg "reliably and securely" }
1288 }
d7eda3bc 1289 }
34c25cd7
IJ
1290 append msg .
1291 ucmdr $msg {}
d7eda3bc
IJ
1292 }
1293 mailto {
1294 set fmtmsg [exec fmt << " $text"]
1295 exec /usr/sbin/sendmail -odb -oi -t -oee -f $mailwhy \
1296 > /dev/null << \
1297 "From: $ownmailaddr ($ownfullname)
82d3b72f 1298To: $mailtoint
d7eda3bc
IJ
1299Subject: IRC tell from $n
1300
1301$n asked me[expr {[ischan $dest] ? " on $dest" : ""}] to tell you:
1302[exec fmt << " $text"]
1303
1304(This message was for your nick $ctarget; your account $mailwhy
82d3b72f 1305 arranged for it to be forwarded to $mailtoint.)
d7eda3bc
IJ
1306"
1307 ucmdr \
82d3b72f 1308 "I've mailed $ctarget, which is what they prefer." \
d7eda3bc
IJ
1309 {}
1310 }
1311 refuse {
1312 usererror "Sorry, $ctarget does not want me to take messages."
1313 }
1314 default {
1315 error "bad tellsec $sec"
1316 }
1317 }
1318}
1319
a4a1f396
IJ
1320def_ucmd who {
1321 if {[ta_anymore]} {
1322 set target [ta_word]; ta_nomore
1323 set myself 1
1324 } else {
1325 prefix_nick
1326 set target $n
1327 set myself [expr {"$target" != "$n"}]
1328 }
534e26a9
IJ
1329 set ltarget [irctolower $target]
1330 upvar #0 nick_case($ltarget) ctarget
a4a1f396 1331 set nshow $target
534e26a9
IJ
1332 if {[info exists ctarget]} {
1333 upvar #0 nick_onchans($ltarget) oc
1334 upvar #0 nick_username($ltarget) nu
1335 if {[info exists oc]} { set nshow $ctarget }
a4a1f396 1336 }
534e26a9 1337 if {![nickdb_exists $ltarget]} {
a4a1f396 1338 set ol "$nshow is not a registered nick."
20087363 1339 } elseif {[string length [set username [nickdb_get $target username]]]} {
a4a1f396
IJ
1340 set ol "The nick $nshow belongs to the user $username."
1341 } else {
1342 set ol "The nick $nshow is registered (but not to a username)."
1343 }
534e26a9 1344 if {![info exists ctarget] || ![info exists oc]} {
a4a1f396
IJ
1345 if {$myself} {
1346 append ol "\nI can't see $nshow on anywhere."
1347 } else {
1348 append ol "\nYou aren't on any channels with me."
1349 }
1350 } elseif {![info exists nu]} {
1351 append ol "\n$nshow has not identified themselves."
1352 } elseif {![info exists username]} {
1353 append ol "\n$nshow has identified themselves as the user $nu."
1354 } elseif {"$nu" != "$username"} {
1355 append ol "\nHowever, $nshow is being used by the user $nu."
1356 } else {
1357 append ol "\n$nshow has identified themselves to me."
1358 }
1359 ucmdr {} $ol
1360}
1361
7a70431a
IJ
1362def_ucmd register {
1363 prefix_nick
1364 check_notonchan
1365 set old [nickdb_exists $n]
1366 if {$old} { nick_securitycheck 0 }
534e26a9 1367 set luser [irctolower $n]
7a70431a
IJ
1368 switch -exact [string tolower [string trim $text]] {
1369 {} {
534e26a9 1370 upvar #0 nick_username($luser) nu
7a70431a
IJ
1371 if {![info exists nu]} {
1372 ucmdr {} \
a4a1f396 1373 "You must identify yourself before using `register'. See `help identify', or use `register insecure'."
7a70431a
IJ
1374 }
1375 nickdb_set $n username $nu
1376 ucmdr {} {} "makes a note of your username." {}
1377 }
1378 delete {
1379 nickdb_delete $n
1380 ucmdr {} {} "forgets your nickname." {}
1381 }
1382 insecure {
1383 nickdb_set $n username {}
1384 if {$old} {
1385 ucmdr {} "Security is now disabled for your nickname !"
1386 } else {
1387 ucmdr {} "This is fine, but bear in mind that people will be able to mess with your settings. Channel management features need a secure registration." "makes an insecure registration for your nick."
1388 }
1389 }
0d3ea3aa
IJ
1390 default {
1391 error "you mean register / register delete / register insecure"
1392 }
7a70431a 1393 }
11d9bff9
IJ
1394}
1395
1396proc timeformat_desc {tf} {
1397 switch -exact $tf {
86892128 1398 ks { return "Times will be displayed in seconds or kiloseconds." }
11d9bff9
IJ
1399 hms { return "Times will be displayed in hours, minutes, etc." }
1400 default { error "invalid timeformat: $v" }
1401 }
1402}
1403
d7eda3bc 1404set settings {}
11d9bff9 1405proc def_setting {opt show_body set_body} {
d7eda3bc
IJ
1406 global settings
1407 lappend settings $opt
11d9bff9
IJ
1408 proc set_show/$opt {} "
1409 upvar 1 n n
1410 set opt $opt
1411 $show_body"
1412 if {![string length $set_body]} return
1413 proc set_set/$opt {} "
1414 upvar 1 n n
1415 upvar 1 text text
1416 set opt $opt
1417 $set_body"
1418}
1419
26477e22 1420proc tellme_sec_desc {v n} {
82d3b72f 1421 manyset $v sec mailtoint
d7eda3bc
IJ
1422 switch -exact $sec {
1423 insecure {
1424 return "I'll tell you your messages whenever I see you."
1425 }
1426 secure {
26477e22
IJ
1427 if {[string length [nickdb_get $n username]]} {
1428 return \
82d3b72f 1429 "I'll keep the bodies of your messages private until you identify yourself, reminding you every [showintervalsecs $mailtoint 1]."
26477e22
IJ
1430 } else {
1431 return \
1432 "I'll tell you your messages whenever I see you.\
1433 (Secure message delivery is enabled, but your nick is not registered\
1434 securely. See `help register'.)"
1435 }
d7eda3bc
IJ
1436 }
1437 refuse {
1438 return "I shan't accept messages for you."
1439 }
1440 mailto {
82d3b72f 1441 return "I'll forward your messages by email to $mailtoint."
d7eda3bc
IJ
1442 }
1443 default {
1444 error "bad tellsec $sec"
1445 }
1446 }
1447}
1448
1449proc tellme_rel_desc {v} {
1450 manyset $v rel every within
1451 switch -exact $rel {
1452 unreliable {
1453 return "As soon as I've told you, I'll forget the message - note that this means messages can get lost !"
1454 }
1455 pester {
1456 set u {}
1457 }
1458 remind {
1459 set u ", or talk on channel within [showintervalsecs $within 1] of me having told you"
1460 }
1461 default {
1462 error "bad tellrel $rel"
1463 }
1464 }
1465 return "I'll remind you every [showintervalsecs $every 1] until you say delmsg$u."
1466}
1467
11d9bff9 1468def_setting timeformat {
20087363 1469 set tf [nickdb_get $n timeformat]
11d9bff9
IJ
1470 return "$tf: [timeformat_desc $tf]"
1471} {
1472 set tf [string tolower [ta_word]]
1473 ta_nomore
1474 set desc [timeformat_desc $tf]
1475 nickdb_set $n timeformat $tf
1476 ucmdr {} $desc
1477}
1478
ebbae0a9
IJ
1479proc marktime_desc {mt} {
1480 if {"$mt" == "off"} {
1481 return "I will not send you periodic messages."
1482 } elseif {"$mt" == "once"} {
1483 return "I will send you one informational message when I see you."
1484 } else {
ef177383 1485 return "I'll send you a message every [showintervalsecs $mt 0]."
ebbae0a9
IJ
1486 }
1487}
1488
1489def_setting marktime {
1490 set mt [nickdb_get $n marktime]
1491 set p $mt
a4e294d4 1492 if {[string match {[0-9]*} $mt]} { append p s }
ebbae0a9
IJ
1493 append p ": "
1494 append p [marktime_desc $mt]
1495 return $p
1496} {
1497 global marktime_min
1498 set mt [string tolower [ta_word]]
1499 ta_nomore
1500
1501 if {"$mt" == "off" || "$mt" == "once"} {
ebbae0a9 1502 } else {
d7eda3bc 1503 set mt [parse_interval $mt $marktime_min]
ebbae0a9
IJ
1504 }
1505 nickdb_set $n marktime $mt
34c25cd7 1506 lnick_marktime_start [irctolower $n] "So:" 500 0
ebbae0a9
IJ
1507 ucmdr {} [marktime_desc $mt]
1508}
1509
11d9bff9 1510def_setting security {
20087363 1511 set s [nickdb_get $n username]
11d9bff9
IJ
1512 if {[string length $s]} {
1513 return "Your nick, $n, is controlled by the user $s."
1514 } else {
1515 return "Your nick, $n, is not secure."
1516 }
1517} {}
1518
26477e22 1519proc tellme_setting_sec_simple {} {
268336f8
IJ
1520 uplevel 1 {
1521 ta_nomore
1522 set sr sec
1523 set v $setting
1524 }
1525}
1526
26477e22 1527proc tellme_setting_neednomsgs {} {
268336f8
IJ
1528 uplevel 1 {
1529 if {[llength [msgsdb_get $n inbound]]} {
1530 usererror "You must delete the messages you have, first."
1531 }
1532 }
26477e22 1533}
268336f8 1534
d7eda3bc
IJ
1535def_setting tellme {
1536 set secv [nickdb_get $n tellsec]
26477e22 1537 set ms [tellme_sec_desc $secv $n]
d7eda3bc
IJ
1538 manyset $secv sec
1539 switch -exact $sec {
1540 insecure - secure {
1541 set mr [tellme_rel_desc [nickdb_get $n tellrel]]
1542 return "$ms $mr"
1543 }
1544 refuse - mailto {
1545 return $ms
1546 }
1547 }
1548} {
1549 set setting [string tolower [ta_word]]
1550 switch -exact $setting {
268336f8 1551 insecure {
26477e22 1552 tellme_setting_sec_simple
268336f8
IJ
1553 }
1554 secure {
26477e22
IJ
1555 set every [ta_interval_optional 60 600]
1556 ta_nomore
1557 set sr sec
1558 set v [list secure $every]
268336f8
IJ
1559 }
1560 refuse {
1561 telling_setting_neednomsgs
1562 telling_setting_sec_simple
d7eda3bc
IJ
1563 }
1564 mailto {
268336f8 1565 telling_setting_neednomsgs
26477e22
IJ
1566 set u [nickdb_get $n username]
1567 if {[string length $u]} {
1568 usererror \
1569 "Sorry, you must register securely to have your messages mailed\
1570 (to prevent the use of this feature for spamming). See `help register'."
1571 }
d7eda3bc
IJ
1572 set sr sec
1573 set v [list mailto [ta_word] $u]
1574 }
1575 unreliable - pester - remind {
1576 manyset [nickdb_get $n tellsec] sec
1577 switch -exact $sec {
1578 refuse - mailto {
26477e22
IJ
1579 usererror \
1580 "You can't change your message delivery conditions when\
1581 your message disposition prevents messages from being left."
d7eda3bc
IJ
1582 }
1583 }
1584 set sr rel
1585 set v $setting
1586 if {"$setting" != "unreliable"} {
26477e22 1587 set every [parse_interval_optional 300 3600]
d7eda3bc
IJ
1588 lappend v $every
1589 }
1590 if {"$setting" == "remind"} {
26477e22 1591 set within [ta_interval_optional 5 30]
d7eda3bc
IJ
1592 if {$within > $every} {
1593 error "remind interval must be at least time to respond"
1594 }
1595 lappend v $within
1596 }
1597 ta_nomore
1598 }
1599 default {
1600 error "invalid tellme setting $setting"
1601 }
1602 }
1603 nickdb_set $n tell$sr $v
1604 ucmdr [tellme_${sr}_desc $v] {}
1605}
1606
34c25cd7
IJ
1607proc lnick_checktold {luser} {
1608 set ml [msgsdb_get $luser outbound]
1609 if {![llength $ml]} return
1610 set is1 [expr {[llength $ml]==3}]
1611 set m1 "FYI, I haven't yet passed on your"
1612 set ol {}
1613 set now [clock seconds]
1614 while {[llength $ml]} {
1615 manyset $ml r t n
1616 set ml [lreplace $ml 0 2]
1617 set td [expr {$now-$t}]
1618 if {$n == 1} {
1619 set iv [showinterval $td]
1620 set ifo "$r, $iv"
1621 set if1 "message to $r, $iv."
1622 } else {
1623 set iv [showintervalsecs $td 0]
1624 set ifo "$r, $n messages, oldest $iv"
1625 set if1 "$n messages to $r, oldest $iv."
1626 }
1627 if {$is1} {
1628 sendprivmsg $luser "$m1 $if1"
1629 return
1630 } else {
1631 lappend ol " to $ifo[expr {[llength $ml] ? ";" : "."}]"
1632 }
1633 }
1634 sendprivmsg $luser "$m1 messages:"
1635 msendprivmsg $luser $ol
1636}
1637
11d9bff9 1638def_ucmd set {
d7eda3bc 1639 global settings
11d9bff9
IJ
1640 prefix_nick
1641 check_notonchan
1642 if {![nickdb_exists $n]} {
d83fb8db 1643 ucmdr {} "You are unknown to me and so have no settings. (Use `register'.)"
11d9bff9
IJ
1644 }
1645 if {![ta_anymore]} {
1646 set ol {}
d7eda3bc 1647 foreach opt $settings {
11d9bff9
IJ
1648 lappend ol [format "%-10s %s" $opt [set_show/$opt]]
1649 }
1650 ucmdr {} [join $ol "\n"]
1651 } else {
1652 set opt [ta_word]
1653 if {[catch { info body set_show/$opt }]} {
1654 error "no setting $opt"
1655 }
1656 if {![ta_anymore]} {
d7eda3bc 1657 ucmdr {} "$opt: [set_show/$opt]"
11d9bff9 1658 } else {
86892128 1659 nick_securitycheck 0
11d9bff9
IJ
1660 if {[catch { info body set_set/$opt }]} {
1661 error "setting $opt cannot be set with `set'"
1662 }
1663 set_set/$opt
1664 }
1665 }
1666}
7a70431a 1667
4fd2739c
IJ
1668def_ucmd identpass {
1669 set username [ta_word]
d83fb8db 1670 set passmd5 [md5sum "[ta_word]\n"]
4fd2739c
IJ
1671 ta_nomore
1672 prefix_nick
11d9bff9 1673 check_notonchan
534e26a9
IJ
1674 set luser [irctolower $n]
1675 upvar #0 nick_onchans($luser) onchans
4fd2739c 1676 if {![info exists onchans] || ![llength $onchans]} {
7a70431a 1677 ucmdr "You must be on a channel with me to identify yourself." {}
4fd2739c
IJ
1678 }
1679 check_username $username
1680 exec userv --timeout 3 $username << "$passmd5\n" > /dev/null \
1681 irc-identpass $n
534e26a9 1682 upvar #0 nick_username($luser) rec_username
4fd2739c 1683 set rec_username $username
7a70431a 1684 ucmdr "Pleased to see you, $username." {}
31eadeb5 1685 tell_event $luser ident
4fd2739c
IJ
1686}
1687
1688def_ucmd summon {
1689 set target [ta_word]
1690 ta_nomore
1691 check_username $target
7ce72032
IJ
1692 prefix_nick
1693
1694 upvar #0 lastsummon($target) ls
1695 set now [clock seconds]
1696 if {[info exists ls]} {
1697 set interval [expr {$now - $ls}]
1698 if {$interval < 30} {
1699 ucmdr {} \
1700 "Please be patient; $target was summoned only [showinterval $interval]."
1701 }
1702 }
1703 regsub {^[^!]*!} $p {} path
1704 if {[catch {
1705 exec userv --timeout 3 $target irc-summon $n $path \
1706 [expr {[ischan $dest] ? "$dest" : ""}] \
1707 < /dev/null
1708 } rv]} {
1709 regsub -all "\n" $rv { / } rv
1710 error $rv
1711 }
1712 if {[regexp {^problem (.*)} $rv dummy problem]} {
8a8d337d 1713 ucmdr {} "The user `$target' $problem."
7ce72032
IJ
1714 } elseif {[regexp {^ok ([^ ]+) ([0-9]+)$} $rv dummy tty idlesince]} {
1715 set idletime [expr {$now - $idlesince}]
1716 set ls $now
1717 ucmdr {} {} {} "invites $target ($tty[expr {
ef177383 1718 $idletime > 10 ? ", idle for [showintervalsecs $idletime 0]" : ""
7ce72032
IJ
1719 }]) to [expr {
1720 [ischan $dest] ? "join us here" : "talk to you"
1721 }]."
1722 } else {
1723 error "unexpected response from userv service: $rv"
1724 }
1725}
1726
a69f7d2c
IJ
1727proc md5sum {value} { exec md5sum << $value }
1728
83dd1224 1729def_ucmd seen {
422f52e4 1730 global lastseen nick
83dd1224
IJ
1731 prefix_nick
1732 set ncase [ta_nick]
1733 set nlower [irctolower $ncase]
422f52e4 1734 ta_nomore
83dd1224
IJ
1735 set now [clock seconds]
1736 if {"$nlower" == "[irctolower $nick]"} {
a01859b6 1737 usererror "I am not self-aware."
83dd1224
IJ
1738 } elseif {![info exists lastseen($nlower)]} {
1739 set rstr "I've never seen $ncase."
422f52e4 1740 } else {
83dd1224
IJ
1741 manyset $lastseen($nlower) realnick time what
1742 set howlong [expr {$now - $time}]
1743 set string [showinterval $howlong]
1744 set rstr "I last saw $realnick $string, $what."
1745 }
1746 if {[ischan $dest]} {
1747 set where $dest
1748 } else {
1749 set where {}
1750 }
1751 upvar #0 lookedfor($nlower) lf
1752 if {[info exists lf]} { set oldvalue $lf } else { set oldvalue {} }
1753 set lf [list [list $now $n $where]]
1754 foreach v $oldvalue {
1755 if {"[irctolower [lindex $v 1]]" == "[irctolower $n]"} continue
1756 lappend lf $v
cc2d31de 1757 }
83dd1224 1758 ucmdr {} $rstr
cc2d31de
IJ
1759}
1760
ebbae0a9
IJ
1761proc lnick_marktime_cancel {luser} {
1762 upvar #0 nick_markid($luser) mi
1763 if {![info exists mi]} return
1764 catch { after cancel $mi }
1765 catch { unset mi }
1766}
1767
34c25cd7 1768proc lnick_marktime_doafter {luser why ms mentiontold} {
ebbae0a9
IJ
1769 lnick_marktime_cancel $luser
1770 upvar #0 nick_markid($luser) mi
34c25cd7 1771 set mi [after $ms [list lnick_marktime_now $luser $why 0]]
ebbae0a9
IJ
1772}
1773
1774proc lnick_marktime_reset {luser} {
1775 set mt [nickdb_get $luser marktime]
1776 if {"$mt" == "off" || "$mt" == "once"} return
34c25cd7 1777 lnick_marktime_doafter $luser "Time passes." [expr {$mt*1000}] 0
ebbae0a9
IJ
1778}
1779
34c25cd7 1780proc lnick_marktime_start {luser why ms mentiontold} {
ebbae0a9
IJ
1781 set mt [nickdb_get $luser marktime]
1782 if {"$mt" == "off"} {
1783 lnick_marktime_cancel $luser
34c25cd7 1784 after $ms [list lnick_checktold $luser]
ebbae0a9 1785 } else {
34c25cd7 1786 lnick_marktime_doafter $luser $why $ms $mentiontold
ebbae0a9
IJ
1787 }
1788}
1789
34c25cd7 1790proc lnick_marktime_now {luser why mentiontold} {
ebbae0a9 1791 upvar #0 nick_onchans($luser) oc
93e9bcff
IJ
1792 global calling_nick
1793 set calling_nick $luser
ebbae0a9 1794 sendprivmsg $luser [lnick_pingstring $why $oc ""]
34c25cd7 1795 if {$mentiontold} { lnick_checktold $luser }
ebbae0a9
IJ
1796 lnick_marktime_reset $luser
1797}
1798
1799proc lnick_pingstring {why oc apstring} {
1800 global nick_onchans
1801 catch { exec uptime } uptime
1802 set nnicks [llength [array names nick_onchans]]
1803 if {[regexp \
ea8a1bfe 1804 {^ *([0-9:apm]+) +up.*, +(\d+) users?, +load average: +([0-9., ]+) *$} \
ebbae0a9 1805 $uptime dummy time users load]} {
93e9bcff 1806 regsub -all , $load {} load
ebbae0a9
IJ
1807 set uptime "$time $nnicks/$users $load"
1808 } else {
1809 append uptime ", $nnicks nicks"
1810 }
1811 if {[llength $oc]} {
1812 set best_la 0
1813 set activity quiet
1814 foreach ch $oc {
1815 upvar #0 chan_lastactivity($ch) la
1816 if {![info exists la]} continue
1817 if {$la <= $best_la} continue
ef177383
IJ
1818 set since [showintervalsecs [expr {[clock seconds]-$la}] 1]
1819 set activity "$ch $since"
ebbae0a9
IJ
1820 set best_la $la
1821 }
1822 } else {
1823 set activity unseen
1824 }
1825 set str $why
1826 append str " " $uptime " " $activity
1827 if {[string length $apstring]} { append str " " $apstring }
1828 return $str
1829}
1830
1831def_ucmd ping {
34c25cd7
IJ
1832 prefix_nick
1833 set ln [irctolower $n]
ebbae0a9
IJ
1834 if {[ischan $dest]} {
1835 set oc [irctolower $dest]
1836 } else {
1837 global nick_onchans
ebbae0a9
IJ
1838 if {[info exists nick_onchans($ln)]} {
1839 set oc $nick_onchans($ln)
1840 } else {
1841 set oc {}
1842 }
1843 if {[llength $oc]} { lnick_marktime_reset $ln }
1844 }
34c25cd7 1845 lnick_checktold $ln
ebbae0a9
IJ
1846 ucmdr {} [lnick_pingstring "Pong!" $oc $text]
1847}
1848
28c8ab78
IJ
1849proc ensure_globalsecret {} {
1850 global globalsecret
1851
1852 if {[info exists globalsecret]} return
1853 set gsfile [open /dev/urandom r]
1854 fconfigure $gsfile -translation binary
1855 set globalsecret [read $gsfile 32]
1856 binary scan $globalsecret H* globalsecret
1857 close $gsfile
1858 unset gsfile
1859}
1860
534e26a9 1861proc connected {} {
534e26a9
IJ
1862 foreach chan [chandb_list] {
1863 if {[chandb_get $chan autojoin]} { dojoin $chan }
1864 }
1865}
1866
28c8ab78 1867ensure_globalsecret
e6cc22dc 1868loadhelp
28c8ab78 1869ensure_connecting