chiark / gitweb /
Split IRC core stuff off ?
[ircbot] / bot.tcl
CommitLineData
e58e51a8 1# Core bot code
9bc33297 2
574abac6 3source irccore.tcl
7818b6af 4
574abac6
IJ
5proc unlogged_content_msg {prefix params} {
6 if {![regexp {^[&#+!]} [lindex $params 0]] ||
7 [regexp {^![a-z][-a-z]*[a-z]( .*)?$} [lindex $params 1]]} {
7818b6af 8 return 1
7818b6af 9 }
574abac6
IJ
10 # on-channel message, ignore
11 set chan [lindex $params 0]
12 upvar #0 chan_lastactivity([irctolower $chan]) la
13 set la [clock seconds]
14 catch { recordlastseen_p $prefix "talking on $chan" 1 }
15 return
7818b6af
IJ
16}
17
574abac6 18proc usererror {emsg} { error $emsg {} {BLIGHT USER} }
83dd1224 19
cc2d31de
IJ
20proc prefix_none {} {
21 upvar 1 p p
9bc33297 22 if {[string length $p]} { error "prefix specified" }
cc2d31de 23}
9bc33297 24
cc2d31de
IJ
25proc prefix_nick {} {
26 global nick
27 upvar 1 p p
28 upvar 1 n n
29 if {![regexp {^([^!]+)!} $p dummy n]} { error "not from nick" }
30 check_nick $n
a056c4bd
IJ
31 if {"[irctolower $n]" == "[irctolower $nick]"} {
32 error "from myself" {} {}
33 }
422f52e4
IJ
34}
35
ef177383
IJ
36proc showintervalsecs {howlong abbrev} {
37 return [showintervalsecs/[opt timeformat] $howlong $abbrev]
d83fb8db
IJ
38}
39
ef177383 40proc showintervalsecs/ks {howlong abbrev} {
7ce72032
IJ
41 if {$howlong < 1000} {
42 return "${howlong}s"
83dd1224
IJ
43 } else {
44 if {$howlong < 1000000} {
45 set pfx k
46 set scale 1000
47 } else {
48 set pfx M
49 set scale 1000000
50 }
51 set value [expr "$howlong.0 / $scale"]
52 foreach {min format} {100 %.0f 10 %.1f 1 %.2f} {
53 if {$value < $min} continue
7ce72032 54 return [format "$format${pfx}s" $value]
83dd1224
IJ
55 }
56 }
57}
58
ef177383 59proc format_qty {qty unit abbrev} {
d83fb8db 60 set o $qty
ef177383
IJ
61 if {$abbrev} {
62 append o [string range $unit 0 0]
63 } else {
64 append o " "
65 append o $unit
66 if {$qty != 1} { append o s }
67 }
d83fb8db
IJ
68 return $o
69}
70
ef177383 71proc showintervalsecs/hms {qty abbrev} {
d83fb8db
IJ
72 set ul {second 60 minute 60 hour 24 day 7 week}
73 set remainv 0
74 while {[llength $ul] > 1 && $qty >= [set uv [lindex $ul 1]]} {
75 set remainu [lindex $ul 0]
76 set remainv [expr {$qty % $uv}]
77 set qty [expr {($qty-$remainv)/$uv}]
78 set ul [lreplace $ul 0 1]
79 }
ef177383 80 set o [format_qty $qty [lindex $ul 0] $abbrev]
d83fb8db 81 if {$remainv} {
ef177383
IJ
82 if {!$abbrev} { append o " " }
83 append o [format_qty $remainv $remainu $abbrev]
d83fb8db
IJ
84 }
85 return $o
86}
87
7ce72032
IJ
88proc showinterval {howlong} {
89 if {$howlong <= 0} {
90 return {just now}
91 } else {
ef177383 92 return "[showintervalsecs $howlong 0] ago"
7ce72032
IJ
93 }
94}
95
83dd1224
IJ
96proc showtime {when} {
97 return [showinterval [expr {[clock seconds] - $when}]]
98}
99
100proc def_msgproc {name argl body} {
101 proc msg_$name "varbase $argl" "\
102 upvar #0 msg/\$varbase/dest d\n\
103 upvar #0 msg/\$varbase/str s\n\
104 upvar #0 msg/\$varbase/accum a\n\
105$body"
106}
107
108def_msgproc begin {dest str} {
109 set d $dest
110 set s $str
111 set a {}
112}
113
114def_msgproc append {str} {
115 set ns "$s$str"
116 if {[string length $s] && [string length $ns] > 65} {
117 msg__sendout $varbase
118 set s " [string trimleft $str]"
119 } else {
120 set s $ns
121 }
122}
123
124def_msgproc finish {} {
125 msg__sendout $varbase
126 unset s
127 unset d
128 return $a
129}
130
131def_msgproc _sendout {} {
132 lappend a [string trimright $s]
133 set s {}
134}
135
136proc looking_whenwhere {when where} {
137 set str [showtime [expr {$when-1}]]
138 if {[string length $where]} { append str " on $where" }
139 return $str
140}
141
142proc recordlastseen_n {n how here} {
143 global lastseen lookedfor
422f52e4 144 set lastseen([irctolower $n]) [list $n [clock seconds] $how]
83dd1224
IJ
145 if {!$here} return
146 upvar #0 lookedfor([irctolower $n]) lf
147 if {[info exists lf]} {
148 switch -exact [llength $lf] {
149 0 {
150 set ml {}
151 }
152 1 {
153 manyset [lindex $lf 0] when who where
154 set ml [list \
155 "FYI, $who was looking for you [looking_whenwhere $when $where]."]
156 }
157 default {
158 msg_begin tosend $n "FYI, people have been looking for you:"
159 set i 0
160 set fin ""
161 foreach e $lf {
162 incr i
163 if {$i == 1} {
164 msg_append tosend " "
165 } elseif {$i == [llength $lf]} {
166 msg_append tosend " and "
167 set fin .
168 } else {
169 msg_append tosend ", "
170 }
171 manyset $e when who where
172 msg_append tosend \
173 "$who ([looking_whenwhere $when $where])$fin"
174 }
175 set ml [msg_finish tosend]
176 }
177 }
178 unset lf
179 msendprivmsg_delayed 1000 $n $ml
180 }
422f52e4 181}
281b5f05
IJ
182
183proc note_topic {showoff whoby topic} {
35e19219 184 set msg "FYI, $whoby has changed the topic on $showoff"
281b5f05
IJ
185 if {[string length $topic] < 160} {
186 append msg " to $topic"
187 } else {
188 append msg " but it is too long to reproduce here !"
189 }
190 set showoff [irctolower $showoff]
191 set tell [chandb_get $showoff topictell]
192 if {[lsearch -exact $tell *] >= 0} {
193 set tryspies [chandb_list]
194 } else {
195 set tryspies $tell
196 }
281b5f05
IJ
197 foreach spy $tryspies {
198 set see [chandb_get $spy topicsee]
281b5f05
IJ
199 if {[lsearch -exact $see $showoff] >= 0 || \
200 ([lsearch -exact $see *] >= 0 && \
201 [lsearch -exact $tell $spy] >= 0)} {
202 sendprivmsg $spy $msg
203 }
204 }
205}
206
83dd1224 207proc recordlastseen_p {p how here} {
422f52e4 208 prefix_nick
83dd1224 209 recordlastseen_n $n $how $here
422f52e4
IJ
210}
211
212proc chanmode_arg {} {
213 upvar 2 args cm_args
214 set rv [lindex $cm_args 0]
215 set cm_args [lreplace cm_args 0 0]
216 return $rv
217}
218
83dd1224 219proc chanmode_o1 {m g p chan} {
20087363 220 global nick chan_initialop
83dd1224
IJ
221 prefix_nick
222 set who [chanmode_arg]
223 recordlastseen_n $n "being nice to $who" 1
224 if {"[irctolower $who]" == "[irctolower $nick]"} {
534e26a9
IJ
225 set nlower [irctolower $n]
226 upvar #0 nick_unique($nlower) u
20087363
IJ
227 if {[chandb_exists $chan]} {
228 sendprivmsg $n Thanks.
229 } elseif {![info exists u]} {
230 sendprivmsg $n {Op me while not on the channel, why don't you ?}
231 } else {
232 set chan_initialop([irctolower $chan]) $u
233 sendprivmsg $n \
234 "Thanks. You can use `channel manager ...' to register this channel."
235 if {![nickdb_exists $n] || ![string length [nickdb_get $n username]]} {
236 sendprivmsg $n \
237 "(But to do that you must register your nick securely first.)"
238 }
239 }
83dd1224
IJ
240 }
241}
242
422f52e4
IJ
243proc chanmode_o0 {m g p chan} {
244 global nick chandeop
245 prefix_nick
246 set who [chanmode_arg]
83dd1224 247 recordlastseen_p $p "being mean to $who" 1
422f52e4
IJ
248 if {"[irctolower $who]" == "[irctolower $nick]"} {
249 set chandeop($chan) [list [clock seconds] $p]
250 }
cc2d31de 251}
9bc33297 252
422f52e4
IJ
253proc msg_MODE {p c dest modelist args} {
254 if {![ischan $dest]} return
255 if {[regexp {^\-(.+)$} $modelist dummy modelist]} {
256 set give 0
257 } elseif {[regexp {^\+(.+)$} $modelist dummy modelist]} {
258 set give 1
259 } else {
260 error "invalid modelist"
261 }
262 foreach m [split $modelist] {
263 set procname chanmode_$m$give
264 if {[catch { info body $procname }]} {
83dd1224 265 recordlastseen_p $p "fiddling with $dest" 1
422f52e4
IJ
266 } else {
267 $procname $m $give $p $dest
268 }
269 }
270}
271
534e26a9
IJ
272proc leaving {lchan} {
273 foreach luser [array names nick_onchans] {
274 upvar #0 nick_onchans($luser) oc
275 set oc [grep tc {"$tc" != "$lchan"} $oc]
276 }
277 upvar #0 chan_nicks($lchan) nlist
278 unset nlist
ebbae0a9
IJ
279 upvar #0 chan_lastactivity($lchan) la
280 catch { unset la }
534e26a9
IJ
281}
282
cf6ea4de
IJ
283proc doleave {lchan} {
284 sendout PART $lchan
285 leaving $lchan
286}
287
534e26a9
IJ
288proc dojoin {lchan} {
289 global chan_nicks
290 sendout JOIN $lchan
291 set chan_nicks($lchan) {}
292}
293
294proc check_justme {lchan} {
295 global nick
296 upvar #0 chan_nicks($lchan) nlist
297 if {[llength $nlist] != 1} return
e2af9bcb 298 if {"[lindex $nlist 0]" != "[irctolower $nick]"} return
534e26a9
IJ
299 if {[chandb_exists $lchan]} {
300 set mode [chandb_get $lchan mode]
301 if {"$mode" != "*"} {
302 sendout MODE $lchan $mode
303 }
281b5f05
IJ
304 set topic [chandb_get $lchan topicset]
305 if {[string length $topic]} {
306 sendout TOPIC $lchan $topic
281b5f05 307 }
534e26a9 308 } else {
cf6ea4de 309 doleave $lchan
a4a1f396
IJ
310 }
311}
312
a056c4bd 313proc process_kickpart {chan user} {
a4a1f396 314 global nick
a056c4bd 315 check_nick $user
534e26a9
IJ
316 set luser [irctolower $user]
317 set lchan [irctolower $chan]
a056c4bd 318 if {![ischan $chan]} { error "not a channel" }
534e26a9
IJ
319 if {"$luser" == "[irctolower $nick]"} {
320 leaving $lchan
321 } else {
322 upvar #0 nick_onchans($luser) oc
323 upvar #0 chan_nicks($lchan) nlist
324 set oc [grep tc {"$tc" != "$lchan"} $oc]
325 set nlist [grep tn {"$tn" != "$luser"} $nlist]
326 nick_case $user
327 if {![llength $oc]} {
328 nick_forget $luser
329 } else {
330 check_justme $lchan
331 }
a4a1f396 332 }
534e26a9 333}
a056c4bd 334
281b5f05
IJ
335proc msg_TOPIC {p c dest topic} {
336 prefix_nick
337 if {![ischan $dest]} return
338 recordlastseen_n $n "changing the topic on $dest" 1
339 note_topic [irctolower $dest] $n $topic
340}
341
a056c4bd
IJ
342proc msg_KICK {p c chans users comment} {
343 set chans [split $chans ,]
344 set users [split $users ,]
345 if {[llength $chans] > 1} {
346 foreach chan $chans user $users { process_kickpart $chan $user }
347 } else {
348 foreach user $users { process_kickpart [lindex $chans 0] $user }
349 }
350}
351
352proc msg_KILL {p c user why} {
353 nick_forget $user
354}
355
20087363
IJ
356set nick_counter 0
357set nick_arys {onchans username unique}
534e26a9
IJ
358# nick_onchans($luser) -> [list ... $lchan ...]
359# nick_username($luser) -> <securely known local username>
360# nick_unique($luser) -> <counter>
361# nick_case($luser) -> $user (valid even if no longer visible)
ebbae0a9 362# nick_markid($luser) -> <after id for marktime>
534e26a9
IJ
363
364# chan_nicks($lchan) -> [list ... $luser ...]
ebbae0a9 365# chan_lastactivity($lchan) -> [clock seconds]
a056c4bd 366
534e26a9
IJ
367proc lnick_forget {luser} {
368 global nick_arys chan_nicks
ebbae0a9 369 lnick_marktime_cancel $luser
a056c4bd 370 foreach ary $nick_arys {
534e26a9 371 upvar #0 nick_${ary}($luser) av
a056c4bd
IJ
372 catch { unset av }
373 }
534e26a9
IJ
374 foreach lch [array names chan_nicks] {
375 upvar #0 chan_nicks($lch) nlist
376 set nlist [grep tn {"$tn" != "$luser"} $nlist]
377 check_justme $lch
378 }
379}
380
381proc nick_forget {user} {
382 global nick_arys chan_nicks
383 lnick_forget [irctolower $user]
384 nick_case $user
a4a1f396
IJ
385}
386
534e26a9 387proc nick_case {user} {
a4a1f396 388 global nick_case
534e26a9 389 set nick_case([irctolower $user]) $user
a056c4bd
IJ
390}
391
83dd1224 392proc msg_NICK {p c newnick} {
a4a1f396 393 global nick_arys nick_case
83dd1224
IJ
394 prefix_nick
395 recordlastseen_n $n "changing nicks to $newnick" 0
396 recordlastseen_n $newnick "changing nicks from $n" 1
6425c2d6 397 set luser [irctolower $n]
ebbae0a9 398 lnick_marktime_cancel $luser
6425c2d6 399 set lusernew [irctolower $newnick]
a056c4bd 400 foreach ary $nick_arys {
6425c2d6
IJ
401 upvar #0 nick_${ary}($luser) old
402 upvar #0 nick_${ary}($lusernew) new
a056c4bd
IJ
403 if {[info exists new]} { error "nick collision ?! $ary $n $newnick" }
404 if {[info exists old]} { set new $old; unset old }
405 }
6425c2d6 406 upvar #0 nick_onchans($lusernew) oc
534e26a9
IJ
407 foreach ch $oc {
408 upvar #0 chan_nicks($ch) nlist
409 set nlist [grep tn {"$tn" != "$luser"} $nlist]
410 lappend nlist $lusernew
411 }
ebbae0a9 412 lnick_marktime_start $lusernew "Hi." 500
a4a1f396 413 nick_case $newnick
83dd1224
IJ
414}
415
20087363
IJ
416proc nick_ishere {n} {
417 global nick_counter
534e26a9 418 upvar #0 nick_unique([irctolower $n]) u
20087363
IJ
419 if {![info exists u]} { set u [incr nick_counter].$n.[clock seconds] }
420 nick_case $n
421}
422
a056c4bd
IJ
423proc msg_JOIN {p c chan} {
424 prefix_nick
425 recordlastseen_n $n "joining $chan" 1
cf6ea4de
IJ
426 set nl [irctolower $n]
427 set lchan [irctolower $chan]
428 upvar #0 nick_onchans($nl) oc
429 upvar #0 chan_nicks($lchan) nlist
ebbae0a9
IJ
430 if {![info exists oc]} {
431 global marktime_join_startdelay
432 lnick_marktime_start $nl "Welcome." $marktime_join_startdelay
433 }
cf6ea4de
IJ
434 lappend oc $lchan
435 lappend nlist $nl
20087363 436 nick_ishere $n
a056c4bd
IJ
437}
438proc msg_PART {p c chan} {
439 prefix_nick
440 recordlastseen_n $n "leaving $chan" 1
441 process_kickpart $chan $n
442}
443proc msg_QUIT {p c why} {
444 prefix_nick
445 recordlastseen_n $n "leaving ($why)" 0
446 nick_forget $n
447}
422f52e4 448
cc2d31de 449proc msg_PRIVMSG {p c dest text} {
a01859b6
IJ
450 global errorCode
451
cc2d31de 452 prefix_nick
422f52e4 453 if {[ischan $dest]} {
83dd1224 454 recordlastseen_n $n "invoking me in $dest" 1
422f52e4 455 set output $dest
cc2d31de 456 } else {
83dd1224 457 recordlastseen_n $n "talking to me" 1
422f52e4
IJ
458 set output $n
459 }
a4a1f396 460 nick_case $n
422f52e4
IJ
461
462 if {[catch {
463 regsub {^! *} $text {} text
464 set ucmd [ta_word]
83dd1224 465 set procname ucmd/[string tolower $ucmd]
422f52e4 466 if {[catch { info body $procname }]} {
a01859b6 467 usererror "Unknown command; try help for help."
422f52e4 468 }
83dd1224 469 $procname $p $dest
422f52e4 470 } rv]} {
a01859b6
IJ
471 if {"$errorCode" != "BLIGHT USER"} { set rv "error: $rv" }
472 sendprivmsg $n $rv
422f52e4 473 } else {
7ce72032 474 manyset $rv priv_msgs pub_msgs priv_acts pub_acts
7a70431a 475 foreach {td val} [list $n $priv_acts $output $pub_acts] {
7ce72032 476 foreach l [split $val "\n"] {
7818b6af 477 sendaction_priority 0 $td $l
7ce72032
IJ
478 }
479 }
7a70431a 480 foreach {td val} [list $n $priv_msgs $output $pub_msgs] {
422f52e4 481 foreach l [split $val "\n"] {
7a70431a 482 sendprivmsg $td $l
422f52e4
IJ
483 }
484 }
485 }
486}
487
a056c4bd 488proc msg_INVITE {p c n chan} {
534e26a9 489 after 1000 [list dojoin [irctolower $chan]]
a056c4bd
IJ
490}
491
492proc grep {var predicate list} {
493 set o {}
494 upvar 1 $var v
495 foreach v $list {
496 if {[uplevel 1 [list expr $predicate]]} { lappend o $v }
497 }
498 return $o
499}
500
501proc msg_353 {p c dest type chan nicklist} {
502 global names_chans nick_onchans
534e26a9
IJ
503 set lchan [irctolower $chan]
504 upvar #0 chan_nicks($lchan) nlist
505 lappend names_chans $lchan
506 if {![info exists nlist]} {
507 # We don't think we're on this channel, so ignore it !
508 # Unfortunately, because we don't get a reply to PART,
509 # we have to remember ourselves whether we're on a channel,
510 # and ignore stuff if we're not, to avoid races. Feh.
511 return
512 }
513 set nlist_new {}
514 foreach user [split $nicklist { }] {
515 regsub {^[@+]} $user {} user
516 if {![string length $user]} continue
517 check_nick $user
518 set luser [irctolower $user]
519 upvar #0 nick_onchans($luser) oc
520 lappend oc $lchan
521 lappend nlist_new $luser
522 nick_ishere $user
a056c4bd 523 }
534e26a9 524 set nlist $nlist_new
a056c4bd
IJ
525}
526
527proc msg_366 {p c args} {
528 global names_chans nick_onchans
534e26a9
IJ
529 set lchan [irctolower $c]
530 foreach luser [array names nick_onchans] {
531 upvar #0 nick_onchans($luser) oc
532 if {[llength names_chans] > 1} {
a056c4bd 533 set oc [grep tc {[lsearch -exact $tc $names_chans] >= 0} $oc]
a056c4bd 534 }
534e26a9 535 if {![llength $oc]} { lnick_forget $n }
a056c4bd
IJ
536 }
537 unset names_chans
538}
539
11d9bff9
IJ
540proc ta_anymore {} {
541 upvar 1 text text
542 return [expr {!![string length $text]}]
543}
544
422f52e4
IJ
545proc ta_nomore {} {
546 upvar 1 text text
547 if {[string length $text]} { error "too many parameters" }
548}
549
550proc ta_word {} {
551 upvar 1 text text
552 if {![regexp {^([^ ]+) *(.*)} $text dummy firstword text]} {
553 error "too few parameters"
554 }
555 return $firstword
556}
557
558proc ta_nick {} {
559 upvar 1 text text
560 set v [ta_word]
561 check_nick $v
562 return $v
563}
564
83dd1224
IJ
565proc def_ucmd {cmdname body} {
566 proc ucmd/$cmdname {p dest} " upvar 1 text text\n$body"
567}
568
7ce72032
IJ
569proc ucmdr {priv pub args} {
570 return -code return [concat [list $priv $pub] $args]
422f52e4 571}
e1ba63be 572
e6cc22dc 573proc loadhelp {} {
5e5be903 574 global help_topics errorInfo
e6cc22dc
IJ
575
576 catch { unset help_topics }
577 set f [open helpinfos r]
d83fb8db
IJ
578 try_except_finally {
579 set lno 0
580 while {[gets $f l] >= 0} {
581 incr lno
582 if {[regexp {^#.*} $l]} {
583 } elseif {[regexp {^ *$} $l]} {
584 if {[info exists topic]} {
585 set help_topics($topic) [join $lines "\n"]
586 unset topic
587 unset lines
588 }
5e5be903
IJ
589 } elseif {[regexp {^\:\:} $l]} {
590 } elseif {[regexp {^\:([-+._0-9a-z]*)$} $l dummy newtopic]} {
d83fb8db
IJ
591 if {[info exists topic]} {
592 error "help $newtopic while in $topic"
593 }
594 set topic $newtopic
595 set lines {}
5e5be903 596 } elseif {[regexp {^[^:#]} $l]} {
d83fb8db 597 set topic
5e5be903
IJ
598 regsub -all {([^\\])\!\$?} _$l {\1} l
599 regsub -all {\\(.)} $l {\1} l
600 regsub {^_} $l {} l
d83fb8db
IJ
601 lappend lines [string trimright $l]
602 } else {
603 error "eh ? $lno: $l"
e6cc22dc 604 }
e6cc22dc 605 }
d83fb8db 606 if {[info exists topic]} { error "unfinished topic $topic" }
5e5be903
IJ
607 } {
608 set errorInfo "in helpinfos line $lno\n$errorInfo"
609 } {
d83fb8db 610 close $f
e6cc22dc 611 }
422f52e4
IJ
612}
613
e6cc22dc 614def_ucmd help {
cf6ea4de
IJ
615 upvar 1 n n
616
617 set topic [irctolower [string trim $text]]
618 if {[string length $topic]} {
619 set ontopic " on `$topic'"
620 } else {
621 set ontopic ""
622 }
7818b6af
IJ
623 if {[set lag [out_lagged]]} {
624 if {[ischan $dest]} { set replyto $dest } else { set replyto $n }
625 if {$lag > 1} {
626 sendaction_priority 1 $replyto \
cf6ea4de 627 "is very lagged. Please ask for help$ontopic again later."
7818b6af
IJ
628 ucmdr {} {}
629 } else {
630 sendaction_priority 1 $replyto \
cf6ea4de 631 "is lagged. Your help$ontopic will arrive shortly ..."
7818b6af
IJ
632 }
633 }
634
cf6ea4de
IJ
635 upvar #0 help_topics($topic) info
636 if {![info exists info]} { ucmdr "No help on $topic, sorry." {} }
e6cc22dc
IJ
637 ucmdr $info {}
638}
e1ba63be 639
e6cc22dc
IJ
640def_ucmd ? {
641 global help_topics
642 ucmdr $help_topics() {}
643}
e1ba63be 644
4fd2739c 645proc check_username {target} {
7ce72032
IJ
646 if {
647 [string length $target] > 8 ||
648 [regexp {[^-0-9a-z]} $target] ||
649 ![regexp {^[a-z]} $target]
650 } { error "invalid username" }
4fd2739c
IJ
651}
652
20087363 653proc somedb__head {} {
7a70431a 654 uplevel 1 {
20087363
IJ
655 set idl [irctolower $id]
656 upvar #0 ${nickchan}db($idl) ndbe
657 binary scan $idl H* idh
658 set idfn $fprefix$idh
659 if {![info exists iddbe] && [file exists $idfn]} {
660 set f [open $idfn r]
7a70431a
IJ
661 try_except_finally { set newval [read $f] } {} { close $f }
662 if {[llength $newval] % 2} { error "invalid length" }
20087363 663 set iddbe $newval
7a70431a
IJ
664 }
665 }
666}
667
20087363
IJ
668proc def_somedb {name arglist body} {
669 foreach {nickchan fprefix} {nick users/n chan chans/c} {
670 proc ${nickchan}db_$name $arglist \
534e26a9
IJ
671 "set nickchan $nickchan; set fprefix $fprefix; $body"
672 }
673}
674
675def_somedb list {} {
676 set list {}
677 foreach path [glob -nocomplain -path $fprefix *] {
678 binary scan $path "A[string length $fprefix]A*" afprefix thinghex
679 if {"$afprefix" != "$fprefix"} { error "wrong prefix $path $afprefix" }
680 lappend list [binary format H* $thinghex]
20087363 681 }
534e26a9
IJ
682 return $list
683}
684
685proc def_somedb_id {name arglist body} {
686 def_somedb $name [concat id $arglist] "somedb__head; $body"
7a70431a
IJ
687}
688
534e26a9 689def_somedb_id exists {} {
20087363 690 return [info exists iddbe]
7a70431a
IJ
691}
692
534e26a9 693def_somedb_id delete {} {
20087363
IJ
694 catch { unset iddbe }
695 file delete $idfn
7a70431a
IJ
696}
697
ebbae0a9 698set default_settings_nick {timeformat ks marktime off}
281b5f05
IJ
699set default_settings_chan {
700 autojoin 1
701 mode *
702 userinvite pub
703 topicset {}
704 topicsee {}
705 topictell {}
706}
7a70431a 707
534e26a9 708def_somedb_id set {args} {
20087363
IJ
709 upvar #0 default_settings_$nickchan def
710 if {![info exists iddbe]} { set iddbe $def }
711 foreach {key value} [concat $iddbe $args] { set a($key) $value }
7a70431a
IJ
712 set newval {}
713 foreach {key value} [array get a] { lappend newval $key $value }
20087363 714 set f [open $idfn.new w]
7a70431a
IJ
715 try_except_finally {
716 puts $f $newval
717 close $f
20087363 718 file rename -force $idfn.new $idfn
7a70431a 719 } {
7a70431a 720 } {
d83fb8db 721 catch { close $f }
7a70431a 722 }
20087363 723 set iddbe $newval
7a70431a
IJ
724}
725
534e26a9 726def_somedb_id get {key} {
20087363
IJ
727 upvar #0 default_settings_$nickchan def
728 if {[info exists iddbe]} {
534e26a9 729 set l [concat $iddbe $def]
7a70431a 730 } else {
20087363 731 set l $def
7a70431a
IJ
732 }
733 foreach {tkey value} $l {
734 if {"$tkey" == "$key"} { return $value }
735 }
736 error "unset setting $key"
737}
738
20087363
IJ
739proc opt {key} {
740 global calling_nick
741 if {[info exists calling_nick]} { set n $calling_nick } { set n {} }
742 return [nickdb_get $n $key]
743}
744
7a70431a
IJ
745proc check_notonchan {} {
746 upvar 1 dest dest
a01859b6 747 if {[ischan $dest]} { usererror "That command must be sent privately." }
7a70431a
IJ
748}
749
750proc nick_securitycheck {strict} {
751 upvar 1 n n
a01859b6
IJ
752 if {![nickdb_exists $n]} {
753 usererror "You are unknown to me, use `register'."
754 }
20087363 755 set wantu [nickdb_get $n username]
7a70431a
IJ
756 if {![string length $wantu]} {
757 if {$strict} {
a01859b6 758 usererror "That feature is only available to secure users, sorry."
7a70431a
IJ
759 } else {
760 return
761 }
762 }
534e26a9
IJ
763 set luser [irctolower $n]
764 upvar #0 nick_username($luser) nu
7a70431a 765 if {![info exists nu]} {
a01859b6 766 usererror "Nick $n is secure, you must identify yourself first."
7a70431a
IJ
767 }
768 if {"$wantu" != "$nu"} {
a01859b6
IJ
769 usererror "You are the wrong user -\
770 the nick $n belongs to $wantu, not $nu."
7a70431a
IJ
771 }
772}
773
a01859b6 774proc channel_ismanager {channel n} {
c362e172 775 set mgrs [chandb_get $channel managers]
a01859b6
IJ
776 return [expr {[lsearch -exact [irctolower $mgrs] [irctolower $n]] >= 0}]
777}
778
779proc channel_securitycheck {channel} {
780 upvar n n
781 if {![channel_ismanager $channel $n]} {
782 usererror "You are not a manager of $channel."
20087363 783 }
a01859b6 784 nick_securitycheck 1
20087363
IJ
785}
786
787proc def_chancmd {name body} {
788 proc channel/$name {} \
789 " upvar 1 target chan; upvar 1 n n; upvar 1 text text; $body"
790}
791
281b5f05
IJ
792proc ta_listop {findnow procvalue} {
793 # findnow and procvalue are code fragments which will be executed
794 # in the caller's level. findnow should set ta_listop_ev to
795 # the current list, and procvalue should treat ta_listop_ev as
796 # a proposed value in the list and check and possibly modify
797 # (canonicalise?) it. After ta_listop, ta_listop_ev will
798 # be the new value of the list.
799 upvar 1 ta_listop_ev exchg
800 upvar 1 text text
20087363
IJ
801 set opcode [ta_word]
802 switch -exact _$opcode {
281b5f05 803 _= { }
20087363 804 _+ - _- {
281b5f05
IJ
805 uplevel 1 $findnow
806 foreach item $exchg { set array($item) 1 }
20087363
IJ
807 }
808 default {
281b5f05 809 error "list change opcode must be one of + - ="
20087363
IJ
810 }
811 }
281b5f05
IJ
812 foreach exchg [split $text " "] {
813 if {![string length $exchg]} continue
814 uplevel 1 $procvalue
20087363 815 if {"$opcode" != "-"} {
281b5f05 816 set array($exchg) 1
20087363 817 } else {
281b5f05 818 catch { unset array($exchg) }
20087363
IJ
819 }
820 }
281b5f05
IJ
821 set exchg [lsort [array names array]]
822}
823
824def_chancmd manager {
825 ta_listop {
826 if {[chandb_exists $chan]} {
827 set ta_listop_ev [chandb_get $chan managers]
828 } else {
829 set ta_listop_ev [list [irctolower $n]]
830 }
831 } {
832 check_nick $ta_listop_ev
833 set ta_listop_ev [irctolower $ta_listop_ev]
834 }
835 if {[llength $ta_listop_ev]} {
836 chandb_set $chan managers $ta_listop_ev
837 ucmdr "Managers of $chan: $ta_listop_ev" {}
20087363
IJ
838 } else {
839 chandb_delete $chan
840 ucmdr {} {} "forgets about managing $chan." {}
841 }
842}
843
844def_chancmd autojoin {
845 set yesno [ta_word]
846 switch -exact [string tolower $yesno] {
847 no { set nv 0 }
848 yes { set nv 1 }
849 default { error "channel autojoin must be `yes' or `no' }
850 }
851 chandb_set $chan autojoin $nv
a49f2997
IJ
852 ucmdr [expr {$nv ? "I will join $chan when I'm restarted " : \
853 "I won't join $chan when I'm restarted "}] {}
534e26a9
IJ
854}
855
5e5be903
IJ
856def_chancmd userinvite {
857 set nv [string tolower [ta_word]]
858 switch -exact $nv {
859 pub { set txt "!invite will work for $chan, but it won't work by /msg" }
860 here { set txt "!invite and /msg invite will work, but only for users who are already on $chan." }
861 all { set txt "Any user will be able to invite themselves or anyone else to $chan." }
862 none { set txt "I will not invite anyone to $chan." }
863 default {
864 error "channel userinvite must be `pub', `here', `all' or `none'
865 }
866 }
867 chandb_set $chan userinvite $nv
868 ucmdr $txt {}
869}
870
281b5f05
IJ
871def_chancmd topic {
872 set what [ta_word]
873 switch -exact $what {
874 leave {
875 ta_nomore
876 chandb_set $chan topicset {}
877 ucmdr "I won't ever change the topic of $chan." {}
878 }
879 set {
880 set t [string trim $text]
881 if {![string length $t]} {
882 error "you must specific the topic to set"
883 }
884 chandb_set $chan topicset $t
a49f2997 885 ucmdr "Whenever I'm alone on $chan, I'll set the topic to $t." {}
281b5f05
IJ
886 }
887 see - tell {
888 ta_listop {
889 set ta_listop_ev [chandb_get $chan topic$what]
890 } {
891 if {"$ta_listop_ev" != "*"} {
892 if {![ischan $ta_listop_ev]} {
893 error "bad channel \`$ta_listop_ev' in topic $what"
894 }
895 set ta_listop_ev [irctolower $ta_listop_ev]
896 }
897 }
898 chandb_set $chan topic$what $ta_listop_ev
899 ucmdr "Topic $what list for $chan: $ta_listop_ev" {}
900 }
901 default {
a01859b6 902 usererror "Unknown channel topic subcommand - see help channel."
281b5f05
IJ
903 }
904 }
905}
906
534e26a9
IJ
907def_chancmd mode {
908 set mode [ta_word]
909 if {"$mode" != "*" && ![regexp {^(([-+][imnpst]+)+)$} $mode mode]} {
910 error {channel mode must be * or match ([-+][imnpst]+)+}
911 }
912 chandb_set $chan mode $mode
913 if {"$mode" == "*"} {
281b5f05 914 ucmdr "I won't ever change the mode of $chan." {}
534e26a9 915 } else {
281b5f05 916 ucmdr "Whenever I'm alone on $chan, I'll set the mode to $mode." {}
534e26a9 917 }
20087363
IJ
918}
919
920def_chancmd show {
921 if {[chandb_exists $chan]} {
922 set l "Settings for $chan: autojoin "
923 append l [lindex {no yes} [chandb_get $chan autojoin]]
b60b5a0f
IJ
924 append l ", mode " [chandb_get $chan mode]
925 append l ", userinvite " [chandb_get $chan userinvite] "."
20087363 926 append l "\nManagers: "
8b6ee626 927 append l [join [chandb_get $chan managers] " "]
281b5f05
IJ
928 foreach {ts sep} {see "\n" tell " "} {
929 set t [chandb_get $chan topic$ts]
930 append l $sep
931 if {[llength $t]} {
932 append l "Topic $ts list: $t."
933 } else {
934 append l "Topic $ts list is empty."
935 }
936 }
8b6ee626
IJ
937 append l "\n"
938 set t [chandb_get $chan topicset]
939 if {[string length $t]} {
940 append l "Topic to set: $t"
941 } else {
942 append l "I will not change the topic."
943 }
20087363
IJ
944 ucmdr {} $l
945 } else {
946 ucmdr {} "The channel $chan is not managed."
947 }
948}
949
cf6ea4de
IJ
950proc channelmgr_monoop {} {
951 upvar 1 dest dest
952 upvar 1 text text
953 upvar 1 n n
954 upvar 1 p p
955 upvar 1 target target
956 global chan_nicks
957
3c9af14f
IJ
958 prefix_nick
959
20087363
IJ
960 if {[ischan $dest]} { set target $dest }
961 if {[ta_anymore]} { set target [ta_word] }
962 ta_nomore
cf6ea4de 963 if {![info exists target]} {
a01859b6 964 usererror "You must specify, or invoke me on, the relevant channel."
cf6ea4de
IJ
965 }
966 if {![info exists chan_nicks([irctolower $target])]} {
a01859b6 967 usererror "I am not on $target."
cf6ea4de 968 }
20087363 969 if {![ischan $target]} { error "not a valid channel" }
3c9af14f 970
a01859b6
IJ
971 if {![chandb_exists $target]} {
972 usererror "$target is not a managed channel."
973 }
974 channel_securitycheck $target
cf6ea4de
IJ
975}
976
977def_ucmd op {
978 channelmgr_monoop
20087363
IJ
979 sendout MODE $target +o $n
980}
981
cf6ea4de
IJ
982def_ucmd leave {
983 channelmgr_monoop
984 doleave $target
985}
986
5e5be903 987def_ucmd invite {
a01859b6
IJ
988 global chan_nicks errorCode errorInfo
989 prefix_nick
5e5be903
IJ
990
991 if {[ischan $dest]} {
992 set target $dest
993 set onchan 1
994 } else {
995 set target [ta_word]
996 set onchan 0
997 }
998 set ltarget [irctolower $target]
a01859b6
IJ
999 if {![ischan $target]} { error "$target is not a channel" }
1000 if {![info exists chan_nicks($ltarget)]} {
1001 usererror "I am not on $target."
5e5be903 1002 }
a01859b6
IJ
1003 set ui [chandb_get $ltarget userinvite]
1004 if {[catch {
1005 if {"$ui" == "pub" && !$onchan} {
1006 usererror "Invitations to $target must be made there with !invite."
1007 }
1008 if {"$ui" != "all"} {
1009 if {[lsearch -exact $chan_nicks($ltarget) [irctolower $n]] < 0} {
1010 usererror "Invitations to $target may only be made\
1011 by a user on the channel."
1012 }
1013 }
1014 if {"$ui" == "none"} {
1015 usererror "Sorry, I've not been authorised\
1016 to invite people to $target."
1017 }
1018 } emsg]} {
1019 if {"$errorCode" == "BLIGHT USER" && [channel_ismanager $target $n]} {
1020 if {[catch {
1021 nick_securitycheck 1
1022 } emsg2]} {
1023 if {"$errorCode" == "BLIGHT USER"} {
1024 usererror "$emsg2 Therefore you can't use your\
1025 channel manager privilege. $emsg"
1026 } else {
1027 error $error $errorInfo $errorCode
1028 }
1029 }
1030 } else {
1031 error $emsg $errorInfo $errorCode
5e5be903 1032 }
5e5be903
IJ
1033 }
1034 if {![ta_anymore]} {
a01859b6 1035 usererror "You have to say who to invite."
5e5be903
IJ
1036 }
1037 set invitees {}
1038 while {[ta_anymore]} {
1039 set invitee [ta_word]
1040 check_nick $invitee
1041 lappend invitees $invitee
1042 }
1043 foreach invitee $invitees {
1044 sendout INVITE $invitee $ltarget
1045 }
1046 set who [lindex $invitees 0]
1047 switch -exact llength $invitees {
1048 0 { error "zero invitees" }
1049 1 { }
1050 2 { append who " and [lindex $invitees 1]" }
1051 * {
1052 set who [join [lreplace $invitees end end] ", "]
1053 append who " and [lindex $invitees [llength $invitees]]"
1054 }
1055 }
33718ee2 1056 ucmdr {} {} {} "invites $who to $target."
5e5be903
IJ
1057}
1058
20087363
IJ
1059def_ucmd channel {
1060 if {[ischan $dest]} { set target $dest }
1061 if {![ta_anymore]} {
1062 set subcmd show
1063 } else {
1064 set subcmd [ta_word]
1065 }
1066 if {[ischan $subcmd]} {
1067 set target $subcmd
1068 if {![ta_anymore]} {
1069 set subcmd show
1070 } else {
1071 set subcmd [ta_word]
1072 }
1073 }
1074 if {![info exists target]} { error "privately, you must specify a channel" }
1075 set procname channel/$subcmd
1076 if {"$subcmd" != "show"} {
a01859b6
IJ
1077 if {[catch { info body $procname }]} {
1078 usererror "unknown channel setting $subcmd."
1079 }
20087363 1080 prefix_nick
20087363 1081 if {[chandb_exists $target]} {
a01859b6 1082 channel_securitycheck $target
20087363 1083 } else {
a01859b6 1084 nick_securitycheck 1
20087363 1085 upvar #0 chan_initialop([irctolower $target]) io
534e26a9 1086 upvar #0 nick_unique([irctolower $n]) u
a01859b6
IJ
1087 if {![info exists io]} {
1088 usererror "$target is not a managed channel."
1089 }
1090 if {"$io" != "$u"} {
1091 usererror "You are not the interim manager of $target."
1092 }
1093 if {"$subcmd" != "manager"} {
1094 usererror "Please use `channel manager' first."
1095 }
20087363
IJ
1096 }
1097 }
1098 channel/$subcmd
1099}
1100
a4a1f396
IJ
1101def_ucmd who {
1102 if {[ta_anymore]} {
1103 set target [ta_word]; ta_nomore
1104 set myself 1
1105 } else {
1106 prefix_nick
1107 set target $n
1108 set myself [expr {"$target" != "$n"}]
1109 }
534e26a9
IJ
1110 set ltarget [irctolower $target]
1111 upvar #0 nick_case($ltarget) ctarget
a4a1f396 1112 set nshow $target
534e26a9
IJ
1113 if {[info exists ctarget]} {
1114 upvar #0 nick_onchans($ltarget) oc
1115 upvar #0 nick_username($ltarget) nu
1116 if {[info exists oc]} { set nshow $ctarget }
a4a1f396 1117 }
534e26a9 1118 if {![nickdb_exists $ltarget]} {
a4a1f396 1119 set ol "$nshow is not a registered nick."
20087363 1120 } elseif {[string length [set username [nickdb_get $target username]]]} {
a4a1f396
IJ
1121 set ol "The nick $nshow belongs to the user $username."
1122 } else {
1123 set ol "The nick $nshow is registered (but not to a username)."
1124 }
534e26a9 1125 if {![info exists ctarget] || ![info exists oc]} {
a4a1f396
IJ
1126 if {$myself} {
1127 append ol "\nI can't see $nshow on anywhere."
1128 } else {
1129 append ol "\nYou aren't on any channels with me."
1130 }
1131 } elseif {![info exists nu]} {
1132 append ol "\n$nshow has not identified themselves."
1133 } elseif {![info exists username]} {
1134 append ol "\n$nshow has identified themselves as the user $nu."
1135 } elseif {"$nu" != "$username"} {
1136 append ol "\nHowever, $nshow is being used by the user $nu."
1137 } else {
1138 append ol "\n$nshow has identified themselves to me."
1139 }
1140 ucmdr {} $ol
1141}
1142
7a70431a
IJ
1143def_ucmd register {
1144 prefix_nick
1145 check_notonchan
1146 set old [nickdb_exists $n]
1147 if {$old} { nick_securitycheck 0 }
534e26a9 1148 set luser [irctolower $n]
7a70431a
IJ
1149 switch -exact [string tolower [string trim $text]] {
1150 {} {
534e26a9 1151 upvar #0 nick_username($luser) nu
7a70431a
IJ
1152 if {![info exists nu]} {
1153 ucmdr {} \
a4a1f396 1154 "You must identify yourself before using `register'. See `help identify', or use `register insecure'."
7a70431a
IJ
1155 }
1156 nickdb_set $n username $nu
1157 ucmdr {} {} "makes a note of your username." {}
1158 }
1159 delete {
1160 nickdb_delete $n
1161 ucmdr {} {} "forgets your nickname." {}
1162 }
1163 insecure {
1164 nickdb_set $n username {}
1165 if {$old} {
1166 ucmdr {} "Security is now disabled for your nickname !"
1167 } else {
1168 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."
1169 }
1170 }
1171 }
11d9bff9
IJ
1172}
1173
1174proc timeformat_desc {tf} {
1175 switch -exact $tf {
86892128 1176 ks { return "Times will be displayed in seconds or kiloseconds." }
11d9bff9
IJ
1177 hms { return "Times will be displayed in hours, minutes, etc." }
1178 default { error "invalid timeformat: $v" }
1179 }
1180}
1181
1182proc def_setting {opt show_body set_body} {
1183 proc set_show/$opt {} "
1184 upvar 1 n n
1185 set opt $opt
1186 $show_body"
1187 if {![string length $set_body]} return
1188 proc set_set/$opt {} "
1189 upvar 1 n n
1190 upvar 1 text text
1191 set opt $opt
1192 $set_body"
1193}
1194
1195def_setting timeformat {
20087363 1196 set tf [nickdb_get $n timeformat]
11d9bff9
IJ
1197 return "$tf: [timeformat_desc $tf]"
1198} {
1199 set tf [string tolower [ta_word]]
1200 ta_nomore
1201 set desc [timeformat_desc $tf]
1202 nickdb_set $n timeformat $tf
1203 ucmdr {} $desc
1204}
1205
ebbae0a9
IJ
1206proc marktime_desc {mt} {
1207 if {"$mt" == "off"} {
1208 return "I will not send you periodic messages."
1209 } elseif {"$mt" == "once"} {
1210 return "I will send you one informational message when I see you."
1211 } else {
ef177383 1212 return "I'll send you a message every [showintervalsecs $mt 0]."
ebbae0a9
IJ
1213 }
1214}
1215
1216def_setting marktime {
1217 set mt [nickdb_get $n marktime]
1218 set p $mt
a4e294d4 1219 if {[string match {[0-9]*} $mt]} { append p s }
ebbae0a9
IJ
1220 append p ": "
1221 append p [marktime_desc $mt]
1222 return $p
1223} {
1224 global marktime_min
1225 set mt [string tolower [ta_word]]
1226 ta_nomore
1227
1228 if {"$mt" == "off" || "$mt" == "once"} {
1229 } elseif {[regexp {^([0-9]+)([a-z]+)$} $mt dummy value unit]} {
1230 switch -exact $unit {
1231 s { set u 1 }
1232 ks { set u 1000 }
1233 m { set u 60 }
1234 h { set u 3600 }
1235 default { error "unknown unit of time $unit" }
1236 }
1237 if {$value > 86400*21/$u} { error "marktime interval too large" }
1238 set mt [expr {$value*$u}]
1239 if {$mt < $marktime_min} { error "marktime interval too small" }
1240 } else {
1241 error "invalid syntax for marktime"
1242 }
1243 nickdb_set $n marktime $mt
1244 lnick_marktime_start [irctolower $n] "So:" 500
1245 ucmdr {} [marktime_desc $mt]
1246}
1247
11d9bff9 1248def_setting security {
20087363 1249 set s [nickdb_get $n username]
11d9bff9
IJ
1250 if {[string length $s]} {
1251 return "Your nick, $n, is controlled by the user $s."
1252 } else {
1253 return "Your nick, $n, is not secure."
1254 }
1255} {}
1256
1257def_ucmd set {
1258 prefix_nick
1259 check_notonchan
1260 if {![nickdb_exists $n]} {
d83fb8db 1261 ucmdr {} "You are unknown to me and so have no settings. (Use `register'.)"
11d9bff9
IJ
1262 }
1263 if {![ta_anymore]} {
1264 set ol {}
1265 foreach proc [lsort [info procs]] {
1266 if {![regexp {^set_show/(.*)$} $proc dummy opt]} continue
1267 lappend ol [format "%-10s %s" $opt [set_show/$opt]]
1268 }
1269 ucmdr {} [join $ol "\n"]
1270 } else {
1271 set opt [ta_word]
1272 if {[catch { info body set_show/$opt }]} {
1273 error "no setting $opt"
1274 }
1275 if {![ta_anymore]} {
1276 ucmdr {} "$opt [set_show/$opt]"
1277 } else {
86892128 1278 nick_securitycheck 0
11d9bff9
IJ
1279 if {[catch { info body set_set/$opt }]} {
1280 error "setting $opt cannot be set with `set'"
1281 }
1282 set_set/$opt
1283 }
1284 }
1285}
7a70431a 1286
4fd2739c
IJ
1287def_ucmd identpass {
1288 set username [ta_word]
d83fb8db 1289 set passmd5 [md5sum "[ta_word]\n"]
4fd2739c
IJ
1290 ta_nomore
1291 prefix_nick
11d9bff9 1292 check_notonchan
534e26a9
IJ
1293 set luser [irctolower $n]
1294 upvar #0 nick_onchans($luser) onchans
4fd2739c 1295 if {![info exists onchans] || ![llength $onchans]} {
7a70431a 1296 ucmdr "You must be on a channel with me to identify yourself." {}
4fd2739c
IJ
1297 }
1298 check_username $username
1299 exec userv --timeout 3 $username << "$passmd5\n" > /dev/null \
1300 irc-identpass $n
534e26a9 1301 upvar #0 nick_username($luser) rec_username
4fd2739c 1302 set rec_username $username
7a70431a 1303 ucmdr "Pleased to see you, $username." {}
4fd2739c
IJ
1304}
1305
1306def_ucmd summon {
1307 set target [ta_word]
1308 ta_nomore
1309 check_username $target
7ce72032
IJ
1310 prefix_nick
1311
1312 upvar #0 lastsummon($target) ls
1313 set now [clock seconds]
1314 if {[info exists ls]} {
1315 set interval [expr {$now - $ls}]
1316 if {$interval < 30} {
1317 ucmdr {} \
1318 "Please be patient; $target was summoned only [showinterval $interval]."
1319 }
1320 }
1321 regsub {^[^!]*!} $p {} path
1322 if {[catch {
1323 exec userv --timeout 3 $target irc-summon $n $path \
1324 [expr {[ischan $dest] ? "$dest" : ""}] \
1325 < /dev/null
1326 } rv]} {
1327 regsub -all "\n" $rv { / } rv
1328 error $rv
1329 }
1330 if {[regexp {^problem (.*)} $rv dummy problem]} {
8a8d337d 1331 ucmdr {} "The user `$target' $problem."
7ce72032
IJ
1332 } elseif {[regexp {^ok ([^ ]+) ([0-9]+)$} $rv dummy tty idlesince]} {
1333 set idletime [expr {$now - $idlesince}]
1334 set ls $now
1335 ucmdr {} {} {} "invites $target ($tty[expr {
ef177383 1336 $idletime > 10 ? ", idle for [showintervalsecs $idletime 0]" : ""
7ce72032
IJ
1337 }]) to [expr {
1338 [ischan $dest] ? "join us here" : "talk to you"
1339 }]."
1340 } else {
1341 error "unexpected response from userv service: $rv"
1342 }
1343}
1344
a69f7d2c
IJ
1345proc md5sum {value} { exec md5sum << $value }
1346
83dd1224 1347def_ucmd seen {
422f52e4 1348 global lastseen nick
83dd1224
IJ
1349 prefix_nick
1350 set ncase [ta_nick]
1351 set nlower [irctolower $ncase]
422f52e4 1352 ta_nomore
83dd1224
IJ
1353 set now [clock seconds]
1354 if {"$nlower" == "[irctolower $nick]"} {
a01859b6 1355 usererror "I am not self-aware."
83dd1224
IJ
1356 } elseif {![info exists lastseen($nlower)]} {
1357 set rstr "I've never seen $ncase."
422f52e4 1358 } else {
83dd1224
IJ
1359 manyset $lastseen($nlower) realnick time what
1360 set howlong [expr {$now - $time}]
1361 set string [showinterval $howlong]
1362 set rstr "I last saw $realnick $string, $what."
1363 }
1364 if {[ischan $dest]} {
1365 set where $dest
1366 } else {
1367 set where {}
1368 }
1369 upvar #0 lookedfor($nlower) lf
1370 if {[info exists lf]} { set oldvalue $lf } else { set oldvalue {} }
1371 set lf [list [list $now $n $where]]
1372 foreach v $oldvalue {
1373 if {"[irctolower [lindex $v 1]]" == "[irctolower $n]"} continue
1374 lappend lf $v
cc2d31de 1375 }
83dd1224 1376 ucmdr {} $rstr
cc2d31de
IJ
1377}
1378
ebbae0a9
IJ
1379proc lnick_marktime_cancel {luser} {
1380 upvar #0 nick_markid($luser) mi
1381 if {![info exists mi]} return
1382 catch { after cancel $mi }
1383 catch { unset mi }
1384}
1385
1386proc lnick_marktime_doafter {luser why ms} {
1387 lnick_marktime_cancel $luser
1388 upvar #0 nick_markid($luser) mi
1389 set mi [after $ms [list lnick_marktime_now $luser $why]]
1390}
1391
1392proc lnick_marktime_reset {luser} {
1393 set mt [nickdb_get $luser marktime]
1394 if {"$mt" == "off" || "$mt" == "once"} return
1395 lnick_marktime_doafter $luser "Time passes." [expr {$mt*1000}]
1396}
1397
1398proc lnick_marktime_start {luser why ms} {
1399 set mt [nickdb_get $luser marktime]
1400 if {"$mt" == "off"} {
1401 lnick_marktime_cancel $luser
1402 } else {
1403 lnick_marktime_doafter $luser $why $ms
1404 }
1405}
1406
1407proc lnick_marktime_now {luser why} {
1408 upvar #0 nick_onchans($luser) oc
93e9bcff
IJ
1409 global calling_nick
1410 set calling_nick $luser
ebbae0a9
IJ
1411 sendprivmsg $luser [lnick_pingstring $why $oc ""]
1412 lnick_marktime_reset $luser
1413}
1414
1415proc lnick_pingstring {why oc apstring} {
1416 global nick_onchans
1417 catch { exec uptime } uptime
1418 set nnicks [llength [array names nick_onchans]]
1419 if {[regexp \
1420 {^ *([0-9:apm]+) +up.*, +(\d+) users, +load average: +([0-9., ]+) *$} \
1421 $uptime dummy time users load]} {
93e9bcff 1422 regsub -all , $load {} load
ebbae0a9
IJ
1423 set uptime "$time $nnicks/$users $load"
1424 } else {
1425 append uptime ", $nnicks nicks"
1426 }
1427 if {[llength $oc]} {
1428 set best_la 0
1429 set activity quiet
1430 foreach ch $oc {
1431 upvar #0 chan_lastactivity($ch) la
1432 if {![info exists la]} continue
1433 if {$la <= $best_la} continue
ef177383
IJ
1434 set since [showintervalsecs [expr {[clock seconds]-$la}] 1]
1435 set activity "$ch $since"
ebbae0a9
IJ
1436 set best_la $la
1437 }
1438 } else {
1439 set activity unseen
1440 }
1441 set str $why
1442 append str " " $uptime " " $activity
1443 if {[string length $apstring]} { append str " " $apstring }
1444 return $str
1445}
1446
1447def_ucmd ping {
1448 if {[ischan $dest]} {
1449 set oc [irctolower $dest]
1450 } else {
1451 global nick_onchans
1452 prefix_nick
1453 set ln [irctolower $n]
1454 if {[info exists nick_onchans($ln)]} {
1455 set oc $nick_onchans($ln)
1456 } else {
1457 set oc {}
1458 }
1459 if {[llength $oc]} { lnick_marktime_reset $ln }
1460 }
1461 ucmdr {} [lnick_pingstring "Pong!" $oc $text]
1462}
1463
28c8ab78
IJ
1464proc ensure_globalsecret {} {
1465 global globalsecret
1466
1467 if {[info exists globalsecret]} return
1468 set gsfile [open /dev/urandom r]
1469 fconfigure $gsfile -translation binary
1470 set globalsecret [read $gsfile 32]
1471 binary scan $globalsecret H* globalsecret
1472 close $gsfile
1473 unset gsfile
1474}
1475
1476proc ensure_outqueue {} {
1477 out__vars
1478 if {[info exists out_queue]} return
8bf6ec5b 1479 set out_creditms 0
28c8ab78
IJ
1480 set out_creditat [clock seconds]
1481 set out_queue {}
1482 set out_lag_reported 0
1483 set out_lag_reportwhen $out_creditat
1484}
1485
1486proc fail {msg} {
1487 logerror "failing: $msg"
1488 exit 1
1489}
1490
1491proc ensure_connecting {} {
a867f547 1492 global sock ownfullname host port nick socketargs
28c8ab78
IJ
1493 global musthaveping_ms musthaveping_after
1494
1495 if {[info exists sock]} return
a867f547 1496 set sock [eval socket $socketargs [list $host $port]]
cc2d31de 1497 fconfigure $sock -buffering line
cc2d31de
IJ
1498 fconfigure $sock -translation crlf
1499
b3d361ab 1500 sendout USER blight 0 * $ownfullname
cc2d31de
IJ
1501 sendout NICK $nick
1502 fileevent $sock readable onread
28c8ab78
IJ
1503
1504 set musthaveping_after [after $musthaveping_ms \
1505 {fail "no ping within timeout"}]
cc2d31de
IJ
1506}
1507
534e26a9
IJ
1508proc connected {} {
1509 global musthaveping_after
1510
1511 after cancel $musthaveping_after
1512 unset musthaveping_after
1513
1514 foreach chan [chandb_list] {
1515 if {[chandb_get $chan autojoin]} { dojoin $chan }
1516 }
1517}
1518
28c8ab78
IJ
1519ensure_globalsecret
1520ensure_outqueue
e6cc22dc 1521loadhelp
28c8ab78 1522ensure_connecting