-# Core bot code
+# Actual IRC bot code
-proc defset {varname val} {
- upvar #0 $varname var
- if {![info exists var]} { set var $val }
-}
-
-# must set host
-defset port 6667
-
-defset nick testbot
-defset ownfullname "testing bot"
-defset ownmailaddr test-irc-bot@example.com
+set helpfile helpinfos
-defset musthaveping_ms 10000
-defset out_maxburst 6
-defset out_interval 2100
-defset out_lag_lag 5000
-defset out_lag_very 25000
+source irccore.tcl
+source parsecmd.tcl
+source stdhelp.tcl
defset marktime_min 300
defset marktime_join_startdelay 5000
-proc manyset {list args} {
- foreach val $list var $args {
- upvar 1 $var my
- set my $val
- }
-}
-
-proc try_except_finally {try except finally} {
- global errorInfo errorCode
- set er [catch { uplevel 1 $try } emsg]
- if {$er} {
- set ei $errorInfo
- set ec $errorCode
- if {[catch { uplevel 1 $except } emsg3]} {
- append ei "\nALSO ERROR HANDLING ERROR:\n$emsg3"
- }
- }
- set er2 [catch { uplevel 1 $finally } emsg2]
- if {$er} {
- if {$er2} {
- append ei "\nALSO ERROR CLEANING UP:\n$emsg2"
- }
- return -code $er -errorinfo $ei -errorcode $ec $emsg
- } elseif {$er2} {
- return -code $er2 -errorinfo $errorInfo -errorcode $errorCode $emsg2
- } else {
- return $emsg
- }
-}
-
-proc usererror {emsg} { error $emsg {} {BLIGHT USER} }
-
-proc out__vars {} {
- uplevel 1 {
- global out_queue out_creditms out_creditat out_interval out_maxburst
- global out_lag_lag out_lag_very
-#set pr [lindex [info level 0] 0]
-#puts $pr>[clock seconds]|$out_creditat|$out_creditms|[llength $out_queue]<
- }
-}
-
-proc out_lagged {} {
- out__vars
- if {[llength $out_queue]*$out_interval > $out_lag_very} {
- return 2
- } elseif {[llength $out_queue]*$out_interval > $out_lag_lag} {
- return 1
- } else {
+proc privmsg_unlogged {prefix ischan params} {
+ if {!$ischan ||
+ [regexp {^![a-z][-a-z]*[a-z]( .*)?$} [lindex $params 1]]} {
return 0
}
-}
-
-proc out_restart {} {
- out__vars
-
- set now [clock seconds]
- incr out_creditms [expr {($now - $out_creditat) * 1000}]
- set out_creditat $now
- if {$out_creditms > $out_maxburst*$out_interval} {
- set out_creditms [expr {$out_maxburst*$out_interval}]
- }
- out_runqueue $now
-}
-
-proc out_runqueue {now} {
- global sock
- out__vars
-
- while {[llength $out_queue] && $out_creditms >= $out_interval} {
-#puts rq>$now|$out_creditat|$out_creditms|[llength $out_queue]<
- manyset [lindex $out_queue 0] orgwhen msg
- set out_queue [lrange $out_queue 1 end]
- if {[llength $out_queue]} {
- append orgwhen "+[expr {$now - $orgwhen}]"
- append orgwhen "([llength $out_queue])"
- }
- puts "$orgwhen -> $msg"
- puts $sock $msg
- incr out_creditms -$out_interval
- }
- if {[llength $out_queue]} {
- after $out_interval out_nextmessage
- }
-}
-
-proc out_nextmessage {} {
- out__vars
- set now [clock seconds]
- incr out_creditms $out_interval
- set out_creditat $now
- out_runqueue $now
-}
-
-proc sendout_priority {priority command args} {
- global sock out_queue
- if {[llength $args]} {
- set la [lindex $args end]
- set args [lreplace $args end end]
- foreach i $args {
- if {[regexp {[: ]} $i]} {
- error "bad argument in output $i ($command $args)"
- }
- }
- lappend args :$la
- }
- set args [lreplace $args 0 -1 $command]
- set string [join $args { }]
- set now [clock seconds]
- set newe [list $now $string]
- if {$priority} {
- set out_queue [concat [list $newe] $out_queue]
- } else {
- lappend out_queue $newe
- }
- if {[llength $out_queue] == 1} {
- out_restart
- }
-}
-
-proc sendout {command args} { eval sendout_priority [list 0 $command] $args }
-
-proc log {data} {
- puts $data
-}
-
-proc logerror {data} {
- log $data
-}
-
-proc saveeic {} {
- global saveei saveec errorInfo errorCode
-
- set saveei $errorInfo
- set saveec $errorCode
-
- puts ">$saveec|$saveei<"
-}
-
-proc bgerror {msg} {
- global save
- logerror $msg
- saveeic
-}
-
-proc onread {args} {
- global sock nick calling_nick errorInfo errorCode
-
- if {[gets $sock line] == -1} { fail "EOF/error on input" }
- regsub -all "\[^ -\176\240-\376\]" $line ? line
- set org $line
-
- set ei $errorInfo
- set ec $errorCode
- catch { unset calling_nick }
- set errorInfo $ei
- set errorCode $ec
-
- if {[regexp -nocase {^:([^ ]+) (.*)} $line dummy prefix remain]} {
- set line $remain
- if {[regexp {^([^!]+)!} $prefix dummy maybenick]} {
- set calling_nick $maybenick
- if {"[irctolower $maybenick]" == "[irctolower $nick]"} return
- }
- } else {
- set prefix {}
- }
- if {![string length $line]} { return }
- if {![regexp -nocase {^([0-9a-z]+) *(.*)} $line dummy command line]} {
- log "bad command: $org"
- return
- }
- set command [string toupper $command]
- set params {}
- while {[regexp {^([^ :]+) *(.*)} $line dummy thisword line]} {
- lappend params $thisword
- }
- if {[regexp {^:(.*)} $line dummy thisword]} {
- lappend params $thisword
- } elseif {[string length $line]} {
- log "junk at end: $org"
- return
- }
- if {"$command" == "PRIVMSG" &&
- [regexp {^[&#+!]} [lindex $params 0]] &&
- ![regexp {^![a-z][-a-z]*[a-z]( .*)?$} [lindex $params 1]]} {
- # on-channel message, ignore
- set chan [lindex $params 0]
- upvar #0 chan_lastactivity([irctolower $chan]) la
- set la [clock seconds]
- catch { recordlastseen_p $prefix "talking on $chan" 1 }
- return
- }
- log "[clock seconds] <- $org"
- set procname msg_$command
- if {[catch { info body $procname }]} { return }
- if {[catch {
- eval [list $procname $prefix $command] $params
- } emsg]} {
- logerror "error: $emsg ($prefix $command $params)"
- saveeic
- }
-}
-
-proc sendprivmsg {dest l} {
- foreach v [split $l "\n"] {
- sendout [expr {[ischan $dest] ? "PRIVMSG" : "NOTICE"}] $dest $v
- }
-}
-proc sendaction_priority {priority dest what} {
- sendout_priority $priority PRIVMSG $dest "\001ACTION $what\001"
-}
-proc msendprivmsg {dest ll} { foreach l $ll { sendprivmsg $dest $l } }
-proc msendprivmsg_delayed {delay dest ll} { after $delay [list msendprivmsg $dest $ll] }
-
-proc prefix_none {} {
- upvar 1 p p
- if {[string length $p]} { error "prefix specified" }
-}
-
-proc msg_PING {p c s1} {
- global musthaveping_after
- prefix_none
- sendout PONG $s1
- if {[info exists musthaveping_after]} connected
-}
-
-proc check_nick {n} {
- if {[regexp -nocase {[^][\\`_^{|}a-z0-9-]} $n]} { error "bad char in nick" }
- if {[regexp {^[-0-9]} $n]} { error "bad nick start" }
-}
-
-proc ischan {dest} {
- return [regexp {^[&#+!]} $dest]
-}
-
-proc irctolower {v} {
- foreach {from to} [list "\\\[" "{" \
- "\\\]" "}" \
- "\\\\" "|" \
- "~" "^"] {
- regsub -all $from $v $to v
- }
- return [string tolower $v]
-}
-
-proc prefix_nick {} {
- global nick
- upvar 1 p p
- upvar 1 n n
- if {![regexp {^([^!]+)!} $p dummy n]} { error "not from nick" }
- check_nick $n
- if {"[irctolower $n]" == "[irctolower $nick]"} {
- error "from myself" {} {}
- }
+ # on-channel message, ignore
+ set chan [lindex $params 0]
+ upvar #0 chan_lastactivity([irctolower $chan]) la
+ set la [clock seconds]
+ catch_logged { recordlastseen_p $prefix "talking on $chan" 2 }
+ return 1
}
proc showintervalsecs {howlong abbrev} {
return [showinterval [expr {[clock seconds] - $when}]]
}
+proc parse_interval {specified min} {
+ if {![regexp {^([0-9]+)([a-z]+)$} $specified dummy value unit]} {
+ error "invalid syntax for interval"
+ }
+ switch -exact $unit {
+ s { set u 1 }
+ ks { set u 1000 }
+ m { set u 60 }
+ h { set u 3600 }
+ default { error "unknown unit of time $unit" }
+ }
+ if {$value > 86400*21/$u} { error "interval too large" }
+ set result [expr {$value*$u}]
+ if {$result < $min} { error "interval too small (<${min}s)" }
+ return $result
+}
+
proc def_msgproc {name argl body} {
proc msg_$name "varbase $argl" "\
upvar #0 msg/\$varbase/dest d\n\
return $str
}
+proc tell_event {nl event} {
+ # For `act' we *haven't* yet done the 750ms delay; we implement
+ # that here. Also, here we turn `talk' into `talk' now and `act'
+ # later. We also support the psuedo-event `none'. The del msg
+ # and new msg events are handled by the command procedures, not here.
+ global calling_nick
+ if {[info exists calling_nick]} { set save $calling_nick }
+ switch -exact $event {
+ none { }
+ talk {
+ tell_event_core $nl talk
+ tell_event $nl act
+ }
+ act {
+ after 750 [list tell_event_core $nl $event]
+ }
+ ident - msgsarrive {
+ tell_event_core $nl $event
+ }
+ default {
+ error "tell_event $nl $event"
+ }
+ }
+ if {[info exists save]} { set calling_nick $save }
+}
+
+proc tell_getcstate {} {
+ # uses nl from caller's context
+ # imports telling (as the nick_telling) and u
+ # sets stt, telling_when
+ uplevel 1 {
+ upvar #0 nick_telling($nl) telling
+ upvar #0 nick_unique($nl) u
+
+ if {[info exists telling]} {
+ manyset $telling u_last stt telling_when
+ if {![info exists u] || "$u_last" != "$u"} {
+ unset telling; unset stt; unset telling_when
+ }
+ }
+
+ if {![info exists stt]} {
+ set stt norecord
+ set telling_when $now
+ }
+ }
+}
+
+proc tell_event_core {nl event} {
+ # event is `talk', `act', `ident' or `msgsarrive'
+ # When user talks we actually get talk now and act later
+ global calling_nick
+ set calling_nick $nl
+ set iml [msgsdb_get $nl inbound]
+ if {![llength $iml]} return
+
+ set ago [expr {$now - $telling_when}]
+
+ # Now we have the components of a telling state
+ # u - nick_unique (unset if not visible)
+ # stt - state: norecord, mentioned, passede
+ # ago - how long ago since we did anything
+
+ # We compute an evstate to dispatch on as follows:
+
+ # evstate is string of letters
+ # current state
+ # n NORECORD (MESSAGES)
+ # m MENTIONED
+ # p PASSED
+ # event
+ # t talk
+ # a act
+ # i ident
+ # m msgsarrive
+ # security level and timing
+ # ii Insecure
+ # ss Secure and soon (before interval)
+ # sl Secure and late (after interval)
+ # current identification
+ # i Identified
+ # u Unidentified
+ # reliability and timing
+ # uu Unreliable
+ # rv Remind, very soon (before within-interval)
+ # rs Remind, soon (between)
+ # rl Remind, late (after every-interval)
+ # ps Pester, soon (before interval)
+ # pl Pester, late (after interval)
+
+ set evstate {}
+
+ append evstate [string range $stt 0 0]
+ append evstate [string range $event 0 0]
+
+ manyset [tell_effective_sec $n] sec secwhen
+ switch -exact $sec {
+ insecure { append evstate ii }
+ secure { append evstate [expr {$ago<$secwhen ? "sl" : "ss"}] }
+ default { append evstate "#$sec#" }
+ }
+
+ upvar #0 nick_username($nl) nu
+ if {[info exists nu] && "$nu" == "[nickdb_get $nl username]"} {
+ append evstate i
+ } else {
+ append evstate u
+ }
+
+ manyset [nickdb_set $n tellrel] rel relint relwithin
+ switch -exact $rel {
+ unreliable { append evstate uu }
+ remind { append evstate [expr {
+ $ago<$relwithin ? "rv" : $ago<$relint ? "rs" : "rl"
+ }]}
+ pester { append evstate [expr {$ago<$relint ? "ps" : "pl"}] }
+ default { append evstate "#$rel#" }
+ }
+
+ switch -glob $evstate {
+ pt???rv {
+ # consider delivered:
+ # (very recently passed, and the user talks)
+ tell_delete_msgs {} $nl
+ return
+ }
+ pm????? {
+ # oops, messages passed are now out of date
+ catch { unset telling }
+ return
+ }
+ ?m????? {
+ # ignore new msgs if we haven't passed yet
+ return
+ }
+ nt????? - mt????? -
+ pt???uu - pt???rs - pt???rl - pt???p? {
+ # ignore (any other `talk's) - act handles these
+ return
+ }
+ ni????? - naii??? - nas?i?? - mi????? - pa????l {
+ # pass and then stuff
+ if {[length $iml] == 3} {
+ manyset $iml sender sentwhen msg
+ sendprivmsg $nl \
+ "$sender asked me [showintervalsecs [expr {$now-$sentwhen}] 0]\
+ to tell you: $msg"
+ } else {
+ sendprivmsg $nl \
+ "Here are the [expr {[llength $iml]/3}] messages there are for you:"
+ while {[llength $iml] >= 3} {
+ manyset [lrange $iml 0 2] sender sentwhen msg
+ set iml [lrange $iml 3 end]
+ sendprivmsg $nl \
+ " [showintervalsecs [expr {$now-$sentwhen}] 1] <$sender> $msg"
+ }
+ }
+ if {"$rel" == "unreliable"} {
+ tell_delete_msgs {} $nl
+ return
+ }
+ set stt passed
+ }
+ nas?u?? {
+ sendprivmsg $nl {You have messages (so identify yourself please).}]
+ set stt mentioned
+ }
+ masl??? {
+ sendprivmsg $nl {Don't forget about your messages.}]
+ }
+ pi????? {
+ return
+ }
+ mass??? - pa????v - pa????s {
+ # too soon
+ return
+ }
+ * {
+ error "tell_event_core nl=$nl evstate=$evstate ?"
+ }
+ }
+ if {![info exists u]} {
+ catch { unset telling }
+ } else {
+ set telling [list $u $stt $now]
+ }
+}
+
proc recordlastseen_n {n how here} {
+ # here is:
+ # 0 - nick was seen leaving (or changing to another nicks or some such)
+ # 1 - nick was seen doing something else
+ # 2 - nick was seen talking on channel
global lastseen lookedfor
- set lastseen([irctolower $n]) [list $n [clock seconds] $how]
+ set nl [irctolower $n]
+ set now [clock seconds]
+ set lastseen($nl) [list $n $now $how]
+
if {!$here} return
- upvar #0 lookedfor([irctolower $n]) lf
+
+ tell_event $nl [lindex {none act talk} $here]
+
+ upvar #0 lookedfor($nl) lf
if {[info exists lf]} {
switch -exact [llength $lf] {
0 {
} else {
set chan_initialop([irctolower $chan]) $u
sendprivmsg $n \
- "Thanks. You can use `channel manager ...' to register this channel."
+ "Thanks. You can use `channel manager ...' to register this channel."
if {![nickdb_exists $n] || ![string length [nickdb_get $n username]]} {
sendprivmsg $n \
"(But to do that you must register your nick securely first.)"
set nick_arys {onchans username unique}
# nick_onchans($luser) -> [list ... $lchan ...]
# nick_username($luser) -> <securely known local username>
-# nick_unique($luser) -> <counter>
+# nick_unique($luser) -> <includes-counter>
# nick_case($luser) -> $user (valid even if no longer visible)
# nick_markid($luser) -> <after id for marktime>
+# nick_telling($luser) -> <unique> mentioned|passed <when>
# chan_nicks($lchan) -> [list ... $luser ...]
# chan_lastactivity($lchan) -> [clock seconds]
}
proc msg_NICK {p c newnick} {
- global nick_arys nick_case
+ global nick_arys nick_case calling_nick
prefix_nick
recordlastseen_n $n "changing nicks to $newnick" 0
+ set calling_nick $newnick
recordlastseen_n $newnick "changing nicks from $n" 1
set luser [irctolower $n]
lnick_marktime_cancel $luser
set nlist [grep tn {"$tn" != "$luser"} $nlist]
lappend nlist $lusernew
}
- lnick_marktime_start $lusernew "Hi." 500
+ lnick_marktime_start $lusernew "Hi." 500 1
nick_case $newnick
}
proc msg_JOIN {p c chan} {
prefix_nick
+ nick_ishere $n
recordlastseen_n $n "joining $chan" 1
set nl [irctolower $n]
set lchan [irctolower $chan]
upvar #0 chan_nicks($lchan) nlist
if {![info exists oc]} {
global marktime_join_startdelay
- lnick_marktime_start $nl "Welcome." $marktime_join_startdelay
+ lnick_marktime_start $nl "Welcome." $marktime_join_startdelay 1
}
lappend oc $lchan
lappend nlist $nl
- nick_ishere $n
}
-proc msg_PART {p c chan} {
+proc msg_PART {p c chan args} {
prefix_nick
- recordlastseen_n $n "leaving $chan" 1
+ set msg "leaving $chan"
+ if {[llength $args]} {
+ set why [lindex $args 0]
+ if {"[irctolower $why]" != "[irctolower $n]"} { append msg " ($why)" }
+ }
+ recordlastseen_n $n $msg 1
process_kickpart $chan $n
}
proc msg_QUIT {p c why} {
}
nick_case $n
- if {[catch {
- regsub {^! *} $text {} text
- set ucmd [ta_word]
- set procname ucmd/[string tolower $ucmd]
- if {[catch { info body $procname }]} {
- usererror "Unknown command; try help for help."
- }
- $procname $p $dest
- } rv]} {
- if {"$errorCode" != "BLIGHT USER"} { set rv "error: $rv" }
- sendprivmsg $n $rv
- } else {
- manyset $rv priv_msgs pub_msgs priv_acts pub_acts
- foreach {td val} [list $n $priv_acts $output $pub_acts] {
- foreach l [split $val "\n"] {
- sendaction_priority 0 $td $l
- }
- }
- foreach {td val} [list $n $priv_msgs $output $pub_msgs] {
- foreach l [split $val "\n"] {
- sendprivmsg $td $l
- }
- }
- }
+ execute_usercommand $p $c $n $output $dest $text
}
proc msg_INVITE {p c n chan} {
unset names_chans
}
-proc ta_anymore {} {
- upvar 1 text text
- return [expr {!![string length $text]}]
-}
-
-proc ta_nomore {} {
- upvar 1 text text
- if {[string length $text]} { error "too many parameters" }
-}
-
-proc ta_word {} {
- upvar 1 text text
- if {![regexp {^([^ ]+) *(.*)} $text dummy firstword text]} {
- error "too few parameters"
- }
- return $firstword
-}
-
-proc ta_nick {} {
- upvar 1 text text
- set v [ta_word]
- check_nick $v
- return $v
-}
-
-proc def_ucmd {cmdname body} {
- proc ucmd/$cmdname {p dest} " upvar 1 text text\n$body"
-}
-
-proc ucmdr {priv pub args} {
- return -code return [concat [list $priv $pub] $args]
-}
-
-proc loadhelp {} {
- global help_topics errorInfo
-
- catch { unset help_topics }
- set f [open helpinfos r]
- try_except_finally {
- set lno 0
- while {[gets $f l] >= 0} {
- incr lno
- if {[regexp {^#.*} $l]} {
- } elseif {[regexp {^ *$} $l]} {
- if {[info exists topic]} {
- set help_topics($topic) [join $lines "\n"]
- unset topic
- unset lines
- }
- } elseif {[regexp {^\:\:} $l]} {
- } elseif {[regexp {^\:([-+._0-9a-z]*)$} $l dummy newtopic]} {
- if {[info exists topic]} {
- error "help $newtopic while in $topic"
- }
- set topic $newtopic
- set lines {}
- } elseif {[regexp {^[^:#]} $l]} {
- set topic
- regsub -all {([^\\])\!\$?} _$l {\1} l
- regsub -all {\\(.)} $l {\1} l
- regsub {^_} $l {} l
- lappend lines [string trimright $l]
- } else {
- error "eh ? $lno: $l"
- }
- }
- if {[info exists topic]} { error "unfinished topic $topic" }
- } {
- set errorInfo "in helpinfos line $lno\n$errorInfo"
- } {
- close $f
- }
-}
-
-def_ucmd help {
- upvar 1 n n
-
- set topic [irctolower [string trim $text]]
- if {[string length $topic]} {
- set ontopic " on `$topic'"
- } else {
- set ontopic ""
- }
- if {[set lag [out_lagged]]} {
- if {[ischan $dest]} { set replyto $dest } else { set replyto $n }
- if {$lag > 1} {
- sendaction_priority 1 $replyto \
- "is very lagged. Please ask for help$ontopic again later."
- ucmdr {} {}
- } else {
- sendaction_priority 1 $replyto \
- "is lagged. Your help$ontopic will arrive shortly ..."
- }
- }
-
- upvar #0 help_topics($topic) info
- if {![info exists info]} { ucmdr "No help on $topic, sorry." {} }
- ucmdr $info {}
-}
-
-def_ucmd ? {
- global help_topics
- ucmdr $help_topics() {}
-}
-
proc check_username {target} {
if {
[string length $target] > 8 ||
}
proc def_somedb {name arglist body} {
- foreach {nickchan fprefix} {nick users/n chan chans/c} {
+ foreach {nickchan fprefix} {
+ nick users/n
+ chan chans/c
+ msgs users/m
+ } {
proc ${nickchan}db_$name $arglist \
"set nickchan $nickchan; set fprefix $fprefix; $body"
}
file delete $idfn
}
-set default_settings_nick {timeformat ks marktime off}
+set default_settings_nick {
+ timeformat ks
+ marktime off
+ tellsec {secure 600}
+ tellrel {remind 3600 30}
+}
+
set default_settings_chan {
autojoin 1
mode *
topictell {}
}
+set default_settings_msgs {
+ inbound {}
+ outbound {}
+}
+# inbound -> [<nick> <time_t> <message>] ...
+# outbound -> [<nick> <time_t(earliest)> <count>] ...
+# neither are sorted particularly; only one entry per recipient in
+# output; both sender and recipient are cased
+
def_somedb_id set {args} {
upvar #0 default_settings_$nickchan def
if {![info exists iddbe]} { set iddbe $def }
channel/$subcmd
}
+proc tell_effective_sec {n} {
+ set l [nickdb_get $n tellsec]
+ set u [nickdb_get $n username]
+ if {"[lindex $l 0]" == "secure" && ![string length $u]} { set l insecure }
+ return $l
+}
+
+proc tell_peernicks {text} {
+ set text [irctolower [string trim $text]]
+ set senders [split $text " "]
+ foreach sender $senders {
+ if {[catch { check_nick $sender } emsg]} {
+ error "invalid sender nick `$sender': $emsg" $errorInfo $errorCode
+ }
+ }
+ return $senders
+}
+
+proc msgsdb_set_maydelete {n key l otherkey} {
+ msgsdb_set $n $key $l
+ if {[llength $l]} return
+ if {[llength [msgsdb_get $n $otherkey]]} return
+ msgsdb_delete $n
+}
+
+proc tell_delete_msgs {lsenders lrecip} {
+ set ninbound {}
+ set ndel 0
+ foreach {s t m} [msgsdb_get $recip inbound] {
+ if {[llength $senders]} {
+ if {[lsearch -exact $senders [irctolower $s]] == -1} {
+ lappend ninbound $s $t $m
+ continue
+ }
+ }
+ set rsenders($s) 1
+ incr ndel
+ }
+ msgsdb_set_maydelete $recip inbound $ninbound outbound
+ if {![llength $ninbound]} {
+ upvar #0 nick_telling($lrecip) telling
+ catch { unset telling }
+ }
+ foreach s [array names rsenders] {
+ set noutbound {}
+ foreach {r t c} [msgsdb_get $s outbound] {
+ if {"[irctolower $r]" == "$lrecip"} continue
+ lappend noutbound $r $t $c
+ }
+ msgsdb_set_maydelete $s outbound $noutbound inbound
+ }
+ return $ndel
+}
+
+def_ucmd untell {
+ prefix_nick
+ check_notonchan
+ nick_securitycheck 0
+ set recipients [tell_peernicks $text]
+ if {![llength $recipients]} {
+ usererror "You must say which recipients' messages from you to forget."
+ }
+ set ndel 0
+ foreach recip $recipients {
+ incr ndel [tell_delete_msgs [irctolower $n] $recip]
+ }
+ ucmdr "Removed $ndel as yet undelivered message(s)." {}
+}
+
+def_ucmd delmsg {
+ global errorInfo errorCode
+ prefix_nick
+ set nl [irctolower $n]
+ check_notonchan
+ manyset [tell_effective_sec $n] sec secwhen
+ switch -exact $sec {
+ insecure { }
+ refuse - mailto {
+ usererror \
+ "There are no messages to delete\
+ because your message disposition prevents them from being left."
+ }
+ secure {
+ nick_securitycheck 1
+ }
+ default {
+ error "delmsg sec $sec"
+ }
+ }
+ tell_getcstate
+ if {"$stt" != "passed"} {
+ usererror \
+ "There are message(s) you've not yet seen; I'll deliver them to you now.\
+ If you actually want to delete them, just tell me `delmsg' again."
+ }
+ set senders [tell_peernicks $text]
+ set ndel [tell_delete_msgs [irctolower $senders] [irctolower $n]]
+ if {!$ndel} {
+ if {[llength $senders]} {
+ ucmdr "No relevant incoming messages to delete." {}
+ } else {
+ ucmdr "No incoming messages to delete." {}
+ }
+ }
+ switch -exact [llength $senders] {
+ 0 { ucmdr {} {} "deletes your $ndel message(s)." }
+ 1 { ucmdr {} {} "deletes your $ndel message(s) from $senders." }
+ default {
+ ucmdr {} {} "deletes your $ndel message(s) from\
+ [lreplace $senders end end] and [lindex $senders end]."
+ }
+ }
+}
+
+def_ucmd tell {
+ global nick_case ownmailaddr ownfullname
+
+ prefix_nick
+ set target [ta_word]
+ if {![string length $text]} { error "tell them what?" }
+ if {[string length $text] > 400} { error "message too long" }
+
+ set ltarget [irctolower $target]
+ set ctarget $target
+ if {[info exists nick_case($ltarget)]} { set ctarget $nick_case($ltarget) }
+
+ manyset [tell_effective_sec $target] sec mailtoint mailwhy
+ manyset [nickdb_get $target tellrel] rel relint relwithin
+ switch -exact $sec {
+ insecure - secure {
+ set now [clock seconds]
+ set inbound [msgsdb_get $ltarget inbound]
+ lappend inbound $n $now $text
+ msgsdb_set $ltarget inbound $inbound
+
+ set outbound [msgsdb_get $n outbound]
+ set noutbound {}
+ set found 0
+ foreach {recip time count} $outbound {
+ if {"[irctolower $recip]" == "$ltarget"} {
+ incr count
+ set recip $ctarget
+ set found 1
+ }
+ lappend noutbound $recip $time $count
+ }
+ if {!$found} {
+ lappend noutbound $ctarget $now 1
+ }
+ msgsdb_set $n outbound $noutbound
+ set msg "OK, I'll tell $ctarget"
+ if {$found} { append msg " that too" }
+ append msg ", "
+ if {"$sec" != "secure"} {
+ switch -exact $rel {
+ unreliable { append msg "neither reliably nor securely" }
+ remind { append msg "pretty reliably, but not securely" }
+ pester { append msg "reliably but not securely" }
+ }
+ } else {
+ switch -exact $rel {
+ unreliable { append msg "securely but not reliably" }
+ remind { append msg "securely and pretty reliably" }
+ pester { append msg "reliably and securely" }
+ }
+ }
+ append msg .
+ tell_event $ltarget msgsarrive
+ ucmdr $msg {}
+ }
+ mailto {
+ set fmtmsg [exec fmt << " $text"]
+ exec /usr/sbin/sendmail -odb -oi -t -oee -f $mailwhy \
+ > /dev/null << \
+ "From: $ownmailaddr ($ownfullname)
+To: $mailtoint
+Subject: IRC tell from $n
+
+$n asked me[expr {[ischan $dest] ? " on $dest" : ""}] to tell you:
+[exec fmt << " $text"]
+
+(This message was for your nick $ctarget; your account $mailwhy
+ arranged for it to be forwarded to $mailtoint.)
+"
+ ucmdr \
+ "I've mailed $ctarget, which is what they prefer." \
+ {}
+ }
+ refuse {
+ usererror "Sorry, $ctarget does not want me to take messages."
+ }
+ default {
+ error "bad tellsec $sec"
+ }
+ }
+}
+
def_ucmd who {
if {[ta_anymore]} {
set target [ta_word]; ta_nomore
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."
}
}
+ default {
+ error "you mean register / register delete / register insecure"
+ }
}
}
}
}
+set settings {}
proc def_setting {opt show_body set_body} {
+ global settings
+ lappend settings $opt
proc set_show/$opt {} "
upvar 1 n n
set opt $opt
$set_body"
}
+proc tellme_sec_desc {v n} {
+ manyset $v sec mailtoint
+ switch -exact $sec {
+ insecure {
+ return "I'll tell you your messages whenever I see you."
+ }
+ secure {
+ if {[string length [nickdb_get $n username]]} {
+ return \
+ "I'll keep the bodies of your messages private until you identify yourself, reminding you every [showintervalsecs $mailtoint 1]."
+ } else {
+ return \
+ "I'll tell you your messages whenever I see you.\
+ (Secure message delivery is enabled, but your nick is not registered\
+ securely. See `help register'.)"
+ }
+ }
+ refuse {
+ return "I shan't accept messages for you."
+ }
+ mailto {
+ return "I'll forward your messages by email to $mailtoint."
+ }
+ default {
+ error "bad tellsec $sec"
+ }
+ }
+}
+
+proc tellme_rel_desc {v} {
+ manyset $v rel every within
+ switch -exact $rel {
+ unreliable {
+ return "As soon as I've told you, I'll forget the message - note that this means messages can get lost !"
+ }
+ pester {
+ set u {}
+ }
+ remind {
+ set u ", or talk on channel within [showintervalsecs $within 1] of me having told you"
+ }
+ default {
+ error "bad tellrel $rel"
+ }
+ }
+ return "I'll remind you every [showintervalsecs $every 1] until you say delmsg$u."
+}
+
def_setting timeformat {
set tf [nickdb_get $n timeformat]
return "$tf: [timeformat_desc $tf]"
ta_nomore
if {"$mt" == "off" || "$mt" == "once"} {
- } elseif {[regexp {^([0-9]+)([a-z]+)$} $mt dummy value unit]} {
- switch -exact $unit {
- s { set u 1 }
- ks { set u 1000 }
- m { set u 60 }
- h { set u 3600 }
- default { error "unknown unit of time $unit" }
- }
- if {$value > 86400*21/$u} { error "marktime interval too large" }
- set mt [expr {$value*$u}]
- if {$mt < $marktime_min} { error "marktime interval too small" }
} else {
- error "invalid syntax for marktime"
+ set mt [parse_interval $mt $marktime_min]
}
nickdb_set $n marktime $mt
- lnick_marktime_start [irctolower $n] "So:" 500
+ lnick_marktime_start [irctolower $n] "So:" 500 0
ucmdr {} [marktime_desc $mt]
}
}
} {}
+proc tellme_setting_sec_simple {} {
+ uplevel 1 {
+ ta_nomore
+ set sr sec
+ set v $setting
+ }
+}
+
+proc tellme_setting_neednomsgs {} {
+ uplevel 1 {
+ if {[llength [msgsdb_get $n inbound]]} {
+ usererror "You must delete the messages you have, first."
+ }
+ }
+}
+
+def_setting tellme {
+ set secv [nickdb_get $n tellsec]
+ set ms [tellme_sec_desc $secv $n]
+ manyset $secv sec
+ switch -exact $sec {
+ insecure - secure {
+ set mr [tellme_rel_desc [nickdb_get $n tellrel]]
+ return "$ms $mr"
+ }
+ refuse - mailto {
+ return $ms
+ }
+ }
+} {
+ set setting [string tolower [ta_word]]
+ switch -exact $setting {
+ insecure {
+ tellme_setting_sec_simple
+ }
+ secure {
+ set every [ta_interval_optional 60 600]
+ ta_nomore
+ set sr sec
+ set v [list secure $every]
+ }
+ refuse {
+ telling_setting_neednomsgs
+ telling_setting_sec_simple
+ }
+ mailto {
+ telling_setting_neednomsgs
+ set u [nickdb_get $n username]
+ if {[string length $u]} {
+ usererror \
+ "Sorry, you must register securely to have your messages mailed\
+ (to prevent the use of this feature for spamming). See `help register'."
+ }
+ set sr sec
+ set v [list mailto [ta_word] $u]
+ }
+ unreliable - pester - remind {
+ manyset [nickdb_get $n tellsec] sec
+ switch -exact $sec {
+ refuse - mailto {
+ usererror \
+ "You can't change your message delivery conditions when\
+ your message disposition prevents messages from being left."
+ }
+ }
+ set sr rel
+ set v $setting
+ if {"$setting" != "unreliable"} {
+ set every [parse_interval_optional 300 3600]
+ lappend v $every
+ }
+ if {"$setting" == "remind"} {
+ set within [ta_interval_optional 5 30]
+ if {$within > $every} {
+ error "remind interval must be at least time to respond"
+ }
+ lappend v $within
+ }
+ ta_nomore
+ }
+ default {
+ error "invalid tellme setting $setting"
+ }
+ }
+ nickdb_set $n tell$sr $v
+ ucmdr [tellme_${sr}_desc $v] {}
+}
+
+proc lnick_checktold {luser} {
+ set ml [msgsdb_get $luser outbound]
+ if {![llength $ml]} return
+ set is1 [expr {[llength $ml]==3}]
+ set m1 "FYI, I haven't yet passed on your"
+ set ol {}
+ set now [clock seconds]
+ while {[llength $ml]} {
+ manyset $ml r t n
+ set ml [lreplace $ml 0 2]
+ set td [expr {$now-$t}]
+ if {$n == 1} {
+ set iv [showinterval $td]
+ set ifo "$r, $iv"
+ set if1 "message to $r, $iv."
+ } else {
+ set iv [showintervalsecs $td 0]
+ set ifo "$r, $n messages, oldest $iv"
+ set if1 "$n messages to $r, oldest $iv."
+ }
+ if {$is1} {
+ sendprivmsg $luser "$m1 $if1"
+ return
+ } else {
+ lappend ol " to $ifo[expr {[llength $ml] ? ";" : "."}]"
+ }
+ }
+ sendprivmsg $luser "$m1 messages:"
+ msendprivmsg $luser $ol
+}
+
def_ucmd set {
+ global settings
prefix_nick
check_notonchan
if {![nickdb_exists $n]} {
}
if {![ta_anymore]} {
set ol {}
- foreach proc [lsort [info procs]] {
- if {![regexp {^set_show/(.*)$} $proc dummy opt]} continue
+ foreach opt $settings {
lappend ol [format "%-10s %s" $opt [set_show/$opt]]
}
ucmdr {} [join $ol "\n"]
error "no setting $opt"
}
if {![ta_anymore]} {
- ucmdr {} "$opt [set_show/$opt]"
+ ucmdr {} "$opt: [set_show/$opt]"
} else {
nick_securitycheck 0
if {[catch { info body set_set/$opt }]} {
upvar #0 nick_username($luser) rec_username
set rec_username $username
ucmdr "Pleased to see you, $username." {}
+ tell_event $luser ident
}
def_ucmd summon {
catch { unset mi }
}
-proc lnick_marktime_doafter {luser why ms} {
+proc lnick_marktime_doafter {luser why ms mentiontold} {
lnick_marktime_cancel $luser
upvar #0 nick_markid($luser) mi
- set mi [after $ms [list lnick_marktime_now $luser $why]]
+ set mi [after $ms [list lnick_marktime_now $luser $why 0]]
}
proc lnick_marktime_reset {luser} {
set mt [nickdb_get $luser marktime]
if {"$mt" == "off" || "$mt" == "once"} return
- lnick_marktime_doafter $luser "Time passes." [expr {$mt*1000}]
+ lnick_marktime_doafter $luser "Time passes." [expr {$mt*1000}] 0
}
-proc lnick_marktime_start {luser why ms} {
+proc lnick_marktime_start {luser why ms mentiontold} {
set mt [nickdb_get $luser marktime]
if {"$mt" == "off"} {
lnick_marktime_cancel $luser
+ if {$mentiontold} { after $ms [list lnick_checktold $luser] }
} else {
- lnick_marktime_doafter $luser $why $ms
+ lnick_marktime_doafter $luser $why $ms $mentiontold
}
}
-proc lnick_marktime_now {luser why} {
+proc lnick_marktime_now {luser why mentiontold} {
upvar #0 nick_onchans($luser) oc
global calling_nick
set calling_nick $luser
sendprivmsg $luser [lnick_pingstring $why $oc ""]
+ if {$mentiontold} { lnick_checktold $luser }
lnick_marktime_reset $luser
}
catch { exec uptime } uptime
set nnicks [llength [array names nick_onchans]]
if {[regexp \
- {^ *([0-9:apm]+) +up.*, +(\d+) users, +load average: +([0-9., ]+) *$} \
+ {^ *([0-9:apm]+) +up.*, +(\d+) users?, +load average: +([0-9., ]+) *$} \
$uptime dummy time users load]} {
regsub -all , $load {} load
set uptime "$time $nnicks/$users $load"
}
def_ucmd ping {
+ prefix_nick
+ set ln [irctolower $n]
if {[ischan $dest]} {
set oc [irctolower $dest]
} else {
global nick_onchans
- prefix_nick
- set ln [irctolower $n]
if {[info exists nick_onchans($ln)]} {
set oc $nick_onchans($ln)
} else {
}
if {[llength $oc]} { lnick_marktime_reset $ln }
}
+ lnick_checktold $ln
ucmdr {} [lnick_pingstring "Pong!" $oc $text]
}
unset gsfile
}
-proc ensure_outqueue {} {
- out__vars
- if {[info exists out_queue]} return
- set out_creditms 0
- set out_creditat [clock seconds]
- set out_queue {}
- set out_lag_reported 0
- set out_lag_reportwhen $out_creditat
-}
-
-proc fail {msg} {
- logerror "failing: $msg"
- exit 1
-}
-
-proc ensure_connecting {} {
- global sock ownfullname host port nick socketargs
- global musthaveping_ms musthaveping_after
-
- if {[info exists sock]} return
- set sock [eval socket $socketargs [list $host $port]]
- fconfigure $sock -buffering line
- fconfigure $sock -translation crlf
-
- sendout USER blight 0 * $ownfullname
- sendout NICK $nick
- fileevent $sock readable onread
-
- set musthaveping_after [after $musthaveping_ms \
- {fail "no ping within timeout"}]
-}
-
proc connected {} {
- global musthaveping_after
-
- after cancel $musthaveping_after
- unset musthaveping_after
-
foreach chan [chandb_list] {
if {[chandb_get $chan autojoin]} { dojoin $chan }
}
}
ensure_globalsecret
-ensure_outqueue
loadhelp
ensure_connecting