/usr/share/sbnc/scripts/timers.tcl is in sbnc-tcl 1.3.9-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | # shroudBNC - an object-oriented framework for IRC
# Copyright (C) 2005-2014 Gunnar Beutner
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
proc sbnc:runthistimer {cookie} {
set user [lindex $cookie 0]
set timerID [lindex $cookie 1]
setctx $user
namespace eval [getns] {
if {![info exists timers]} { set timers "" }
}
upvar [getns]::timers timers
set idx [lsearch $timers "* $timerID"]
if {$idx == -1} { return }
set timer [lindex $timers $idx]
if {[catch [lindex $timer 1] error]} {
foreach user [bncuserlist] {
if {[getbncuser $user admin]} {
bncnotc "Error in timer $timerID: $error"
}
}
}
set idx [lsearch $timers "* $timerID"]
if {$idx == -1} { return }
set timers [lreplace $timers $idx $idx]
}
proc sbnc:runthisutimer {cookie} {
set user [lindex $cookie 0]
set timerID [lindex $cookie 1]
setctx $user
namespace eval [getns] {
if {![info exists utimers]} { set utimers "" }
}
upvar [getns]::utimers utimers
set idx [lsearch $utimers "* $timerID"]
if {$idx == -1} { return }
set timer [lindex $utimers $idx]
if {[catch [lindex $timer 1] error]} {
foreach user [bncuserlist] {
if {[getbncuser $user admin]} {
bncnotc "Error in utimer $timerID: $error"
}
}
}
set idx [lsearch $utimers "* $timerID"]
if {$idx == -1} { return }
set utimers [lreplace $utimers $idx $idx]
}
proc timer {minutes tclcommand} {
namespace eval [getns] {
if {![info exists timers]} { set timers "" }
if {![info exists timeridx]} { set timeridx 0 }
}
upvar [getns]::timers timers
upvar [getns]::timeridx timeridx
set time [expr [clock seconds] + $minutes * 60]
incr timeridx
set id "timer$timeridx"
set timer [list $time $tclcommand $id]
lappend timers $timer
internaltimer [expr $minutes * 60] 0 sbnc:runthistimer [list [getctx] $id]
return $id
}
proc utimer {seconds tclcommand} {
namespace eval [getns] {
if {![info exists utimers]} { set utimers "" }
if {![info exists utimeridx]} { set utimeridx 0 }
}
upvar [getns]::utimers utimers
upvar [getns]::utimeridx utimeridx
set time [expr [clock seconds] + $seconds]
incr utimeridx
set id "timer$utimeridx"
set timer [list $time $tclcommand $id]
lappend utimers $timer
internaltimer $seconds 0 sbnc:runthisutimer [list [getctx] $id]
return $id
}
proc timers {} {
namespace eval [getns] {
if {![info exists timers]} { set timers "" }
}
upvar [getns]::timers timers
set temptimers ""
foreach ut $timers {
lappend temptimers [list [expr [lindex $ut 0] - [clock seconds]] [lindex $ut 1] [lindex $ut 2]]
}
return $temptimers
}
proc utimers {} {
namespace eval [getns] {
if {![info exists utimers]} { set utimers "" }
}
upvar [getns]::utimers utimers
set temptimers ""
foreach ut $utimers {
lappend temptimers [list [expr [lindex $ut 0] - [clock seconds]] [lindex $ut 1] [lindex $ut 2]]
}
return $temptimers
}
proc killtimer {timerID} {
namespace eval [getns] {
if {![info exists timers]} { set timers "" }
}
upvar [getns]::timers timers
set idx [lsearch $timers "* $timerID"]
if {$idx != -1} {
set timers [lreplace $timers $idx $idx]
internalkilltimer sbnc:runthistimer [list [getctx] $timerID]]
}
return
}
proc killutimer {timerID} {
namespace eval [getns] {
if {![info exists utimers]} { set utimers "" }
}
upvar [getns]::utimers utimers
set idx [lsearch $utimers "* $timerID"]
if {$idx != -1} {
set utimers [lreplace $utimers $idx $idx]
internalkilltimer sbnc:runthisutimer [list [getctx] $timerID]]
}
return
}
|