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