/usr/share/sbnc/scripts/lock.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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | # shroudBNC - an object-oriented framework for IRC
# Copyright (C) 2010 Christoph Wiese
#
# 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.
set ::lock_lockable_settings [list password vhost server port serverpass realname awaynick away awaymessage usequitasaway ssl automodes dropmodes autobacklog]
internalbind command lock:command
proc lock:command {client params} {
set command [string tolower [lindex $params 0]]
if {$command == "set" && [llength $params] > 2 && [lock:islocked $client [lindex $params 1]]} {
bncreply "Error: You cannot modify this setting."
haltoutput
return
}
if {$command == "globalset" && [getbncuser $client admin]} {
if {[llength $params] < 3} {
if {[bncgetglobaltag globallocks] == ""} {
set reply "Not set"
} else {
regsub -all "," [bncgetglobaltag globallocks] " " reply
}
internaltimer 0 0 bncreply "globallocks - $reply"
} elseif {[string tolower [lindex $params 1]] == "globallocks"} {
set reply [lock:setgloballocks [lrange $params 2 end]]
if {[lindex $reply 0] != ""} {
bncreply "The following settings were locked: [lindex $reply 0]"
} elseif {[lindex $reply 0] == "" && [lindex $reply 1] == ""} {
bncreply "Done."
} else {
bncreply "None of the default settings were entered, setting has not been changed."
}
if {[lindex $reply 1] != ""} {
bncreply "The following settings are not part of the default settings and are therefore not lockable: [lindex $reply 1]"
}
haltoutput
}
return
}
if {($command == "lock" || $command == "unlock") && [getbncuser $client admin]} {
if {($command == "lock" && [llength $params] < 2) || ($command == "unlock" && [llength $params] < 3)} {
if {$command == "lock"} {
set reply "Syntax: /sbnc lock <user> \[setting\]"
} else {
set reply "Syntax: /sbnc unlock <user> <setting>"
}
bncreply $reply
haltoutput
return
}
set targetuser [lindex $params 1]
if {![bncvaliduser $targetuser]} {
bncreply "No such user \"$targetuser\"."
haltoutput
return
}
set lockedsettings [split [getbncuser $targetuser tag locksetting] ","]
if {[llength $params] < 3} {
if {$lockedsettings != ""} {
set reply $lockedsettings
} else {
set reply "none"
}
bncreply "Settings specifically locked for user \"$targetuser\": $reply."
haltoutput
return
}
set targetsetting [string tolower [lindex $params 2]]
if {$command == "lock"} {
if {[lock:setuserlock $targetuser $targetsetting] == 1} {
bncreply "Done."
} else {
bncreply "Setting \"$targetsetting\" is not part of the defaultsettings and is therefore not lockable."
}
} else {
if {[lock:unsetuserlock $targetuser $targetsetting] == 1} {
bncreply "Done."
} else {
bncreply "Setting \"$targetsetting\" was not locked for user \"$targetuser\", no changes applied."
}
}
haltoutput
return
}
if {$command == "help" && [getbncuser $client admin]} {
bncaddcommand lock Admin "locks a user's settings" "/sbnc lock <user> \[setting\]\nShows locked settings for a user or locks a setting"
bncaddcommand unlock Admin "unlocks a user's settings" "/sbnc unlock <user> <setting>\nUnlocks a users setting"
}
}
# Parameters:
# account: user account on which to perform the check
# setting: setting which is checked on whether or not it is locked
# Returns:
# 0 - if setting is not locked, or account is an admin
# 1 - if setting is locked
proc lock:islocked {account setting} {
set lockedsettings [concat [split [getbncuser $account tag locksetting] ","] [split [bncgetglobaltag globallocks] ","]]
if {[lsearch -exact $lockedsettings [string tolower $setting]] > -1 && ![getbncuser $account admin]} {
return "1"
} else {
return "0"
}
}
# Parameters:
# settings - settings to be globally locked
# Returns:
# A list with two elements, the first containing the settings successfully locked, the second containg those on which the lock failed
proc lock:setgloballocks {settings} {
if {$settings == "{}"} {
bncsetglobaltag globallocks ""
return [list "" ""]
}
foreach setting $settings {
set setting [string tolower $setting]
if {[lsearch -exact $::lock_lockable_settings $setting] > -1} {
lappend lockable $setting
} else {
lappend unlockable $setting
}
}
if {[info exists lockable]} {
bncsetglobaltag globallocks [join $lockable ","]
set reply [list $lockable]
} else {
set reply [list ""]
}
if {[info exists unlockable]} {
lappend reply $unlockable
} else {
lappend reply ""
}
return $reply
}
# Parameters:
# account - user account for which to lock
# setting - setting to be locked
# Returns:
# 0 - if lock failed
# 1 - if lock succeeded
proc lock:setuserlock {account setting} {
set setting [string tolower $setting]
set lockedsettings [split [getbncuser $account tag locksetting] ","]
if {[lsearch -exact $lockedsettings $setting] > -1} {
return "1"
} elseif {[lsearch -exact $::lock_lockable_settings $setting] > -1 } {
setbncuser $account tag locksetting [join [lappend lockedsettings $setting] ","]
return "1"
} else {
return "0"
}
}
# Parameters:
# account - user account for which to unlock
# setting - setting to be unlocked
# Returns:
# 0 - if unlock failed
# 1 - if unlock succeeded
proc lock:unsetuserlock {account setting} {
set setting [string tolower $setting]
set lockedsettings [split [getbncuser $account tag locksetting] ","]
if {[lsearch -exact $lockedsettings $setting] > -1} {
set idx [lsearch -exact $lockedsettings $setting]
setbncuser $account tag locksetting [join [lreplace $lockedsettings $idx $idx] ","]
return "1"
} else {
return "0"
}
}
# Override for ifacecmds.tcl's setvalue to respect locks
proc lock:iface_setvalue {setting value} {
if {[lock:islocked [getctx] $setting] == 1} {
return -code error "You may not modify this setting."
} else {
iface:setvalue $setting $value
return ""
}
}
if {[info commands "registerifacecmd"] != ""} {
registerifacecmd "lock" "setvalue" "lock:iface_setvalue"
}
# The following procs are iface2 wrappers for their respective counterparts above
proc lock:iface_setgloballocks {settings} {
set result [lindex [lock:setgloballocks $settings]]
if {[lindex $result 1] == ""} {
return ""
} else {
return -code error "You may not lock these settings: [lindex $result 1]."
}
}
if {[info commands "registerifacecmd"] != ""} {
registerifacecmd "lock" "setgloballocks" "lock:iface_setgloballocks" access:admin
}
proc lock:iface_setuserlock {account setting} {
if {![bncvaliduser $account]} {
return -code error "Invalid user \"$account\"."
}
if {[lock:setuserlock $account $setting]} {
return ""
} else {
return -code error "Invalid setting for a lock, no changes applied."
}
}
if {[info commands "registerifacecmd"] != ""} {
registerifacecmd "lock" "setuserlock" "lock:iface_setuserlock" access:admin
}
proc lock:iface_unsetuserlock {account setting} {
if {![bncvaliduser $account]} {
return -code error "Invalid user \"$account\"."
}
if {[lock:unsetuserlock $account $setting]} {
return ""
} else {
return -code error "Setting was not locked specifically for this account, no changes applied."
}
}
if {[info commands "registerifacecmd"] != ""} {
registerifacecmd "lock" "unsetuserlock" "lock:iface_unsetuserlock" access:admin
}
# iface2 command to fetch all settings that are locked for a user
proc lock:iface_getuserlocks {} {
set reply [list]
foreach setting $::lock_lockable_settings {
if {[lock:islocked [getctx] $setting]} {
lappend reply $setting
}
}
return "[itype_list_strings $reply]"
}
if {[info commands "registerifacecmd"] != ""} {
registerifacecmd "lock" "getuserlocks" "lock:iface_getuserlocks"
}
|